@charset "UTF-8";
body  
{
	background: #5c5c5c;
	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;
	height:100%;	
	font-size:12px;
}

.twoColFixLtHdr #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColFixLtHdr #sidebar1 
{
	float: left; /* since this element is floated, a width must be given */
	width: 210px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/*background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 0px 15px 0px;
	margin-top:0px;
}

.twoColFixLtHdr #mainContent 
{ 
	margin: 0 0 0 210px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. 
	You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height:600px;
	height:auto !important;
	height:600px;
} 

.twoColFixLtHdr #footer 
{ 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff; 	
}
 
.twoColFixLtHdr #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 */
}

.menu_h
{
	color:#ffffff;
	text-align:center;
	text-decoration:underline;
	font-weight:bold;
	font-size:14px;
}

.bb
{
	border:1px solid #c00;	
}

.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;
}

.strapline
{
	font-size:16px;
	font-weight:bold;
	padding-right:10px;
}

.calendar
{
	border: 1px solid #000;
	border-collapse:collapse;
	color: #000000;
	background-color: #fff;
	font-size:8pt;
} 

.calendar a 
{
	font-size:8pt;
} 

.today
{
	border: 1px solid #000;
	color: #000000;
	font-weight: bold; 
} 

.days
{
	color: #000000;
	background-color: #fff;
} 

.nonmonthdays 
{ 
	color: #000000;
	background-color:#eee;
} 

.date
{
	float: left;
	height: 30px;
	width: 30px;
	background: url(/img/date.png) no-repeat;
	margin-right: 5px;
	padding-top: 0px;
	line-height: normal;
}

.date .month
{
	display: block;
	text-align: center;
	color: #fff;
	font-size: 7px;
	padding-top: 1px;
	text-transform: uppercase;
}

.button 
{
	font: bold 11px Arial;
	text-decoration: none;
	background-color: #EEEEEE;
	color: #333333;
	padding: 2px 6px 2px 6px;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	border-left: 1px solid #CCCCCC;
}
/********DEPRECATED*******/
.adbox 
{
	padding: 1px;
	width:165px;
	margin:0px 0px 0px 20px;
	border: 1px dotted #B1B1B1;
	background-color: #F4F4F4;
}

.adbox p
{
	text-align:center;
	line-height:14px;
	margin:1px;
}
/**************************/

.datebox
{
	padding: 1px;
	width:165px;
	margin:0px 0px 1px 20px;
	border: 1px solid #222;
	background-color: #fff;
}

.datebox p
{
	text-align:left;
	font-size:10px;
	
}

a.info
{
    position:relative; /*this is the key*/
    z-index:24; 
	background-color:transparent;
    color:#000;
    text-decoration:underline;
}

a.info:hover
{
	z-index:25; 
	background-color:#f5f5f5;
}

a.info span
{
	display: none;
}

a.info:hover span
{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:2em; 
	right:2em; 
	width:15em;
    border:1px solid #000;
    background-color:#f5f5f5; 
	color:#000;
    text-align: center;
}

.TESTcpYearNavigation,
.TESTcpMonthNavigation
{
	background-color:#6677DD;
	text-align:center;
	vertical-align:middle;
	text-decoration:none;
	color:#FFFFFF;
	font-weight:bold;
}

.TESTcpDayColumnHeader,
.TESTcpYearNavigation,
.TESTcpMonthNavigation,
.TESTcpCurrentMonthDate,
.TESTcpCurrentMonthDateDisabled,
.TESTcpOtherMonthDate,
.TESTcpOtherMonthDateDisabled,
.TESTcpCurrentDate,
.TESTcpCurrentDateDisabled,
.TESTcpTodayText,
.TESTcpTodayTextDisabled,
.TESTcpText
{
	font-family:arial;
	font-size:8pt;
}

td.TESTcpDayColumnHeader
{
	text-align:right;
	border:solid thin #6677DD;
	border-width:0 0 1px 0;
}

.TESTcpCurrentMonthDate,
.TESTcpOtherMonthDate,
.TESTcpCurrentDate
{
	text-align:right;
	text-decoration:none;
}

.TESTcpCurrentMonthDateDisabled,
.TESTcpOtherMonthDateDisabled,
.TESTcpCurrentDateDisabled
{
	color:#D0D0D0;
	text-align:right;
	text-decoration:line-through;
}

.TESTcpCurrentMonthDate
{
	color:#6677DD;
	font-weight:bold;
}
			
.TESTcpCurrentDate
{
	color: #FFFFFF;
	font-weight:bold;
}

.TESTcpOtherMonthDate
{
	color:#808080;
}

td.TESTcpCurrentDate
{
	color:#FFFFFF;
	background-color: #6677DD;
	border-width:1px;
	border:solid thin #000000;
}

td.TESTcpCurrentDateDisabled
{
	border-width:1px;
	border:solid thin #000;
}

td.TESTcpTodayText,
td.TESTcpTodayTextDisabled
{
	border:solid thin #6677DD;
	border-width:1px 0 0 0;
}

a.TESTcpTodayText,
span.TESTcpTodayTextDisabled
{
	height:20px;
}
	
a.TESTcpTodayText
{
	color:#6677DD;
	font-weight:bold;
}

span.TESTcpTodayTextDisabled
{
	color:#D0D0D0;
}

.TESTcpBorder
{
	border:solid thin #6677DD;
}


/*************************
FEEDS
***********/

.feed_head 
{ 
	overflow: hidden; 
	border: #d9d9d9 solid 1px; 
	border-top: none; 
	background-color: #CDCDCD; 
	height: 28px; 
	line-height: 28px; 
	color: #000; 
	text-transform: uppercase; 
	font-size: 16px; 
	font-weight: normal; 
	text-align: center; 
	margin: 0; 
} 

.feeds_container
{ 
	width: 350px; 
} 

.feeds
{ 
	border: 1px #CDCDCD solid; 
} 

.feeds ul
{ 
	margin: 0; 
	padding: 0; 
	list-style: none; 
} 

.feeds li 
{ 
	padding: 14px 15px; 
	font-size: 13px; 
	color: #333333; 
	position: relative; 
	background: #fbfbfb url(/img/right_sprtline.gif) repeat-x left bottom; 
} 

.feeds li.odd 
{ 
	background: #f7f7f7 url(/img/right_sprtline.gif) repeat-x left bottom; 
} 

.feeds li .feedtext 
{ 
	width: 320px; 
	display: block; 
} 

.feeds li .iconAdd 
{ 	
	position: absolute; 
	right: 24px; 
	top: 25px; 
} 

.feeds li a 
{ 
	color: #3cadcd; 
} 

.feeds .loading 
{ 
	position: absolute; 
	left: 1px; 
	bottom: 1px; 
	padding: 5px 0; 
	background: #fafafa; 
	text-align: center; 
	width: 238px; 
	-webkit-border-radius: 0 0 5px 5px; 
	-moz-border-radius: 0 0 5px 5px; 
	border-radius: 0 0 5px 5px; 
	overflow: hidden; 
} 

.loading img,.loading span 
{ 
	display: none; 
} 


/**********************************
		SECOND NAV
********************************/


#secnav {
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
	list-style: none;
}

#secnav li 
{
	float: left; 
}

#secnav li a 
{
	display: block;
	padding: 7px 7px;
	text-decoration: none;
	font-weight: 600;
	border-right: 1px solid #ccc; 
	line-height:16px;
	color:<?=$G_framecolour;?>
}

#secnav li a span img
{
	border:none;
}

#secnav li a:hover 
{
	background-color: #fff; 
}		


.pastnews {
	width: 90%;
	float: left;
	margin: 0;
	padding: 2px;
	list-style: none;
	background-color:#CCC;
}

.pastnews li 
{
	float: left; 
	font-weight: 600;
}

.pastnews li a 
{
	display: block;
	padding: 2px 7px;
	text-decoration: none;
	
	border-left: none; 
	line-height:12px;
	color:<?=$G_framecolour;?>
}

.pastnews li a span img
{
	border:none;
}

.pastnews li a:hover 
{
	background-color: #fff; 
}	