﻿/* <!-- */
/* General styles */
body
{
	margin: 0;
	padding: 0;
	border: 0; /* This removes the border around the viewport in old versions of IE */
	width: 100%;
	background: #fff;
	min-width: 600px; /* Minimum width of layout - remove line if not required */ /* The min-width property does not work in old versions of Internet Explorer */
	/*font-size: 90%;*/
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Header styles */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header
{
	width: 100%;
	height:95px;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header
{
	border-bottom: 1px solid #000; 
	background: url(../images/header/topbox-bg.jpg) left top repeat-x;	
	padding-top: 0px;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#headerLogo
{
	margin-top:-87px;
	margin-left:10px;
	position:absolute;
	z-index:4;
	text-align:center;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#headerBgMap
{
	margin-top:-92px;
	position:absolute;
	z-index:3;
	text-align:center;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header ul
{
	position:absolute;
	top:55px;
	left:-40px;
	z-index:6;
}

/* IE6 HACK */
* html .header ul
{
	top:68px;
}
/* IE7 HACK */
*:first-child+html  .header ul 
{
	top:68px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header li
{    
    float:left;
    list-style:none;
    background:url("../images/header/nav-tab-left.png") no-repeat left top;
    padding:0  0 0 8px;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header a, .header strong  
{
    display:block;
    background:url("../images/header/nav-tab-right.png") no-repeat right top;
    padding:5px 12px 10px 0px;
    margin:0 2px 0 2px;	
    font-family:Trebuchet MS, MSVerdana, Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-size: .8em;
	font-weight: bold;
	color: #000;

}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header a:link, .header a:visited 
{
	background:url("../images/header/nav-tab-right.png") no-repeat right top;
} 
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header li:hover 
{
    background-image:url("../images/header/nav-tab-left.png");
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header a span
{
	padding-bottom:10px;
} 
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header a:hover span, .header a:focus   span
{
	padding-bottom:10px;
    background:url("../images/header/nav-tab-arrow.png") no-repeat center;    
    background-position: center 13px;
	color: #134f94;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header a span.current 
{
	padding-bottom:10px;
    background:url("../images/header/nav-tab-arrow.png") no-repeat center;    
    background-position: center 13px;
	color: #134f94;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
 .header  a.over:link, .header  a.over:visited   
 {
    background-image:url("../images/header/nav-tab-right.png");
    padding-bottom:8px;
}
a.languageToggle , a.languageToggle:visited  , a.languageToggle:hover  , a.languageToggle:link  , a.languageToggle:focus  
{
	background:none;
	background-image:none;
	float:right;
	margin-top:70px;
	margin-bottom:-10px;
}

a.oldSiteLink , a.oldSiteLink:visited , a.oldSiteLink:link  , a.oldSiteLink:focus  
{
	background:none;
	background-image:none;
	font-family:Trebuchet MS, MSVerdana, Arial, Helvetica, sans-serif;
    text-decoration:none;
    font-size: 1em;
	font-weight: bold;
}

a.oldSiteLink:hover
{
	background:none;
	background-image:none;
	font-family:Trebuchet MS, MSVerdana, Arial, Helvetica, sans-serif;
    text-decoration:underline;
    font-size: 1em;
	font-weight: bold;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
div.col2 h1
{
	margin-top:20px;
}

/* 'widths' sub menu */
#layoutdims
{
	clear: both;
	background: #eee;
	border-top: 4px solid #000;
	margin: 0;
	padding: 6px 15px !important;
	text-align: right;
}
/* column container */
.colmask
{
	position: relative; /* This fixes the IE7 overflow hidden bug */
	clear: both;
	float: left;
	width: 100%; /* width of whole page */
	/*overflow: hidden;  This chops off any overhanging divs */
}
/* common column settings */
.colright, .colmid, .colleft
{
	float: left;
	width: 100%; /* width of page */
	position: relative;
}
.col1, .col2, .col3
{
	float: left;
	position: relative;
	padding: 0 0 1em 0; /* no left and right padding on columns, we just make them narrower instead  								only padding top and bottom is included here, make it whatever value you need */
	overflow: hidden;
}


/* 3 Column settings */
.threecol
{
	background: #eee; /* right column background colour */
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~ PANELS OPENED                                                      ~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_Open .colmid_Open  
{
	right: 22%; /* width of the right column */
	background: #fff; /* center column background colour */
	/*border-right: solid;*/
}
.threecol_Open  .colleft_Open
{
	right: 56%; /* width of the middle column */
	background: #f4f4f4; /* left column background colour */
}
.threecol_Open  .col1_Open 
{
	width: 52%; /* width of center column content (column width minus padding on either side) */
	left: 102%; /* 100% plus left padding of center column */
}

.threecol_Open  .col2_Open 
{
	width: 20%; /* Width of left column content (column width minus padding on either side) */
	left: 27%; /* (Width of right column) plus (center column left and right padding) plus (left column left padding) */
}
.threecol_Open  .col3_Open 
{
	width: 20%; /* Width of right column content (column width minus padding on either side) */
	left: 85%; /* Please make note of the brackets here:
				(100% - left column width) + 
				(center column left + right padding) +
				(left column left and right padding) +
				 (right column left padding) */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~ PANELS CLOSED                                                      ~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_BothClosed .colmid_BothClosed
{
	right: 5%; /* width of the right column */
	background: #fff; /* center column background colour */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_BothClosed .colleft_BothClosed
{
	right: 90%; /* width of the middle column */
	background: #f4f4f4; /* left column background colour */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_BothClosed .col1_BothClosed
{
	width: 86%; /* width of center column content (column width minus padding on either side) */
	left: 102%; /* 100% plus left padding of center column */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_BothClosed .col2_BothClosed
{
	width: 0%; /* Width of left column content (column width minus padding on either side) */
	left: 10%; /* (Width of right column) plus 
					(center column left and right padding) plus 
					(left column left padding) */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_BothClosed .col3_BothClosed
{
	width: 0%; /* Width of right column content (column width minus padding on either side) */
	left: 110%; /* 
					(100% - left column width) + 
					(center column left + right padding) +
					(left column left + right padding) + 
					(right column left padding) 
				*/
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~ PANELS RIGHT CLOSED                                                ~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_RightClosed .colmid_RightClosed
{
	right: 5%; /* width of the right column */
	background: #fff; /* center column background colour */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_RightClosed .colleft_RightClosed
{
	right: 73%; /* width of the middle column */
	background: #f4f4f4; /* left column background colour */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_RightClosed .col1_RightClosed
{
	width: 69%; /* width of center column content (column width minus padding on either side) */
	left: 102%; /* 100% plus left padding of center column */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_RightClosed .col2_RightClosed
{
	width: 20%; /* Width of left column content (column width minus padding on either side) */
	left: 10%;  /* (Width of right column) plus (center column left and right padding) plus (left column left padding) */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_RightClosed .col3_RightClosed
{
	width: 0%; /* Width of right column content (column width minus padding on either side) */
	left: 85%; /* 
					(100% - left column width) + 
					(center column left + right padding) +
					(left column left + right padding) + 
					(right column left padding) 
				*/
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~ PANELS LEFT CLOSED                                                      ~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_LeftClosed .colmid_LeftClosed
{
	right: 22%; /* width of the right column */
	background: #fff; /* center column background colour */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_LeftClosed .colleft_LeftClosed
{
	right: 73%; /* width of the middle column */
	background: #f4f4f4; /* left column background colour */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_LeftClosed .col1_LeftClosed
{
	width: 69%; /* width of center column content (column width minus padding on either side) */
	left: 102%; /* 100% plus left padding of center column */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_LeftClosed .col2_LeftClosed
{
	width: 0%; /* Width of left column content (column width minus padding on either side) */
	left: 25%;  /* (Width of right column) plus (center column left and right padding) plus (left column left padding) */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.threecol_LeftClosed .col3_LeftClosed
{
	width: 20%; /* Width of right column content (column width minus padding on either side) */
	left: 105%; /* 
					(100% - left column width) + 
					(center column left + right padding) +
					(left column left + right padding) + 
					(right column left padding) 
				*/
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~ TOGGLE PANEL BUTTONS                                               ~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.toggleLeftOpened
{
	float:right;
	position: relative;
	right:-5px;
	top: 20px;
	z-index:1000;
	border:none;
	background:none;
}
.toggleLeftClosed
{
	float:right;
	position: relative;
	right:-5px;
	top: 20px;
	z-index:1000;
	border:none;
	background:none;
}

.toggleRightOpened
{
	float:right;
	position: relative;
	right:22%;
	top: 165px;
	margin-top:-146px;
	margin-right:-7px;
	z-index:1000;
	border:none;
	background:none;
}

.toggleRightClosed
{
	float:right;
	position: relative;
	right:05%;
	top: 165px;
	margin-top:-146px;
	margin-right:-7px;
	z-index:1000;
	border:none;
	background:none;
}


.toggleRightBtn
{
	background: url(../images/panelToggleRight.PNG) left top repeat-y;		
}
.toggleRightBtn img
{
	border:none;	
}

.toggleLeftBtn
{
	background: url(../images/panelToggleLeft.PNG) left top repeat-y;	
	border:none;	
}
.toggleLeftBtn img
{
	border:none;	
}


/* Footer styles */
#footer
{
	clear: both;
	float: left;
	width: 100%;
	text-align:center;
	background: url(../images/footer/botbar-bg.png) left top repeat-x;	
}

#footer a
{
	margin-right:20px;
}
/* --> cursor:  col-resize; */


