/*------------------------------------------------------*/
/* =HTML ELEMENTS					*/
/*-----------------------------------------------------*/
body {
	background: #1e1e1e url(../images/bg.jpg) top center fixed;
	color: #fff;
	font-family: arial, "helvetica neue", helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
}

a {
	color: #fff;
	outline: none; /* removing outline in Mozilla */
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a[name]{
	text-decoration: none;
}

/*------------------------------------------------------*/
/* =FLOAT CLASSES					*/
/*-----------------------------------------------------*/

/* usually for <br /> tag to clear the float */
.clear {
	clear: both;
	line-height: 0;
}

/* div (or whatever else element that serves as wrapper that clears the floats)  */
.floatClear {
	overflow: hidden;
}

/*------------------------------------------------------*/
/* =LAYOUT						*/
/*-----------------------------------------------------*/

/*------------------------------------------------------*/
/* =WRAPPER						*/
#wrapper {
	margin: 20px auto;
	width: 841px;
	position: relative;
}

#header {
	background: url(../images/content.png);
	min-height: 130px;
	overflow: hidden;
	padding: 5px 15px;
	position: relative;
}

/* LOGO*/
.logo {
	position: absolute;
	top: 5px;
	left: 10px;
}

/* GAME SHOW PRIZE INFO */
#header .info {
	float: right;
	font-size: 13px;
	font-weight: bold;
	text-shadow: #383838 1px 1px 1px;
}

#header .info li {
	background: url(../images/header-info-li.png) repeat-x bottom;
	margin-bottom: 5px;
	padding: 0 15px 4px 15px;
}

#header .info li.last {
	background: none;
}

#header .info span {
	font-size: 16px;
}

/*------------------------------------------------------*/
/* =MENU							*/
#menu {
	background: url(../images/menu.png) no-repeat;
	height: 50px;
	font-size: 15px;
	font-weight: bold;
	padding-top: 7px;
}

#menu li {
	display: inline-block;
	height: 45px;
	margin: 0 15px;
	position: relative; /* for drop down */
}

#menu li a {
	display: inline-block;
	height: 35px;
	line-height: 35px;
	margin: 0 4px;
	padding: 0 15px;
	position: relative;
}

#menu a span {
	display: none;
	position: absolute;
}

/* hovered menu item */
#menu li a:hover {
	text-decoration: none;
}

#menu li a:hover {
	background: url(../images/menu-active.png) repeat-x;
}

#menu li a:hover span.left,
#menu li a:hover span.right {
	display: block;
	height: 35px;
	width: 4px;
	top: 0;
}

#menu li a:hover span.left {
	background: url(../images/menu-active-left.png) repeat-x;
	left: -4px;
}

#menu li a:hover span.right {
	background: url(../images/menu-active-right.png) repeat-x;
	right: -4px;
}

/* active menu item */
#menu li.active a {
	background: url(../images/menu-active.png) repeat-x;
}

#menu li.active a span.left,
#menu li.active a span.right {
	display: block;
	height: 35px;
	width: 4px;
	top: 0;
}

#menu li.active a span.left {
	background: url(../images/menu-active-left.png) repeat-x;
	left: -4px;
}

#menu li.active a span.right {
	background: url(../images/menu-active-right.png) repeat-x;
	right: -4px;
}

#menu li.active a span.arrow {
	background: url(../images/menu-active-arrow.png) no-repeat;
	display: block;
	height: 13px;
	width: 13px;
	bottom: -13px;
	left: 40%;
	z-index: 1000;
}

/* arrow top border fix */
#menu li.home.active a span.arrow {
	border-top: 1px solid #8f8c68;
}

#menu li.services.active a span.arrow {
	border-top: 1px solid #9a8f66;
}

#menu li.press.active a span.arrow {
	border-top: 1px solid #b09568;
}

#menu li.prize.active a span.arrow {
	border-top: 1px solid #bf8369;
}

#menu li.about.active a span.arrow {
	border-top: 1px solid #9a7964;
}

#menu li.contact.active a span.arrow {
	border-top: 1px solid #8b8665;
}

/* menu drop down */
#menu li ul {
	display: none;
}

#menu li ul li {
	display: block;
	height: 15px;
	margin: 0;
	padding: 5px 0;
	text-align: center;
}

#menu li ul li a {	
	display: block;
	font-size: 12px;
	height: 15px;
	line-height: 15px;
	margin: 0;
	padding: 0;
	position: relative;
}

#menu li:hover ul {
	background: url(../images/menu-drop-down.png) repeat;
	display: block;
	margin-top: 5px;
	padding: 10px;
	position: absolute;
	left: 6px;
	z-index: 20;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#menu li:hover ul li a {
	background: none;
	font-weight: bold;
}

#menu li:hover ul li a:hover {
	background: none;
	color: #f3d80e;
}

 /* service hover for drop down */
#menu li.services:hover a {
	background: url(../images/menu-active.png) repeat-x;
}

#menu li.services:hover a span.left,
#menu li.services:hover a span.right {
	display: block;
	height: 35px;
	width: 4px;
	top: 0;
}

#menu li.services:hover a span.left {
	background: url(../images/menu-active-left.png) repeat-x;
	left: -4px;
}

#menu li.services:hover a span.right {
	background: url(../images/menu-active-right.png) repeat-x;
	right: -4px;
}

#menu li.services:hover ul li a {
	background: none;
}

/*------------------------------------------------------*/
/* =CONTENT						*/
.contentTop {
	background: url(../images/content-top.png) no-repeat;
	height: 4px;
}

.contentBottom {
	background: url(../images/content-bottom.png) no-repeat;
	height: 4px;
	margin-bottom: 10px;
}

#content {
	background: url(../images/content.png) repeat;
	min-height: 300px;
	padding: 5px 0;
	position: relative;
}

/* HOME CONTENT */
#homeContent {
	background: url(../images/home-content.png) repeat-x;
	min-height: 258px;	
}

#homeBanner {
	padding: 15px 0;
	text-align: center;
}

#homeBanner p {
	color: #cee1d1;
	font-size: 17px;
	margin: 0;
	padding: 5px 0 10px 0;
	text-shadow: #383838 0 0 1px;
}

/* home gallery */
#homeContent .gallery {
	text-align: center;
	margin-bottom: -35px;
}

#homeContent .gallery li {
	display: inline-block;
	padding: 0 5px;
}

/* home boxes */
.boxes {
	text-align: center;
}

.box {
	background: url(../images/home-box.png) no-repeat left;
	display: inline-block;
	font-size: 14px;
	margin-right: 10px;
	min-height: 249px;
	padding: 0 10px;
	text-align: left;
	vertical-align: top;
	width: 245px;
	position: relative;
}

.box.first {
	background: none;
}

.box.last {
	margin-right: 0;
	padding-right: 0;
	width: 255px;
}

.box h2 {
	height: 52px;
	text-indent: -9999px;
}

.box h2.advertisers {
	background: url(../images/h2-advertisers.png) no-repeat 1px 0;
}

.box h2.producers {
	background: url(../images/h2-producers.png) no-repeat 3px 0;
}

.box h2.contestants {
	background: url(../images/h2-contestants.png) no-repeat 2px 0;
}

.box p {
	margin-bottom: 15px;
	padding-left: 15px;
}

.box a.readMore {
	display: inline-block;
	margin-left: 15px;
	padding-left: 25px;
	text-transform: capitalize;

}

.box a.readMore.purple {
	background: url(../images/circle-purple-big.png) no-repeat;
}

.box a.readMore.yellow {
	background: url(../images/circle-yellow-big.png) no-repeat;
}

.box a.readMore.green {
	background: url(../images/circle-green-big.png) no-repeat;
}

/* MAIN */
#main {
	float: right;
	padding: 10px 25px 0 0;
	width: 590px;
}

#main h2 {
	background: url(../images/h1-main.png) no-repeat bottom left;
	color: #f3d80e;
	font-size: 28px;
	font-weight: bold;
	line-height: 30px;
	margin-bottom: 25px;
	padding: 0 0 5px 4px;
	text-transform: capitalize;
}

/* SERVICES PAGE */
#services {
	
}

#main #services h2 {
	background: url(../images/h2-services.png) no-repeat bottom left;
	color: #f3d80e;
	font-size: 20px;
	font-weight: normal;
	height: 44px;
	line-height: 44px;
	margin-bottom: 25px;
	padding: 0 0 0px 35px;
	text-transform: uppercase;
	position: relative;
	left: -40px;
}

#main #services h2 a {
	color: #f3d80e;
}

#services img {
	background: url(../images/about-img.png);
	float: left;
	margin: 0 20px 5px 0;
	padding: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

#services p {
	margin-bottom: 25px;
}

#services p a[name]{
	color: #f3d80e;
	text-decoration: underline;
	text-transform: capitalize;
}

#services p a[name].noStyle {
	color: #fff;
	text-decoration: none;
	text-transform: none;
}

#services span {
	color: #f3d80e;
	font-size: 16px;
}

#services span a {
	color: #f3d80e;
}

#services ul {
	margin-bottom: 25px;
}

#services ul li ul {
	margin: 0 0 0 40px;
}

#services ul li p {
	margin: 0 0 0 20px;
}

#services ul.styled li {
	list-style-type: disc;
	list-style-position: inside;
}

#services ul.underlined li a {
	text-decoration: underline;
}

#services ul.underlined li a:hover {
	text-decoration: none;
}

#services ul.faq li a {
	color: #f3d80e;
	text-decoration: underline;
}

#services ul.faq li a:hover {
	text-decoration: none;
}

/* CONTACT US PAGE */
#contact {
	padding: 0 10px;
}

#contact h1 {
	background: url(../images/h1-line.png) no-repeat 0 95%;
	margin-bottom: 10px;
	padding-left: 4px;
}

#contact p {
	background: url(../images/line.png) no-repeat bottom left;
	margin-bottom: 20px;
	padding: 0 20px 20px 20px;
}

#contact p.error {
	background: none;
	color: #f88f93;
	font-size: 11px;
	font-weight: bold;
	margin-bottom: 5px;
	padding: 0 0 0 5px;
}

#contact p.msg {
	background: none;
	color: #f3d80e;
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 10px;
	padding: 0 0 0 5px;
}

/* contact  info */
#contact .contactInfo {
	float: left;
	width: 500px;
}

#contact .contactInfo h3 {
	font-size: 19px;
	font-weight: bold;
	margin-bottom: 3px;
}

#contact .contactInfo span,
#contact .contactInfo a {
	color: #f3d80f;
}

#contact .contactInfo ul {
	float: left;
	font-size: 13px;
	margin:  10px 0 25px 0;
	padding: 0 10px 0 40px;
	width: 200px;
}

#contact .contactInfo ul li {
	padding-bottom: 5px;
}

/* contact form */
#contact form {
	background: url(../images/home-box.png) no-repeat left center;
	float: right;
	min-height: 300px;
	padding: 0 10px 0 35px;
	width: 250px;
}

#contact input,
#contact textarea {
	border: none;
	color: #242424;
	display: inline-block;
	font-family: arial, "helvetica neue", helvetica, sans-serif;
	font-size: 12px;
	margin: 0 5px 8px 0;
	resize: none; /* resetting for safari and google chrome */
}

#contact input[type="text"]{
	background: url(../images/contact-input.png) no-repeat;
	height: 26px;
	padding: 10px 10px 0 10px;
	width: 216px;
}

#contact textarea {
	background: url(../images/contact-textarea.png) no-repeat;
	height: 77px;
	overflow: auto;
	overflow-y: hidden;
	padding: 10px;
	width: 216px;
}

#contact input[type="submit"]{
	background: url(../images/contact-submit.png) no-repeat;
	height: 44px;
	width: 236px;
}

#contact input[type="submit"]:hover{
	cursor: pointer;
}

#contact form span {
	color: #f88f93;
	font-size: 13px;
	font-weight: bold;
}

/* ABOUT US PAGE */
#about h3 {
	font-size: 24px;
	font-weight: bold;	
	margin-bottom: 15px;
	padding: 0 4px;
}

#about h3 span {
	color: #f3d80e;
	font-size: 20px;
}

#about .profile {
	background: url(../images/profile.png) no-repeat bottom center;
	margin-bottom: 25px;
	padding-bottom: 25px;
}

#about .profile.last {
	background: none;
}

#about img {
	background: url(../images/about-img.png);
	float: left;
	margin-right: 20px;
	padding: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

#about ul {
	float: left;
}

#about ul li {
	background: url(../images/circle-gray-small.png) no-repeat 0 3px;
	padding: 0 0 7px 16px;
	width: 420px;
}

/* COMING SOON PAGES */
h1.comingSoon {
	background: url(../images/h1-line.png) no-repeat 0 95%;
	margin-bottom: 10px;
	padding-left: 4px;
}

p.comingSoon {
	color: #f5df3c;
	font-size: 24px;
	font-weight: bold;
	padding: 10px 20px;
	text-shadow: #838c53 1px 1px 1px;
}

/* PRESS PAGE */
#press {
	padding: 0 20px;
}

#press h2 {
	color: #f3d80e;
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
	margin-bottom: 15px;
	padding: 0 0 5px 4px;
	text-transform: capitalize;
}

#press h2 span {
	color: #fff;
	display: block;
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
}

#press h2 a {
	color: #fff;
	text-decoration: underline;	
}

#press p {
	margin-bottom: 15px;
}

/* SIDEBAR */ 
#sidebarHolder { 
	left: 0px;
	position: absolute;
	width: 200px;
}

#sidebar {
	background: url(../images/home-box.png) no-repeat right;
	font-size: 14px;
	min-height: 259px;
	padding: 0 5px;
	width: 185px;
	position: absolute;
	top: 0;
}

#sidebar.fixed {
  position: fixed;
  top: 0;
}

/* sidebar headings */
#sidebar h1 {
	height: 52px;
	margin-bottom: 10px;
	text-indent: -9999px;
}

#sidebar h1.about{
	background: url(../images/h2-about.png) no-repeat;
}

#sidebar h1.advertisers {
	background: url(../images/h2-advertisers.png) no-repeat -1px 0;
}

#sidebar h1.producers {
	background: url(../images/h2-producers.png) no-repeat 3px 0;
}

#sidebar h1.contestants {
	background: url(../images/h2-contestants.png) no-repeat 2px 0;
}

/* sidebar list */
#sidebar ul {
	padding-left: 15px;
}

#sidebar ul li {
	padding: 0 0 10px 22px;
}

#sidebar a:hover {
	color: #f3d80e;
	text-decoration: none;
	text-shadow: #838c53 1px 1px 2px;
}

#sidebar ul.gray li {
	background: url(../images/circle-gray-medium.png) no-repeat 0 3px;
}

#sidebar ul.purple li {
	background: url(../images/circle-purple-medium.png) no-repeat 0 3px;
}

#sidebar ul.yellow li {
	background: url(../images/circle-yellow-medium.png) no-repeat 0 3px;
}

#sidebar ul.green li {
	background: url(../images/circle-green-medium.png) no-repeat 0 3px;
}

#sidebar ul.gray li a {
	/*color: #f3d80e;*/
}

/*------------------------------------------------------*/
/* =FOOTER						*/
#footer {
	background: url(../images/footer.png) no-repeat top center;
	height: 74px;
	margin-top: 30px;
	text-align: center;
}

#footer ul {
	padding: 8px 0 3px 0;
}

#footer li {
	border-right: 1px solid #fff;
	display: inline;
	padding: 0 7px;
	text-transform: capitalize;
}

#footer li.last {
	border: none;
}

#footer p {
	padding-bottom: 2px;
}
