 @charset "utf-8";

/* start global reset */

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,
b, u, i, center,
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-size: 100%;
	vertical-align: baseline;
	background: transparent;
	}
	
body {
	line-height: 1;
	}
	
ol, ul {
	list-style: none;
	}
	
blockquote, q {
	quotes: none;
	}
	
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
	}

/* remember to define focus styles! */
:focus {
	outline: 0;
	}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
	}
del {
	text-decoration: line-through;
	}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
	}

/* end reset */




body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	background-image: url(images/bodyBG.jpg);
	background-repeat: repeat-x;
	}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
	}
	
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	}
	
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	}
	
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #56120F;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	}
	
a:visited {
	color: #FFF;
	text-decoration: underline;
	}
	
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 966px;
	background: #000000;
	background-image: url(images/containerBG.jpg);
	background-repeat: no-repeat;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	padding: 0px 0px 20px 0px;
	position: relative;
	}

/* ~~ the header is not given a width. It will extend the full width of your layout. ~~ */
#header {	
	background: #000000;
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	padding: 0px 0px 0px 50px; 
	margin: 20px 0px 0px 15px;
	}	
	
	
	
#navLinks {
	width: 906px;
	height: 37px;
	line-height: 20px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 18px;
	color: #222428;
	font-weight: inherit;
	text-align: center;
	margin: 0 auto;
	padding: 10px 0px 0px 85px;
	}
	
	

#nav {
	list-style:none;
	font-weight: normal;
	width:100%;
	position:relative;
	z-index:5;
	}



#nav li {
	float:left;
	margin: 0px 10px 0px 10px;
	position:relative;
	}


#nav li.active a {
	color: #FFF;
	}


#nav a {
	display:block;
	padding: 4px 10px 0px 15px;
	color:#56120F;
	background: none;
	text-decoration:none; 
	}



/* ~~ DROPDOWN Menu ~~ */


#nav ul {
	background:#6b6c70; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(107,108,112,0);
	margin: 1px 0px 0px 0px;
	list-style: none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	}


#nav ul li {
	height: 35px;
	background: #6b6c70;
	border: 1px solid #585a5e;
	padding: 3px 0px 0px 0px; 
	float:none;
	}


#nav ul a {
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	}


#nav li:hover ul { /* Display the dropdown on hover */
	left: 0px; /* Bring back on-screen when needed */
	}


#nav li:hover a { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	color: #FFF;
	text-decoration: none;
	}


#nav li:hover ul a { /* The persistent hover state creates a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
	color: #56120F;
	}


#nav li:hover ul li a:hover { /* Here we define the most explicit hover states--what happens when you hover each individual link.*/
    color: #FFF;
	}
 	
/* ~~ End DropDown ~~ */



/* ~~ The Layout Information. ~~ */

.content {
	width: 916px;
	background: #222428;
	min-height: 570px;
	margin: 0 auto;
	overflow: auto;
    }
	
/* ~~ Individual Page Backgrounds ~~ */	
	
#hm {
	background-image: url(images/hmBg.jpg);
	background-repeat: no-repeat;
	}
	
	
	
#abt {
	background-image: url(images/about.jpg);
	background-repeat: no-repeat;
	}
	
	
#auth {
	background-image: url(images/auth.jpg);
	background-repeat: no-repeat;
	}	
		


#end {
	background-image: url(images/endor.jpg);
	background-repeat: no-repeat;
	}
	
	
#det {
	background-image: url(images/detail.jpg);
	background-repeat: no-repeat;
	}	
	
	
#test {
	background-image: url(images/contest.jpg);
	background-repeat: no-repeat;
	}
	
	
#tact {
	background-image: url(images/contact.jpg);
	background-repeat: no-repeat;
	}
	
	
/* ~~ End Page ID's ~~ */			
	

	
	
#txt {
	width: 800px;
	padding: 32px 10px 0px 30px;
	margin: 0 auto;
	}
	
	
	
#txt p {
	width: 672px;
	font-size: 14px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #ccc;
	text-align: left;
	padding: 5px 0px 5px 0px;
	margin: 0 auto;
	}



#txt p b {
	font-size: 20px;
	font-weight: bold;
	}


#txt p strong {
	font-size: 16px;
	font-weight: bold;
	}
	
	
	
ol {
	width: 640px;
	list-style: circle;
	font-size: 14px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #ccc;
	padding: 10px 24px 0px 32px;
	margin: 0 auto;	
    }
	
	
ol li {
	padding: 5px 0px 5px 0px;	
    }	
	
	
	
#txt ol li a {
	font-size: 14px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #ccc;
	text-decoration: none;
    }
	
	
#txt ol li a:hover { 
     color: #FFF;
	 text-decoration: underline;
	}	



.endorse {
	width: 800px;
	padding: 32px 10px 0px 30px;
	margin: 0 auto;
	}


.endorse ol {
	width: 688px;
	list-style: decimal;
	font-size: 13px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	color: #ccc;
	padding: 10px 24px 0px 32px;
	margin: 0 auto;
	}
	


.endorse ol li {
	padding: 5px 0px 5px 0px;
	}	


.sig {
	font-size: 15px;
	font-weight: bold;
	}

	
	
	
.title {
	font-size: 22px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #ccc;
	margin: 0px 0px 10px 48px;
	}



.definition {
	font-size: 15px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	color: #ccc;
	padding: 0px 0px 30px 40px;
	}

	
	
	
.title2 {
	font-size: 24px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight:bolder;
	color: #ccc;
	}
	
	
	
.subTitle {
	font-size: 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bolder;
	color: #ccc;
	}	
	
	
	
.contestTitle {
	font-size: 18px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	color: #ccc;
	margin: 0px 0px 10px 60px;
	}	
	
	
	
#samples {
	width: 520px;
	margin: 0 auto;
	padding: 5px 10px 10px 10px;
	}



#samples p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #666;
	padding: 0px 0px 0px 5px;
	}
	
	
div.multiple {
	width: 672px;
	margin: 0 auto;
	padding: 15px 0px 25px 0px;
	}




div.col {
    float: left;
    width: 40%;
	overflow: hidden;
	}


.underline {
	text-decoration: underline;
	}




/* ~~ Image CSS ~~ */
		
#samples img {
	margin: 5px 5px 5px 5px;
    }
	
	
	
.rtImg {
	padding: 112px 80px 0px 0px;
	float: right;
    }
	
	
.breakImg {
	margin: 15px 10px 15px 88px;
	}
		
	
	
.leftImg {
	margin: 15px 0px 0px 10px;
	float: left;
	}

/* ~~ End Image CSS ~~ */	




/* ~~ Code for Brochure ~~ */

#pdf {
	width: 440px;
	height: 800px;
	padding: 10px 10px 10px 10px;
	margin: 0 auto;
	}
	

#pdf object p {
	width: 400px;
	font-size: 13px;
	font-family: Verdana, Geneva, sans-serif;
	color: # #ccc;
	} 
	
	
#pdf a {
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
    color: #ccc;
    text-decoration: none;
	line-height: 15px;
	}
	
	
	
#pdf a:visited {
    color: #ccc;
    text-decoration: underline;
	}
	
	
#pdf a:hover, a:active, a:focus {
    text-decoration: underline;
	}


/* ~~ End Code for Brochure ~~ */
	
	
	


/* ~~ Contact Form CSS ~~ */


#contact {
	width: 775px;
	margin: 0 auto;
	padding: 15px 0px 0px 15px;	
	}




#conPar {
	width: 700px;
	padding: 0px 0px 20px 25px;
	float: left;
    }
	
	
	
#conPar p {
	width: 375px;
	padding: 5px 0px 2px 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	color: #999;
    }
	
	
#conPar p a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #CCC;
    }
	
	
	
.conRtImg {
	margin: -64px 48px 0px 0px;
	float: right;
	}	
		
	
	

#formLable {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #CCC;
    }



#contact-form {
	width: 375px;
	margin: 20px 0px 0px 15px;
	}
	
	
label {
	font-size: 13px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #CCC;
	display: block;
	}
	
	
input, textarea {
	width: 100%;
	margin-bottom: 5px;
	padding: 5px;
	}
	
	
#message {
	min-height: 80px;
	overflow: hidden;
	}
	
	
	
.error {
	color: red;
	display: none;
	}
	
	
#contactsuccess {
	color: green;
	display: none;
	width: 440px;
    margin: 80px 0px 0px 10px;
	}


/* ~~ End Contact Form ~~ */




/* ~~ The footer ~~ */
.footer {
	width: 916px;
	height: 48px;
	background: #222428;
	background-image: url(images/footer.png);
	background-repeat: no-repeat;
	margin: 0 auto;
    }

.footer p {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #56120F;
	text-decoration:none;
	text-align: center;
	padding: 20px 0px 0px 0px;
	}


/* ~~ End footer ~~ */
	
	
	
	
/* ~~ Back to Top  ~~ */	
	
.scrollToTop {
	width: 68px; 
	height:83px;
	padding:2px; 
	text-align: center; 
	background: none;
	font-size: 9px;
	font-weight: normal;
	color: #56120f;
	text-decoration: none;
	position:fixed;
	top:75px;
	right:40px;
	display:none;
	background: url(images/back2top.png) no-repeat;
	}
	


.scrollToTop:hover {
	text-decoration: none;
	}	
	
/* ~~ End Back to Top ~~ */	

	
	

/* ~~  miscellaneous float/clear classes - horizontal rule  - spacer divs ~~  */
	

.spacer {
	width: 780px;
	height: 96px;
    }
	
	
	
.spacerSmall {
	width: 780px;
	height: 40px;
    }
	
	
.spacerTiny {
	width: 400px;
	height: 20px;
    }		
	


.hRule {
	width: 85%;
	color: #c8b78c;
	}

.fltrt {  
	float: right;
	margin: 0px 5px 0px 15px;
	}
	
	
.fltlft { 
	float: left;
	margin: 0px 15px 0px 3px;
	}
	
	
		
	
.clearfloat { 
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
	}
