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

/****************************************/
/*** main.css (original)              ***/
/****************************************/
body{
	margin:0;
	padding:0;
}

b{font-size: 110%;}


#maincontainer{
	background-color:#FFFFFF;
	width: 1000px; 				/*Width of main container*/
	margin: 0 auto; 			/*Center container on page*/
	border-left:1px solid #141414;
	border-right:1px solid #141414;
}

#topsection{
	height: 24px; 					/*Height of top section*/
	border-top:1px solid #000000;		/* draws line on top edge of div */
	border-bottom:1px solid #000000;	/* draws line on bottom edge of div */
	border-left:1px solid #000000;	 	/* draws line on left edge of div */
	border-right:1px solid #000000;	 	/* draws line on right edge of div */
	background-color: #FFFFFF;
}

#mastheadsection{
	background-color:#D2232A;
	height: 160px; 				/*Height of top section*/
	border-left:1px solid #000000;
	border-right:1px solid #000000;
}
#navsection{
	height: 25px; /*Height of top section*/
	background-color: #ad1b2e;
}

#topsection h1{
	margin: 0;
	padding-top: 15px;
	background-color: #999999;
}

#specialCenterWrapper{
	background-color: #FFFFFF;
	float: left;
	width: 1000px;
	border-right:1px solid #000;
}

#contentwrapper{
	float: left;
	width: 450px;
	margin-left: 300px;
}

#contentcolumn{
	width: 400px;
	padding: 10px;
	border-left: 1px dotted #A1A1A1;	/* dotted lines that sperate the */
	border-right: 1px dotted #A1A1A1;	/* left and right columns from the content hole */
	margin-left: 25px;
}

#leftcolumn{
	float: left;
	width: 325px; 			/*Width of left column in pixel*/
	margin-left: -750px; 	/*Set margin to that of -(MainContainerWidth)*/
	padding-top: 15px;
	height:400px;
	background-image:url(../images/pge11_leftnav.jpg);
	background-repeat:no-repeat;
}

#rightcolumn{
	float: left;
	width: 200px; 			/*Width of right column*/
	padding-top: 15px;
	margin-left: 15px;
}

#adcontainer{
	float: right;
	width: 300px; 			/*Width of right column*/
	margin-left: -300px; 	/*Set left margin to -(RightColumnWidth)*/
	margin-top: 442px;
	vertical-align:top;
}

#footer{
	clear: left;
	width: 999px;
	color: #ffffff;
	text-align: center;
	border:1px solid #000000;
	background-color:#333333;
	margin-top: 20px;
	font-size: 11px;
	line-height:1.5em;
}

#footer a{
	color: #ffffff;
}

#promoFlashDiv {
	text-align: center;
}

.innertube{
	margin: 10px; 	/*Margins for inner DIV inside each column (to provide padding)*/
	margin-top: 0;
	margin-bottom:20px;
}
.innertube2{
	margin-top: 0;
	margin-bottom:20px;
	margin-left:10px;
	background-color:#FFFFFF;
}}
.innertube3{
	padding-top: 10px;
	margin-bottom:20px;
	background-color:#FFFFFF;
}

.adspacer{
	margin-bottom:10px;
}
.contimage {
	float:left;
	margin-right:10px;
}

/*** CSS FOR CONTENT PAGES ***/
#contentcolumnpage{
	padding-top: 15px;
	border-left: 1px dotted #A1A1a1;
	border-right: 1px dotted #A1A1a1;
	padding-left:20px;
	padding-right:20px;
}

#leftcolumnpage{
	float: left;
	width: 180px; 			/*Width of left column in pixel*/
	margin-left: -775px; 	/*Set margin to that of -(MainContainerWidth)*/
	padding-top: 15px;
}
#leftNavPage {
	background-color: #ffffff;
}

#contentwrapperpage{
	float: left;
	width: 595px;
	margin-left: 180px;
}

/*** CSS FOR VIDEO PAGE ***/
#rightcolumnvideo{
	float: right;
	width: 6px; 			/*Width of right column*/
	margin-left: -988px; 	/*Set left margin to -(RightColumnWidth)*/
	background: #FFFFFF;
	min-height:550px;
	z-index:-1;
}

#contentcolumnvideo{
	margin: 0 6px 0 6px ; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
	background-color:#ffffff;
	z-index:-1;
}

#leftcolumnvideo{
	float: left;
	width: 6px; /*Width of left column in pixel*/
	margin-left: -1000px; /*Set margin to that of -(MainContainerWidth)*/
	background: #FFFFFF;
	height:inerit;
	height:550px
}

.leaderboard {
	width:998px;
	text-align: center;
	background-color:#CCCCCC;
	margin-top: 17px;
}

.leaderboard img {
	margin:10px;
}

.quickvoteselection {
	padding-left:25%;
	text-align:left;
}
/****************************************/
/*** nav.css                          ***/
/****************************************/
body {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#000000;
}


/* the horizontal menu starts here */
div#listmenu {
	width:999px; /* makes the div full width */
	float:left;
	border:1px solid #000000;
	font-size:11px;	/* SET FONT-SIZE HERE */
	margin-top:0px;
	text-align: center;
	line-height: 1.5em;
	background-color: #D2232A;/* colors the div */
	}
div#listmenu ul {
	margin:0 0 0 0px;/* indents ul from edge of container - NOTE: diff value for IE in hacks below */
	}
div#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#D2232A; /*sets the background of the menu items */
	border-right:1px solid #000000; /* creates dividing lines between the li elements */
	
	font-weight: bold;
	}
div#listmenu li:first-child {
	border-left:1px solid #000000; /*the first vertial line on the menu */
	}

div#listmenu li:hover {
	background-color:#FFF; /*sets the background of the menu items */
	}
div#listmenu a {
	display:block;
	padding:1px 30px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#000000;	/* sets the type color */
	}
div#listmenu a:hover {
background-color:#EB585D;
color:#FFFFFF;

	}
/* the menu ends here */
/* the drop-down starts here */
div#listmenu ul li ul {
	margin:0;
	z-index:10; /* puts drop-down on top of div - Safari needs this as menu is 1px higher */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:10em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	border-right:0; /* stops SCBs drops having two right borders - they inherit the border, IE doesn't */
	left:-1px; /*aligns the drop exactly under the menu */
	width:125px;

	}
div#listmenu ul li ul li {padding:0;
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #000000; /*  three sides of each drop-down item */
	border-bottom:1px solid #000000;;
	border-right:1px solid #000000;
	}
div#listmenu ul li ul li a {padding:1px .5em;}
div#listmenu ul li ul li:first-child {
	border-top:1px solid 000000; /*the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* pop-out starts here */
body div#listmenu ul li ul li ul  {
	position:absolute;
	visibility:hidden; /* same effect as display:none in this situation */
	top:-1px;
	left:10em;
	}
div#listmenu ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* second level popouts start here*/
div#listmenu ul li ul li:hover ul li ul {visibility:hidden;}
div#listmenu ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #000; /* adds the rightmost menu vertical line to the ul */
	margin-left:15px; /* IE doubles the given value above - why? */
	}

/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#listmenu ul li ul {
	border-top:1px solid #CCCCCC;;
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* the Tantek hack to feed IE Win 5.5-5.0 a lower value to get the pop-out to touch the drop-down */
* html  div#listmenu ul li ul li ul {
  left:9.85em;
  voice-family: "\"}\"";
  voice-family:inherit;
  left:10em;
  }
/* and the "be nice to Opera" rule */
html>body div#listmenu ul li ul li ul {
  left:10em;
}

/* an Opera-only hack to fix a redraw problem by invisibly extending the ul */
/* the first-level drop stays open for 100px below the bottom but at least it works */
/* this can be reduced to as little as 22px if you don't have pop-outs */
/* the pop-out menu stays open for 22px below the bottom but at least it works */
	@media all and (min-width: 0px){
   body div#listmenu ul li ul {padding-bottom:100px;}
   body div#listmenu ul li ul li ul {padding-bottom:22px;}
   ul li ul li ul li ul li:hover {visibility:visible;} /* same effect as display:block in this situation */

   }
/*end Opera hack */
/* END OF HACK ZONE */
/* the drop-down ends here */
/* END OF LIST-BASED MENU */

/* finally after feeding values to all others, we deal with MAc5 IE */
/* IE5 Mac can't do drop-downs so we need to present the info in a different way*/
/* we present the drop down choices in a row and never show any second-level drops */
 /* this stylesheet is read by IE5 Mac only - hack omits 'url' and leave no space between @import and ("   */
@import("css/ie51_menu_hack.css");

/****************************************/
/*** roundedbox.css                   ***/
/****************************************/
.roundcont {
	width: 100%;
	background-color: #dcdcdc;
	color: #000000;
	margin-top:15px;
}

.roundcont p {
	margin: 0 10px;
}

.roundtop {
	background:url(../images/tr.gif) no-repeat top right;
}

.roundbottom {
	background: url(../images/br.gif) no-repeat top right;
}

img.corner {
   width: 15px;
   height: 15px;
   border: none;
   display: block !important;
}
#navlist
{
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}

#navlist li {
	font-family:Helvetica, Arial, Geneva, sans-serif;
	text-align:left;
	padding-left: 10px;
	background-image: url(../images/new-icon.gif);
	background-repeat: no-repeat;
	background-position: 0 .5em;
	margin-left:10px;
	color:#333333;
}
#leftNavHeader {
	font-family:Helvetica, Arial, Geneva, sans-serif;
	color:#333333;
	text-decoration: none;
	word-spacing: Normal;
	text-align: left;
	letter-spacing: 0;
	text-indent: 0px;
	line-height: 11px;
	font-size: 11px;
	margin-top:10px;
	margin-bottom:5px;
	line-height:10px;
}
a {
	text-decoration:none
}
/****************************************/
/*** typography.css                   ***/
/****************************************/
p2 {
	font-family: Arial;
	color: #a1a1a1;
	text-decoration: none;
	word-spacing: Normal;
	text-align: left;
	letter-spacing: 0;
	text-indent: 0px;
	line-height: 11px;
	font-size: 12px;
	margin-top:10px;
	margin-bottom:10px;
}
p3 {
	font-family:Helvetica, Arial, Geneva, sans-serif;
	font-size:14px;
	margin-left:10px;
	color:#cccccc;
	align:left;
}
.footerHeader{
	color:#000000;
	font-family:Arial;
	font-size:11px;
	font-weight: bold;
	letter-spacing:0pt;
	line-height:11px;
	margin-bottom:5px;
	margin-left:15px;
	margin-top:10px;
	text-align:left;
	text-decoration:none;
	text-indent:0px;
	word-spacing:normal;
}
.breadCrumb {
	font-family: Arial;
	color: #999999;
	text-decoration: none;
	word-spacing: Normal;
	text-align: left;
	letter-spacing: 0;
	text-indent: 0px;
	line-height: 11px;
	font-size: 11px;
	margin-top:10px;
	margin-left:10px;
	font-weight: bold;
}
/****************************************/
/*** image_gallery.css                ***/
/****************************************/
div.img
  {
  margin-top: 2px;
  margin-bottom: 2px;
  border: 1px solid #A1A1A1;
  height: auto;
  width: 278px;
  float: left;
  text-align: center;
  }
div.img img
  {
  display: inline;
  margin: 3px;
  border: 1px solid #A1A1A1;
  float:left
  }
div.img a:hover img
  {
  border: 1px solid #000000;
  }
div.desc
  {
  text-align: left;
  font-weight: normal;
  width: auto;
  margin: 2px;
  }
/****************************************/
/*** grid.css                         ***/
/****************************************/
body {
	margin: 0px;
	padding: 0px;
	}

body, td  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#000;
	}

select {
	font-size: 9px;
	}

a:link {
	color: #000000;
	}

a:visited {
	color: #000000;
	}

a:hover {
	color: #000000;
	text-decoration: underline;
	}

.floatLeft {
	float: left;
	}

a img {
	border: none;
}

#centerHolder {
	float: left;
	width: 1000px;
	margin-bottom::20px;
	background-color:#ffffff;
	}
#centerHoldersites {
	float: left;
	width: 1000px;
	margin-bottom:20px;
	background-color:#cccccc;
	}
#centerHolderevents {
	float: left;
	width: 1000px;
	margin-bottom:20px;
	background-color:#cccccc;
	}
#eventsChannel {
	height: 250px;
}

.channelBox {
	float: left;
	width: 165px;
	margin-top: 10px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-left: 0px;
	border-right: 1px solid #FFFFFF;
	}

.channelBoxRight {
	float: left;
	width: 165px;
	margin-top: 10px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-left: 0px;
	}

.channelBoxBot {
	float: left;
	width: 165px;
	margin-top: 10px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-left: 0px;
	border-right: 1px dotted #A1A1A1;
	}

.channelBoxRightBot {
	float: left;
	width: 165px;
	margin-top: 10px;
	margin-bottom: 0px;
	margin-right: 1px;
	margin-left: 0px;
	}

.channelBox li, .channelBoxRight li, .channelBoxBot li, .channelBoxRightBot li {
	background: url(index/new-icon.gif) no-repeat 15px 8px;
	padding: 2px 0px 2px 25px;
	line-height: 14px;
	}

.channelBoxCopy {
	margin: 10px;
	padding: 0px;
	}

#footercontainer {
	margin-left: 87px;
}

#rightHolder {
	background-image: url(../images/white-spacer.gif);
	float: right;
	width: 336px;
	margin: 0px;
	}

/** NGN SEARCH BAR **/
#site-search-bar {
	background-color: #AE1E27;
	height:40px;
	margin-top:167px;
	padding:0;
	vertical-align:bottom;
}
#site-search-form {
	margin-left:20px;
	margin-top:9px;
	text-align:center;
	width:268px;
}
#site-search-form form {
	margin: 0px;
	padding: 0px;
	float:inherit;
	}

#site-search-bar input {
	font-size: 10px;
	vertical-align: middle;
	}

#quote-flash {
	float: right;
	}
/****************************************/
/*** forms.css                        ***/
/****************************************/
div#formcontainer {
	width:100%;
	margin-left:5px;
	margin-right:5px;
	}
div#formcontainer h3 {
	margin:20px 0 0 10px;
	font-weight:bold;
	font-size:11px;
	}

div#formcontainer h4 {
	margin:0 0 5px 10px;
	font-weight:normal;
	font-size:11px;
	}

div#formcontainer form  {
width:100%;
	}

div#formcontainer div.clearfix {
	padding:10px 10px;
	vertical-align:top;
	}

div#formcontainer form label {
	width:120px;
	float:left;
	font-size:11px;
	color: #003366;
	margin:0 10px;
	}

div#formcontainer div.buttongroup {
	float:left;
	border:0;
	padding:0px;
	width:100%;
	}

div#formcontainer div.buttongroup div {
	margin-bottom:5px;
	font-size:11px;
	width:100%;
	}
div#formcontainer div.buttongroup input {
	margin-right:5px;
	}
input {
	color: #000000;
	background: #ffffff;
	border: 1px solid #000000;
	/* CSS Document */

	}

.submit input{
	color: #000;
	background: #ffa20f;
	border: 2px outset #000000;
	}

div #site-search-bar {
	float:left;
	margin-left:-10px;
	width:300px;
}