@charset "UTF-8";
/* CSS Document */


body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #BCC5BA;
	background-color: #E2E4D3;
	font-family: Helvetica, Avenir, sans-serif;
}

p{
	font-family: Helvetica, Avenir, sans-serif;
	font-size:12px;
	line-height: 16px;
}

.headers {
	font-family: Helvetica, Avenir, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #B3AA7E;
	
}

.copyRight{
	font-family: Helvetica, Avenir, sans-serif;
	font-size: 8.5px;
	color: #B3AA7E;
	text-align:left;
	
}


 /*---------------------------------------------------------------   TEXT HEAVY PAGE IMAGE   --------------------*/

#graphicIMAGE {
	padding: 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0 20px 0 0;
	height: 496px;
	width: 375px;
	float: left;
} 

#graphicIMAGE img {
	margin: 0 0;
	height: 496px;
	width: 375px;
	text-align:center;

} 



 /*---------------------------------------------------------------   TEXT HEAVY PAGE TEXT BOX   --------------------*/

#textHeavyBox {
	width: 260px;
	height: 440px;
	text-align: left;
	margin: 30px 30px 30px 20px;
	overflow: auto;
	float: left;
}

#textHeavyBox .scrollbar {
	overflow:auto;
	scrollbar-face-color: none;
    scrollbar-arrow-color:#BCC5BA;
    scrollbar-track-color: none;
    scrollbar-shadow-color: none;
    scrollbar-highlight-color: none;
    scrollbar-3dlight-color: none;
    scrollbar-darkshadow-Color: none;
}

a.textHeavyBox:link {
	font-family: Helvetica, sans-serif;
	color: #BCC5BA;
	font-style: normal;
	text-decoration: none;
}

a.textHeavyBox:visited {
	color: #BCC5BA;
	font-style: normal;
	text-decoration: none;
}

a.textHeavyBox:hover {
	color: #B3AA7E;
	text-decoration: none;

}

a.textHeavyBox:active{
	color: #B3AA7E;
	text-decoration: none;
	font-style: bold;
}

#textHeavyBox ul {

	font-size:12px;
	color: #BCC5BA;
	list-style:none;	
}
#textHeavyBox li {
	padding-bottom: 6px;	
}

 /*---------------------------------------------------------------   IMAGE HEAVY PAGE IMAGE AREA   --------------------*/


#winnerIMAGE {
	padding: 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0 0 0 0;
	height: 500px;
	width: 500;
	background: #EAEDE9;
	float:left;

} 

#winnerINDEXfirst {
	width: 240px;
	height: 495px;
	margin: 0 0;
	padding: 0 0;
	float: left;
	
}

#winnerINDEXfirst img {
	margin: 0 0;
	height: 470px;
	width: 240px;
	text-align:center;
}

#winnerINDEXfirst p {
	margin: 2px 0 0 2px;
	font-size: 10px;
	color: #B3AA7E;
	line-height: 12px;
}

a.winnerINDEXfirst:link {
	font-family: Helvetica, sans-serif;
	color: #B3AA7E;
	font-style: normal;
	text-decoration: none;
}
a.winnerINDEXfirst:visited {
	color: #B3AA7E;
	font-style: normal;
	text-decoration: none;
}
a.winnerINDEXfirst:hover {
	color: #BCC5BA;
	text-decoration: none;

}
a.winnerINDEXfirst:active{
	color: #B3AA7E;
	text-decoration: none;
	font-style: bold;
}

#winnerINDEXsecond {
	width: 240px;
	height: 495px;
	margin: 0 0 0 20px;
	padding: 0 0;
	float: left;
	
}
#winnerINDEXsecond img {
	margin: 0 0;
	height: 470px;
	width: 240px;
	text-align:center;
}
#winnerINDEXsecond p {
	margin: 2px 0 0 2px;
	font-size: 10px;
	color: #B3AA7E;
	line-height: 12px;
}

.prizeWINNER{
	font-weight: bold;

}

.title{
	font-style: italic;
}

 /*---------------------------------------------------------------   IMAGE HEAVY PAGE TEXT BOX   --------------------*/


#imageHeavyBox {
	width: 161px;
	height: 350px;
	text-align:left;
	margin: 120px 20px 0 19px;
	float:left;
	
}
.inbetween {
 font-size:16px;
 color: #BCC5BA;
}
a.imageHeavyBox:link {
	font-family: Helvetica, sans-serif;
	color: #BCC5BA;
	font-style: normal;
	text-decoration: none;
}
a.imageHeavyBox:visited {
	color: #BCC5BA;
	font-style: normal;
	text-decoration: none;
}
a.imageHeavyBox:hover {
	color: #B3AA7E;
	text-decoration: none;

}
a.imageHeavyBox:active{
	color: #B3AA7E;
	text-decoration: none;
	font-style: bold;
}
 /*---------------------------------------------------------------   CLEAR FLOAT   --------------------*/


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}