@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #000000;
	background-color: #ffffff;
	background-position: 100%;
	height: 100%;
}
.thrColAbsHdr #container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 916px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	
	border:0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #topBar { 
	height: 10px;
	background:#ff951f;
	margin:0px;
	padding:0px;
}
.thrColAbsHdr #header {
	height: 125px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	background: #DDDDDD;
	padding: 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. */border: 1px solid #8d9296;
} 
.thrColAbsHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColAbsHdr #header #header_left{
	width: 198px;
	float:left;
	height:125px;
	background-color:#FFFFFF;
	
}
.thrColAbsHdr #header #header_middle{
	border:1px solid #8d9296;
	width:429px;
	float:left;
	height:123px;
}
.thrColAbsHdr #header #header_right{
	width: 285px;
	float:left;
	height:125px;
	
}
.thrColAbsHdr #header #header_right #header_right_white{
	width: 285px;
	float:left;
	height:125px;
	
	background-color:#FFFFFF
}

.thrColAbsHdr #footer {
  background-color: #FFF;
  height: 14px;
  padding: 0;
  border-top:1px solid #8f9297;
} 
.thrColAbsHdr #footer_main{
	background-color:#000000;
	height:23px;
	color:#FFFFFF;
	font-size:10px;
	line-height:23px;
	text-align:center;
}
.thrColAbsHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}




	.colmask {
		position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	    clear:both;
	    float:left;
        width:914px;				/* width of whole page */
		overflow:hidden;	/* This chops off any overhanging divs */
	}
	/* holy grail 3 column settings */
	.holygrail {
	    /*background:#ff9;    	 Right column background colour */
		background-image:url(../_images/back_bg.jpg);
		background-position:bottom !important;
		background-repeat:no-repeat;
		/*border-left: 1px solid #8f9297;*/
		border:1px solid #8d9296;
			
	}
	@-moz-document url-prefix(){
		.holygrail { background-position: bottom right !important; }
	}
	/*.holygrail @-moz-document url-prefix() {
		background-position: bottom right !important;
	}*/	
    .holygrail .colmid {
        float:left;
        width:200%;
        margin-left:-285px; 	/* Width of right column */
        position:relative;
        right:100%;
        background:#fff;
		    	/* Centre column background colour */
    }
    .holygrail .colleft {
        float:left;
        width:100%;
        margin-left:-50%;
        position:relative;
        left:483px;         	/* Left column width + right column width */
        /*background:#FFD8B7;*/    	/* Left column background colour */
		border-right:1px #8d9296 solid;
		
		background-image:url(../_images/left_back.gif);
		background-repeat:no-repeat;
		background-color:#eeeeee
    }
    .holygrail .col1wrap {
        float:left;
	    width:50%;
	    position:relative;
	    right:197px;        	/* Width of left column */
	    padding-bottom:1em; 	/* Centre column bottom padding. Leave it out if it's zero */
	}
	.holygrail .col1 {
        margin:0 285px 0 198px;     	/* Centre column side padding:
                            	Left padding = left column width + centre column left padding width
                            	Right padding = right column width + centre column right padding width */
		padding: 0px;						
        position:relative;
	    left:200%;
	    overflow:hidden;
		border-right:0px;		
	}


    .holygrail .col2 {
        float:left;
        float:right;			/* This overrides the float:left above */
        width:198px;        	/* Width of left column content (left column width minus left and right padding) */
        position:relative;
        right:0px;         	/* Width of the left-had side padding on the left column */
    	
	}
    .holygrail .col3 {
        float:left;
        float:right;			/* This overrides the float:left above */
              	/* Width of right column content (right column width minus left and right padding) */
		padding:0px;
		margin:0px;
        margin-right:0px;  	/* Width of right column right-hand padding + left column left and right padding */
        position:relative;
	    left:50%;
		width:285px;
		border-left:0px;
		padding-bottom:0px;
		
		
    }
.col1, .col3{
	color:#525252;
	font-size:11px;
		 
}
.col1 h2{
	background-image:url(../_images/h2_background.gif);
	background-repeat:repeat-x;
	height:17px;
	line-height:15px;
	margin:0px;
	padding:0px;
	padding-left:10px;
	color:#636465;
	font-size:12px;
}
.col1 h3{
	padding-left:10px;
}
.col1 .comp{
	font-size:12px;
	font-weight:600;
	color:#000;
	border-bottom:1px solid #000;
	width:90%;
	margin-left:10px;
	
}
.col1 .compTitle{
font-size:12px;
font-weight:800;
margin-left:10px;
}
.col3 .more{
  background-image:url(../_images/h2_background.gif);
  background-repeat:repeat-x;
  height:20px;
  line-height:20px;
  margin:0px;
  padding:0px;
  padding-right:20px;
  color:#000;
  font-size:10px;
  width:273px;
  border-left:1px #8d9296 solid;
  border-right:0px #8d9296 solid;
  border-bottom:1px #8d9296 solid;
  text-align:right;
  font-style:italic;
}
.noback ul{
	list-style-type: none;
	margin:0px;
	
	padding-left:10px;
}
.noback ul li{
		list-style-type:none
}
.col3 h3{
	font-size:12px;
	padding-left:10px;
}
.col3 h4{
	font-size:11px;
	padding-left:10px;
  	padding-right:15px;
  
}
.col3 .more a{
  color:#FFF;
  text-decoration:none;
}
.col3 .more a:hover{
	text-decoration:underline;
}

.redLink:link, .redLink:visited, .redLink:active{
	color:#7e1c33;
	text-decoration:none;
}
.redLink:hover{
	color:#7e1c33;
	text-decoration:underline;
}

.col1 a{
	color:#858688;
}
.col1 p, .col3 p{
	padding-left:10px;
	padding-right:10px;
	line-height:17px;
}
.col2ul{
  list-style-type: none;
  margin:0px;
  padding-top:10px;
  padding-left:10px;
  text-decoration:underline;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}
.col2ul li{
	margin-bottom:10px;
	list-style-type:none
}
.noback{
	background-image:none;
	background-color:#FFFFFF;
	border:1px solid #8d9296;
	border-right:0px;
	padding-top:1px;
	width:288px;
	}

.space{
	padding-top:203px;
	padding-right:0px;
	background-image:url(../_images/right_back.jpg);
	background-repeat:repeat-x;
	border:1px solid #8d9296;
	border-right:0px;
	border-top:0px;
	width:285px;
	height:150px;
	float:left;
	
	
}
.playerBox{
margin:0px;
padding:0px;
background-image:url(../_images/back_bg.jpg);
background-position:0px bottom;
background-repeat:no-repeat;
text-align:left;
width:285px;
padding-top:10px;
padding-bottom:10px;
padding-left:2px;
display:block;
}
.playerBox h3{
	font-size:10px;
	font-weight:800;
	text-align:left;
	width:255px;
  	padding-top:0px;
	padding:10px;
}
.playerBox p{
	font-size:11px;
}
/* SpryCollapsiblePanel.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
	color:#505255;
	/*border-left: solid 1px #CCC;
	border-right: solid 1px #999;
	border-top: solid 1px #999;*/
	border-bottom: solid 1px #FFF;
}

/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	font: bold 0.7em sans-serif;
	background-color: #cbcbcb;
	/*border-bottom: solid 1px #CCC;*/
	margin: 0px;
	padding: 10px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
.CollapsiblePanelContent {
	margin: 0px;
	padding: 0px;
	font: bold 0.7em sans-serif;
	display:none;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelContent{
	background-color: #FFF;
} 
.CollapsiblePanelContent ul{
	list-style-type: none;
	margin:0px;
	padding:0px;
}
.CollapsiblePanelContent ul li{
	margin:0px;
	padding:0px;
	padding-left:30px;
	margin-bottom:1px;
	background-color: #dcdedd;
	height:25px;
	line-height:25px;
	color:#505255;
}
.CollapsiblePanelContent ul li a{
	color:#505255;
	text-decoration: none;
}
.CollapsiblePanelContent ul li a:hover{
	text-decoration: underline;
}
.CollapsiblePanelTab a {
	color: #505255;
	text-decoration: none;
}
.CollapsiblePanelTab a:hover {
	color: #7e1c33;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #cbcbcb;
}
.CollapsiblePanelOpen, .CollapsiblePanelOpen a{
	color:#7e1c33;
}
/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #CCC;
	color:#7e1c33;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #cbcbcb;
	color: #7e1c33;
}
a:hover{
	color:#7e1c33;
	text-decoration:underline;
}
a:active, .active{
  color:#7e1c33;
  font-weight:bold;
  font-style:underline;
  text-decoration: underline;
}
a{
  color:#505255;
  text-decoration:underline;
}

#divWhite_Right_Bottom{
	position:relative; 
	top:-0px;
	width:283px;
	float:left;
	border-left:1px solid #8d9296;
	background-color:#FFFFFF
}
#divPoweredBy{
  position:absolute;
  text-align:center;
  height:26px;
  width:143px;
  top: 790px;
  left: 20px;
}
#divRSS{
  position:relative;
  text-align:center;
  left:-20px;
  top:-320px;
  width:250px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 10px;
  color: #7e1c33;
}

#divNVCA{
	position:relative; 
	text-align:center;	
	left:-30px; 
	top:-360px; 
	width:250px; 
}
.clear{
	clear:both;
}
.divCompany{
	display:block;
	width:400px;
	margin:auto;
	margin-top:10px;
}
.divLogoContainer{
	float:left;
	width: 140px;
}
.divCompanyDesc{
	float:left;
	width:250px;
	font-size:10px; 
	color:#000; 
	font-weight:300;
}
.dottedLine{
	padding:0px;
	padding-bottom:10px; 
	border-bottom:2px dotted #8d9296; 
	width:200px; 
	margin-left:10px;
	font-size:12px;
}
.col1 .dottedLine a{
	color:#7e1c33;
	text-decoration:none;
	font-size:14px;
}
.subTitle a{
	font-size:11px;
	text-decoration:none;
	margin-left:-10px;
	font-weight:bold;
}

.whiteLink:link, .whiteLink:visited, .whiteLink:active {
  color:#FFF;
  text-decoration:underline;
}

.whiteLink:hover {
  color:#F90;
  text-decoration:underline;
}

.indentitalic {
  font-style: italic;
  margin-left: 20px;
  margin-right: 60px;
}

IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto }

.bullettext {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #525252;
  text-align: justify;
  width: 360px;
  text-indent: -10px;
}
.newsheads {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #525252;
  text-align: justify;
  width: 320px;
}

.events {
  list-style-type: none;
  padding-top:10px;
  padding-left:10px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  padding-right: 2px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}
