﻿@charset "utf-8";

/************************************************************

	Usage:
  		CSS styles Shared across entire site

 ************************************************************/

	/* Body Styles */
	body { 
		font: normal 62.5% Verdana, Arial, Helvetica, sans-serif; 
		margin: 0; 
		background: #000 url(images/bg.png) repeat-x top left; 
		color: #ccc;
		text-align: center; 
        min-width: 980px;
		}
		
	/* Site Wrapper */
	#wrapper { 
		width: 980px;       
        text-align: left; 
        margin: 0 auto; 
		}

	/* Resetting margins on headers and paragraphs */
	h1,  h2, h3, h4, h5, h6, p { 
 		margin: 0 0 10px 0;
		}

	/* Remove border from linked images and fix vertical align */
	img { 
		border: none; 
        vertical-align: bottom; 
		}
 
	/* Remove Text decoration on images */
	a { 
 		text-decoration: none;
        border-bottom: 1px dotted #c1c1c1;
        color: #c1c1c1;
		}
      a:hover {
      	color: #fff;
		border-bottom: 1px solid #fff;
      }
     
     .no-underline a,
     .no-underline a:hover {
     	border-bottom: none;
     }
     
	/* Hide text where necessary */
	.hide-text { 
		display: block; 
        text-indent: -99999px; 
        overflow: hidden; 
        text-align: left !important;  
        font-size: 0.1em;
		}

	/* Set the font, text size and alignment of inputs */
	input, textarea, select { 
		vertical-align: middle; font: normal 1.0em Verdana, Arial, Helvetica, sans-serif; color: #333; 
		}

	/* Accessible way of hiding content */
	#accessibility, .full-hide { 
		position: absolute; top: 0; left: -9999px; height: 0px;
		}

	/* Setting a height on all li and a's for IE 6 */
	* html ul li, * html a { 
		height: 1px; 
		}

	/* Reset margins and bullet points on lists */
	ul.basic-list { 
		margin: 0; padding: 0; 
		}

		ul.basic-list li { 
			margin: 0; padding: 0; list-style: none; 
			}
	
	/* Fieldsets and Legends */
	fieldset, legend { 
		margin: 0; 
		padding: 0;
		border: none;
		}
		
	legend { display: none; }
    
    strong, b {
    	color: #fff;
    }
    
    blockquote {
    	font-size: 0.9em; 
        padding: 0 0 0 15px; 
        margin: 0 0 10px 25px; 
        border-left: 2px solid #ccc;
    }
    
    .aligncenter {
    	text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Forms */
    form { margin: 0; padding: 0; display: inline; }
    
	/* Clearfix */
	.clearfix:after { content: "." !important; display: block !important; height: 0 !important; clear: both !important; visibility: hidden !important; }
	.clearfix { display: inline-block !important; }  

	/* Holly Hack Targets IE Win only \*/
	* html .clearfix {height: 1% !important;}
	.clearfix {display: block !important;}
	/* End Holly Hack */