/*--------------------------------------------------

	Project: Frosted Flakes
	CSS By: Arc Worldwide
	
	---
	
	Table of Contents
	
	0.) Reset
	1.) Base
	2.) Structure
	3.) Footer
	
	---
	
	This stylesheet provides all the base styles
	for the frosted flakes website. Please keep
	everything organized and within the document
	flow.

--------------------------------------------------*/

/* * * * * * * * * * * * * * * * * * * * * * * * * 
0.)	R E S E T 
* * * * * * * * * * * * * * * * * * * * * * * * */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: #ccc;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* * * * * * * * * * * * * * * * * * * * * * * * * 
1.)	B A S E 
* * * * * * * * * * * * * * * * * * * * * * * * */
html, body {
    font-family: "Arial", "Helvetica", Sans-Serif;
	font-size: 12px;
	height: 100%;
}

body {
	color: #666;
}

p {
    line-height: 1.5em;
    margin: 0 0 1em;
}

a{
	color: #333333;	
}

.nindent {
	line-height: 0;
	text-indent: -10000px;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * 
2.)	S T R U C T U R E 
* * * * * * * * * * * * * * * * * * * * * * * * */
div#wrapper {
	min-height: 768px;
	min-width: 1024px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
    height: 96%;
}

div#flashWrapper {
    height: 100%;
    margin: 0 0 10px;
    width: 100%;
    float: left;
    clear: left;
}

div#votingModalBG 
{
    filter: Alpha(Opacity=0); -moz-opacity:0.0; opacity: 0.0;
    width: 100%; height: 100%; background-color: #000;
    position: absolute;
    z-index: 500;
    top: 0px; left: 0px;
    display:none;
}

/* IE6 hack for horizontal scrollbar in iframe */
body.votingPage {
	_width: 575px;	
}

/* * * * * * * * * * * * * * * * * * * * * * * * * 
3.)	F O O T E R 
* * * * * * * * * * * * * * * * * * * * * * * * */
div#footer{
	float: left;
	clear: left;
	width: 100%;
	padding: 0;
	background-color: #fff;
}

div#footer p { width: 1024px; margin: 0 auto; padding: 0 0 10px 0 !important; overflow: hidden; font-size: 9px; }

div#footer ul { width: 1024px; margin: 0 auto; padding: 10px 0 5px 0 !important; overflow: hidden; }

div#footer a { color: #A5A5A5; }

div#footer ul li {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
}

div#footer ul li.brand-link {
    float: right;
    text-transform: uppercase;
}

div#footer ul li a {
    color: #A5A5A5;
    font-size: 10px;
}

div#footer ul li a:hover { color: #648F18; }
