/* **NOTE: 16th April 08 
- #SITE  is the div that surrounds all content in the page so all styles must have #site around them so as not to clash with cms styles*/




/*///////////////////////////////////////////////////////////////////////// */
/*///////////////////////////////////////////////////////////////////////// */
/*//CSS KEY////////////////////////////////////////////////////////////////////////

1) BASICS
	 1.1) Default HTML Tags (h1, h2 etc)
	 1.2) Site Tools (.float_left, clearfix etc )
	 1.3) Divs Structure (#header, #column1 etc)
	 
2) DIV-AREA-SPECIFIC-CSS
	2.1) Header
	2.2) Column1
	2.3) Column2
	2.4) Column3
	2.5) Footer
	2.6) Carry on with each element... 2g etc - write in here also

3) NAVIGATION
	3.1) Primary Navigation
	3.2) Secondary Navigation
	
4)	FORMS
	4.1) Basic Form Styles
	4.2) Status boxes
	
5) MODULES
	5.1) News module

6) UNCLASSIFIED 
	(Any styles that you havent classified or are yet to be sorted put here temporarily)

7) CSS RECYCLE BIN
	(Any styles you delete that you might want back)
	
	
////////////////////////////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////////////////////// */
/*///////////////////////////////////////////////////////////////////////// */







#theme_title_container a{
	text-decoration: none;
	display: none;
}

.googleMap {
	padding: 3px;
	float: right;
	border: 1px solid #CCCCCC;

}


.login {
	height: 83px;
	width: 93px;
	background-image: url(../media/siteImages/login.jpg);
	background-repeat: no-repeat;
	display: block;
	float: right;
	cursor: pointer;
	background-position: right top;
}
a.login:hover  {

	background-position: 0px -83px;
}



#logo {
	padding-top: 25px;
	padding-left: 25px;
}


/*///////////////////////////////////////////////////////////////////////// */
/*///////////////////////////////////////////////////////////////////////// */
/*///////////////////////////////////////////////////////////////////////// */
#1-BASICS---xxxxxxxxxxxxxxxxxxxxxxxx-----------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */
/*///////////////////////////////////////////////////////////////////////// */



/*///////////////////////////////////////////////////////////////////////// */
#1-1-default-html-tags------------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */

body {
	margin: 0px;
	padding: 0px;
	background-color: #DFECB4;
}


.intro {
	color: #8F7AB4;
}

#site p {
	font-size: 1.1em;
	margin-top: 0px;
	margin-bottom: 10px;
	color: #000000;
}

#site a{
	color: #5F4A83;
}

#site a:hover {
	background-color: #E8E2EF;
}

#site h1 {
	font-size: 2em;
	color: #FFFFFF;
	margin-top: 25px;

	background-color: #592E85;
	line-height: 40px;
	font-weight: normal;
	height: 40px;
	padding-left: 5px;
	background-image: url(../media/siteImages/theme-default/h1.jpg);
	background-repeat: repeat-x;
}

#site .noBackground { /*this styles the h1 tag for detail pages for projects and news etc*/
	background: none;
	color: #5F4A83;
	padding-left: 0px;
	height: auto;
	line-height: 1.1em;
}

#site h2 {
	font-size: 1.5em;
	font-weight: normal;
	padding-bottom: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	margin-top: 25px;
	margin-bottom: 10px;
	display: block;
	clear: both;
	color: #003333;
}




#site #column1 h3 {
	font-size: 1.4em;
	font-weight: normal;
	padding-bottom: 3px;
	border-bottom-style: none;
	margin-top: 25px;
	margin-bottom: 10px;
	display: block;
	clear: both;
	color: #000000;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}

#site #column2 h3 {
	margin-top: 25px;
	background-image: url(../media/siteImages/theme-default/h2.jpg);
	background-repeat: repeat-x;
	color: #FFFFFF;
	background-color: #009933;
	line-height: 32px;
	height: 32px;
	padding-left: 5px;
}


#site h4 {
	font-size: 1.3em;
	font-weight: bold;
	padding-bottom: 3px;
	border-bottom-style: none;
	margin-top: 25px;
	margin-bottom: 10px;
	display: block;
	clear: both;
	color: #666666;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}
#site h5 {
	font-size: 1.1em;
	font-weight: bold;
	padding-bottom: 3px;
	border-bottom-style: none;
	margin-top: 25px;
	margin-bottom: 10px;
	display: block;
	clear: both;
	color: #7E7E7E;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}




#site h4 {
	color: #666666;
	margin-bottom: 3px;
	font-size: 1.2em;
	margin-top: 0px;
}


#site strong {
	color: #000000;
}

#site blockquote {
	color: #0072BC;
	font-size: 0.9em;

	margin-bottom: 15px;
	font-style: italic;
	padding-left: 15px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #00B2F0;
}





#site li

{

}






#site table{
	margin-bottom: 15px;
	width: 99%;
	border-collapse:collapse; 
}

#site td, #site th {
	padding: 6px;
	border: 1px solid #C1C1C1;
	border-collapse:collapse;
	background-color: #F7F7F7;
}


#site th {
	padding: 8px;
	text-align: left;
	color: #0066FF;
	text-transform: uppercase;
	background-color: #E6E6E6;
}
#site td {
	background-color: #F7F7F7;
}
#site caption {
	display: none;
}

#site tfoot td{
	display: block;
	margin-bottom: 20px;
	text-align: left;
	padding-bottom: 20px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #FFFFFF;
	font-style: italic;
	color: #999999;
}




/*///////////////////////////////////////////////////////////////////////// */
#1-2-site-tools------------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */

#site .floatLeft {
    float: left;
}

#site .floatRight {
    float: right;
}

#site .clear {
    clear: both;
}




.clearfix:after {   
    content: ".";   
    display: block;   
    clear: both;   
    visibility: hidden;   
    line-height: 0;   
    height: 0;   
}   
  
.clearfix {   
    display: inline-block;   
}   
  
html[xmlns] .clearfix {   
    display: block;   
}   
  
* html .clearfix {   
    height: 1%;   
}  



#site .thumb {
	padding: 3px;
	border: 1px solid #CCCCCC;
	margin-bottom: 15px;
}
#site .thumb p{ /*this bascially is for the google map view larger map link*/
	padding: 0px;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}



/*The .columns styles can be used anywhere to have a two column in the content
They are used at the moment in Sectors Pages in  New Investors*/
#site .columns {
	float: left;
	width: 45%;
	margin-right: 4%;
}
*html #site .columns {
	width: 40%;
}

#site .columns ul{
	margin-top: 0px;
	margin-bottom: 0px;
}



/*///////////////////////////////////////////////////////////////////////// */
#1-3-main-div-structure------------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */


#site {
	font-family: "Trebuchet MS";
	font-size: 76%;
	margin: 0px;
	background-image: url(../media/siteImages/bg.jpg);
	background-repeat: repeat-x;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-bottom: 70px;
}


#container {
	width: 960px;
	border: 1px solid #FFFFFF;
	background-color: #FFFFFF;
	text-align: left;
	margin-left: auto;
		margin-right: auto;
}

#container1 {
	background-image: url(../media/siteImages/bg-middle.jpg);
	background-repeat: repeat-y;
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

#container2 {
	width: 980px;
	background-repeat: no-repeat;
	background-position: top;
	background-image: url(../media/siteImages/bg-top.jpg);
	text-align: center;
}

#site #header {
	background-repeat: no-repeat;
	background-position: right top;
	background-image: url(../media/siteImages/header_leaf.jpg);
	height: 132px;
}


#site #image {

	height: 165px;
	background-image: url(../media/siteImages/theme-default/image1.jpg);
	background-repeat: no-repeat;
	padding-top: 35px;
	padding-left: 125px;
}

#site #image strong {

	color: #FFFFFF;
}
#site #image p{
	color: #FFFFFF;
	width: 40%;
	font-size: 1.2em;

	font-weight: bold;
}


#site #image #image_latestproject {
	float: right;
	margin-right: 35px;
	width: 253px;
	height: 180px;
	padding-top: 20px;
	padding-left: 20px;
	display: none;
}

#site #image #image_latestproject p{
	width: auto;
}

#site #content {

}



#site #column2 ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#site #column2 li {

}

#site #column2 li a{
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	text-decoration: none;
	background-image: url(../media/siteImages/link-image.gif);
	background-repeat: no-repeat;
	padding-left: 30px;
	background-position: 3px 4px;
}



#site #column3 {

}

#site #contentanchor { /*this is the anchor  link to the content for accessibility*/
	position: absolute;
}


#site #image {

}




#site #column1{
	float: left;
	width: 600px;
	margin-right: 35px;

}

#site .project_theme {
	background-repeat: no-repeat;
	height: 40px;
	width: 40px;

	margin-top: 6px;
	background-position: center center;
}


#site .project_theme_sniffer { 
	background-image: url(../media/siteImages/theme_default.jpg);
}


#site .project_theme_sustainableland { 
	background-image: url(../media/siteImages/theme1.jpg);
}

#site .project_theme_sustainableplaces{ 
	background-image: url(../media/siteImages/theme2.jpg);
}

#site .project_theme_environmentalregulation { 
	background-image: url(../media/siteImages/theme3.jpg);
}

#site .project_theme_climatechange { 
	background-image: url(../media/siteImages/theme4.jpg);
}

#site .project_theme_europeaninvolvement { 
	background-image: url(../media/siteImages/theme5.jpg);
}

#site .project_theme_emergingissues { 
	background-image: url(../media/siteImages/theme6.jpg);
}
#site .project_theme_clientservices { 
	background-image: url(../media/siteImages/theme7.jpg);
}




#site #image_latestproject {
 display:none;
}



#site #column2  {
	float: left;
	width: 280px;

}



#column1, #column2  {
	padding: 0px;

}


#site .column_padding {

}

#site #myGallery
{
	width: 530px;
	height: 355px;
	z-index:3;
	display: block;
	margin-bottom: 0px;
	background-position: right top;
	position: absolute;
	margin-left: -16px;
	clip: rect(auto,auto,auto,auto);
	margin-top: -422px;
	overflow: hidden;
}


#site #content {
	margin-bottom: 15px;
	padding: 15px;
}
#site #footer {
	color: #666666;
	height: 270px;
	clear: both;
	background-image: url(../media/siteImages/footer_bg.jpg);
	background-repeat: repeat-x;
	background-position: left bottom;

	margin: 0px;
	padding: 0px;
}



#site #footer_contact {
	background-image: url(../media/siteImages/footer_thistle.jpg);
	background-repeat: no-repeat;
	width: 240px;
	float: right;
	background-position: right bottom;
	color: #FFFFFF;
	text-align: right;
	padding-right: 150px;
	margin: 0px;
	padding-top: 140px;
	height: 130px;
	padding-bottom: 0px;
	padding-left: 0px;

}


#site #container #footer_contact a{
	color: #FFFFFF;
}
#site #container #footer_contact a:hover{
	color: #336600;
}
#footer_left {
	width: 510px;
	float: left;
	padding-top: 170px;
	padding-left: 25px;

}


#footer_left img {
	padding: 2px;
	border: 1px solid #99BA54;
	margin-right: 5px;
}


#footer2 {
	font-size: 0.9em;
	text-align: center;
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 15px;
}
#footer2 a{
	color: #000000;
	text-decoration: none;
}

/*///////////////////////////////////////////////////////////////////////// */
/*///////////////////////////////////////////////////////////////////////// */
/*///////////////////////////////////////////////////////////////////////// */
#2-DIV-AREA-SPECIFIC-CSS---xxxxxxxxxxxxxxxxxxxxxxxx-----------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */
/*///////////////////////////////////////////////////////////////////////// */
/*BASIC STYLES FOR SPECIFIC DIVS OR AREAS E.G. COLUMN 1 LI ETC*/

	
	
	
	
/*///////////////////////////////////////////////////////////////////////// */
#2-1-HEADER-----------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */





/*///////////////////////////////////////////////////////////////////////// */
#2-2-COLUMN1-----------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */
#site #column1 ul{

}


#site #column1 li{
	display: block;
	padding-bottom: 5px;
	font-size: 1.1em;
	color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E0E0E0;
	padding-top: 5px;
}
#site #column1 li a{
	/*display: block;
	color: #999999;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	text-decoration: none;*/
}
#site #column1 li a:hover{
	background-color: #FFFFFF;
	color: #000000;
}

/*///////////////////////////////////////////////////////////////////////// */
#2-3-COLUMN2-----------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */



#site #column2 h2 a{

}
#site #column2 h2 a:hover{

}

#site #column1 h2 {

}

#site #column1 h2 a{

}


#site #column1 h2 a:hover{

}


/*///////////////////////////////////////////////////////////////////////// */
#2-4-COLUMN3-----------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */











/*///////////////////////////////////////////////////////////////////////// */
#2-5-FOOTER-----------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */
#site #footer a{
	color: #999999;
	text-decoration: underline;
	cursor: pointer;
}
#site #footer a:hover{
	color: #333333;

}



/*///////////////////////////////////////////////////////////////////////// */
#2-6-PROJECTS-----------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */
#site .projects_container {
	background-color: #EBEDDC;
	padding: 10px;
	margin-bottom: 20px;
 
}



/* Hides from IE5-mac \*/
html .projects_container {height: 1%;}
/* End hide from IE5-mac */


*html #site .projects_container {
 height: 90px;
 
}

#site #column2 .projects_container {
	background-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding: 0px;
	margin-bottom: 2px;
}



#site .project_title strong{
	font-size: 0.9em;
	color: #000000;

}
#site .project_title a{
	color: #000000;
	text-decoration: none;

}


#site .projects_container strong{

}
#site .project_icon_container {
	background-image: url(../media/siteImages/icon_project.jpg);
	float: left;
	height: 67px;
	width: 52px;
	margin-right: 15px;
	margin-bottom: 7px;

}




#site .project_icon_status {
	text-align: center;
	padding-top: 4px;
	height: 15px;
	margin-top: 3px;
	margin-right: 3px;
	margin-left: 3px;
}

#site .project_icon_status p{
	font-size: 0.7em;
	color: #FFFFFF;
	text-transform: uppercase;
	margin: 0px;
	padding: 0px;
	height: 10px;
}

#site .project_id {
	background-color: #EAE6F0;
	color: #785F9E;
	float: right;
	margin-left: 20px;
}



#site .project_keywords {
	margin: 0px;
	clear: both;
	padding-top: 3px;
	padding-bottom: 5px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	color: #9B9B9B;

}	
*html #site .project_keywords {
	height: 30px;
}	

#site .project_status_proposed {


}


#site .project_status_active {
	background-image: url(../media/siteImages/icon_active.jpg);
	background-repeat: no-repeat;
}


#site .project_status_complete {
	background-image: url(../media/siteImages/icon_complete.jpg);
	background-repeat: no-repeat;

}



/*///////////////////////////////////////////////////////////////////////// */
#2-7-EVENTS-----------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */

#site .event_container {
	margin-bottom: 6px;
	padding-bottom: 6px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;

}

#site #column1 .event_container {
	padding-top: 20px;
	padding-bottom: 20px;
}
#site #column1 .event_title {
	font-size: 1.5em;
	font-weight: bold;

}

#site .event_container p{
	margin: 0px;
	padding: 0px;
}

#site .event_icon_container {
	background-image: url(../media/siteImages/icon_event.jpg);
	background-repeat: no-repeat;
	height: 71px;
	width: 52px;
	float: left;
	margin-right: 15px;
}

#site .event_icon_container p{
	text-align: center;
	font-size: 2.3em;
}
#site .event_icon_container p strong{
	display: block;
	color: #FFFFFF;
	margin-top: 7px;
		font-size: 0.4em;
}

/*///////////////////////////////////////////////////////////////////////// */
#2-7-NEWS-----------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */

#site #column1 .news_item_title {
	font-size: 1.5em;
	font-weight: bold;
	text-decoration: none;

}



#site .news_item_container {
	margin-bottom: 6px;
	padding-bottom: 6px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	clear: both;
	font-size: 0.9em;
	color: #FFFFFF;
	display: block;

}
#site .news_item_container strong{

	color: #FFFFFF;
}
.news_item_date {
	background-image: url(../media/siteImages/icon_news.jpg);
	background-repeat: no-repeat;
	float: left;
	height: 64px;
	width: 52px;
	margin-right: 15px;
	padding-top: 3px;
}

.news_item {
	float: left;
}

.news_item_date_year {
	display: none;

}


.news_item_date_day{
	float: left;
	color: #FFFFFF;
}
.news_item_date_month {
	float: left;
	margin-right: 3px;
	margin-left: 10px;
}



/*///////////////////////////////////////////////////////////////////////// */
#2-9-SIDEBOXES-----------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */

#site .sidebox {
	margin-bottom: 20px;

}
#site .sidebox_footer {
	font-size: 0.7em;
}

#site #column2 .sidebox_item {
	background-color: #FFFFFF;
	margin-bottom: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E0E0E0;
	padding-top: 6px;
	margin-bottom: 6px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#-----site-search---------------------------------------------------{}
/*SITE SEARCH at top of the page - START////////////////////////////////////////*/
#site #search {
	width: 270px;
	height: 100px;
	
	position: absolute;
	margin-left:775px;
	/*	background-image: url(../media/siteImages/search-bg.jpg);*/
	background-repeat: no-repeat;
	background-position: left top;
	color: #336633;
	top: 88px;
}

#site #search .formButton {
/*	background-image: url(../media/siteImages/search-button.gif);*/
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	width: 26px;
	height: 26px;
	color: #FFFFFF;
	margin: 0px;
	background-repeat: no-repeat;
	background-color: transparent;
	margin-top: 0px;
	padding-bottom: 0px;
	cursor: pointer;
}


.search-textbox {
	padding-right: 7px;
	padding-left: 7px;
	padding-bottom: 0px;
	padding-top: 0px;
	margin-right: 6px;
	margin-top: 5px;
	width: 120px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: transparent;
	height: 23px;
}

#site #search-results td, 
#site #search-results th, 
#site #search-results table {
	background-color: #FFFFFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding: 0px;
	margin-top: 7px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

/*SITE SEARCH at top of the page - END//////////////////////////////////////////*/
/*///////////////////////////////////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////////////////////////// */
#3-NAVIGATION-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-----------------------------{}
/*///////////////////////////////////////////////////////////////////////// */

#site .project_tab_container {
	height: 32px;
	background-repeat: repeat-x;
	background-position: bottom;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DBDBDB;
	margin-bottom: 10px;
}

#site .project_tab_current {
	background-position: 0px -32px;
	height: 20px;
	margin-top: 1px;
}

#site .project_tab a {
	text-decoration: none;
	font-weight: normal;
	color: #929292;
}

#site .project_tab {
	background-image: url(../media/siteImages/project_tabs.jpg);
	float: left;
	height: 18px; 
	width: 151px;
	font-weight: bold;
	font-size: 1.1em;
	padding: 7px;
	margin-right: 5px;		
	text-align: center;
} 




/*///////////////////////////////////////////////////////////////////////// */
#3-1-PRIMARY-NAVIGATION-----------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */
	


#site #primary_navigation .theme1 {
	background-color: #70AFD1;
	background-image: url(../media/siteImages/theme1_reverse.jpg);
	color: #E6F1F7;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 5px;
	padding-left: 30px;
	font-size: 1.1em;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: 50px;
	width: 126px;
}
	

#site #primary_navigation .theme2 {
	background-color: #666666;
	background-image: url(../media/siteImages/theme2_reverse.jpg);
	color: #EFE6DC;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 5px;
	padding-left: 30px;
	font-size: 1.1em;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: 35px;
	width: 126px;	
}

	
#site #primary_navigation .theme3 {
	background-color: #A85B2D;
	background-image: url(../media/siteImages/theme3_reverse.jpg);
	color: #EAC6B0;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 5px;
	padding-left: 30px;
	font-size: 1.1em;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: 35px;
	width: 126px;	
}

	
#site #primary_navigation .theme4 {
	background-color: #85B52D;
	background-image: url(../media/siteImages/theme4_reverse.jpg);
	color: #E7F2D0;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 5px;
	padding-left: 30px;
	font-size: 1.1em;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: 35px;
	width: 126px;	
}

#site #primary_navigation .theme5 {
	background-color: #245A77;
	background-image: url(../media/siteImages/theme5_reverse.jpg);
	color: #D8EAF3;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 5px;
	padding-left: 30px;
	font-size: 1.1em;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: 35px;
	width: 126px;
}

#site #primary_navigation .theme6 {
	background-color: #C4AB1A;
	background-image: url(../media/siteImages/theme6_reverse.jpg);
	color: #FAF4D3;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 5px;
	padding-left: 30px;
	font-size: 1.1em;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: 35px;
	width: 126px;
}

#site #primary_navigation .theme7 {
	background-color: #996699;
	background-image: url(../media/siteImages/theme7_reverse.jpg);
	color: #E0CFE0;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 5px;
	padding-left: 30px;
	font-size: 1.1em;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: 35px;
	width: 126px;
}
	
	
.NavSecondaryTitle {
	font-size: 0.6em;
	color: #EBE8F0;
}	

	
	
	
#site #primary_navigation {
	background-color: #251841;
	height: 50px;
	}
	
		/* r.a.d.menu Plain skin */
		#site #content_header a:hover{
			background-color: transparent;
			color: #006699;
		}
		
		
		.RadMenu_MainMenu {
			position:absolute;

		}
		
		* html .RadMenu_MainMenu {
		
		}
		
		.RadMenu_MainMenu_Context{
			background: none;
			border:0;
		}
		
#site .RadMenu_MainMenu .link {

	text-decoration:none;
	color: #FFFFFF;
	font-size: 1.3em;
	height: 35px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
	background-color: #592E85;

	background-repeat: repeat-x;
	border-bottom-style: none;
	border-left-style: none;
	width: 156px;
	text-align: left;
	white-space:normal !important; 
}

#site .RadMenu_MainMenu .rootGroup .item {
	border-right: solid 4px #251841;
}

#site .RadMenu_MainMenu .level1 .item {
	border-left: solid 4px #251841;
	border-right: solid 4px #251841;
	margin-left: -4px;	
}

#site .RadMenu_MainMenu .level1 .last {
	border-bottom: solid 4px #251841;
}

#site .RadMenu_MainMenu .level2 .item {
	border-left: solid 4px #251841;
	border-right: solid 4px #251841;
	margin-left: -4px;	
}

#site .RadMenu_MainMenu .level2 .last {
	border-bottom: solid 4px #251841;
}

#site .RadMenu_MainMenu .level3 .item {
	border-left: solid 4px #251841;
	border-right: solid 4px #251841;
	margin-left: -4px;		
}

#site .RadMenu_MainMenu .level3 .last {
	border-bottom: solid 4px #251841;
}

#site .RadMenu_MainMenu .link:hover {
	cursor: pointer;
	border-top-color: #D3CFDA;
	background-image: none;
	background-color: #746095;
	color: #FFFFFF;
}

#site .RadMenu_MainMenu .focused {
	border-top-color: #D3CFDA;

	background-color: #746095;
	color: #FFFFFF;
	background-repeat: repeat-x;
}

#site .RadMenu_MainMenu .expanded {
	border-top-color: #D3CFDA;
		background-color: #746095;
}
		
.RadMenu_MainMenu .text {
	padding-left: 10px;	
	padding-right: 10px;
}
		

		
#site .RadMenu_MainMenu .group .link {
	text-align: left;
	color: #D2CADF;
	font-size: 1.1em;
	background-color: #746095;
	background-image: none;
	line-height: normal;
	height: auto;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
	border-top-color: #A394BA;
	border-top-style: solid;
	border-top-width: 1px;
}
	
#site  .RadMenu_MainMenu .group .link:hover,
#site  .RadMenu_MainMenu .group .focused,
#site .RadMenu_MainMenu .group .expanded {
	font-weight: normal;
	background-color: #493865;
	color: #FFFFFF;
	background-image: none;
	border-top-color: #71579B;
}

		.RadMenu_MainMenu .leftArrow,
		.RadMenu_MainMenu .rightArrow,
		.RadMenu_MainMenu .topArrow,
		.RadMenu_MainMenu .bottomArrow,
		.RadMenu_MainMenu .leftArrowDisabled,
		.RadMenu_MainMenu .rightArrowDisabled,
		.RadMenu_MainMenu .topArrowDisabled,
		.RadMenu_MainMenu .bottomArrowDisabled {
			background: #ededed url('../media/siteImages/menu/left.gif') center center no-repeat;
			width:15px;
		}
		
		.RadMenu_MainMenu .topArrow,
		.RadMenu_MainMenu .topArrowDisabled
		{
			background-image:url('../media/siteImages/menu/top.gif');
			width:100%;
		}
		
		.RadMenu_MainMenu .bottomArrow,
		.RadMenu_MainMenu .bottomArrowDisabled
		{
			background-image:url('../media/siteImages/menu/bottom.gif');
			width:100%;
		}
		
		.RadMenu_MainMenu .rightArrow,
		.RadMenu_MainMenu .leftArrow
		{
			height:100%;
		}
		
		.RadMenu_MainMenu .rightArrow,
		.RadMenu_MainMenu .rightArrowDisabled
		{
			background-image: url('../media/siteImages/menu/right.gif');
		}
		
		.RadMenu_MainMenu .vertical .separator .text
		{
			padding-top: 2px;
			background: #ccc;
			font-size: 1px;
		}
		
		.RadMenu_MainMenu .expandLeft,
		.RadMenu_MainMenu .expandRight
		{
			background: transparent url(../media/siteImages/menu/groupImage.gif) right center no-repeat;
/*			margin-right: 4px;*/
		}
		
		.RadMenu_MainMenu_rtl .expandLeft,
		.RadMenu_MainMenu_rtl .expandRight
		{
			background: url(../media/siteImages/menu/groupImageRTL.gif) left center no-repeat;
		}
		
		.RadMenu_MainMenu .link:hover .expandLeft,
		.RadMenu_MainMenu .link:hover .expandRight,
		.RadMenu_MainMenu .focused .expandLeft,
		.RadMenu_MainMenu .focused .expandRight,
		.RadMenu_MainMenu .expanded .expandLeft,
		.RadMenu_MainMenu .expanded .expandRight
		{
			background:transparent url(../media/siteImages/menu/invertedGroupImage.gif) right center no-repeat;
		}
		
		.RadMenu_MainMenu_rtl .link:hover .expandLeft,
		.RadMenu_MainMenu_rtl .link:hover .expandRight,
		.RadMenu_MainMenu_rtl .focused .expandLeft,
		.RadMenu_MainMenu_rtl .focused .expandRight,
		.RadMenu_MainMenu_rtl .expanded .expandLeft,
		.RadMenu_MainMenu_rtl .expanded .expandRight
		{
			background:transparent url(../media/siteImages/menu/groupImageRTL.gif) left center no-repeat;
		}
		

	/*///////////////////////////////////////////////////////////////////////// */
	#3-2-SECONDARY-NAVIGATION-----------------------------------------------------------{}
	/*///////////////////////////////////////////////////////////////////////// */
	
#secondaryNavigation {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: none;
}
		
#secondaryNavigation li {
	float: right;
	padding-left: 10px;
	font-size: 1.1em;
	padding-top: 7px;
}
		
	

		
	
		
		
/*///////////////////////////////////////////////////////////////////////// */
#4-FORMS-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-----------------------------{}
/*///////////////////////////////////////////////////////////////////////// */

	
/*///////////////////////////////////////////////////////////////////////// */
#4-1-BASIC-FORM-STYLES-------------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */

#site fieldset 
{
	background-color: #F0F0F0;
	padding: 15px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 20px;
		margin-bottom: 20px;
}

#site fieldset p
{
	margin-top: 12px;
	margin-bottom: 20px;
}

#site  legend
{
	display: none;
}

#site .formItemHalf
{
	float: left;
	width: 49%;
}
	


#site label
{
	color: #000000;
	margin-top: 5px;
}



#site .form_textbox, 
#site .form_textbox_multi, 

#site .formDrop, 
#site .formDropSmall
 {
	background-color: #FFFFFF;
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	background-image: url(../media/images/form-bg.jpg);
	background-repeat: repeat-x;
	background-position: left -7px;
	padding-left: 0px;
	padding-top: 2px;
	font-size: 13px;
	margin-bottom: 8px;
	border: 1px solid #CCCCCC;
	display: block;
}




#site #column1 .formDropSmall{
	width: 10%;
} 



#site  #column1 .form_textbox {
	height: 23px;
	line-height: 23px;
	width: 95%;
}

#site  #column1 .form_textbox_multi   {
	height: 70px;
	width: 95%;
}


#site .form_button{
	background-color: #BAD285;

	color: #FFFFFF;
	font-weight: bold;
	height: 38px;
	display: block;
	border: 2px solid #DEEAC4;

	background-repeat: repeat-x;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
	margin-top: 10px;
}



#site  .formButtonNegative {
	height: 23px;
	background-color: #CCCCCC;
	border: 2px solid #CCCCCC;	
	margin-left: 10px;
	color: #666666;
}


#site .formButtonDiv {
	text-align: right;
	clear: both;
}


/*///////////////////////////////////////////////////////////////////////// */
#4-2-STATUS BOXES-------------------------------------------------------------{}
/*///////////////////////////////////////////////////////////////////////// */


#site .form_statusbox{
	margin-bottom: 15px;
	background-repeat: no-repeat;
	background-position: 5px 8px;
	padding-top: 7px;
	padding-right: 7px;
	padding-bottom: 7px;
	padding-left: 28px;
}

#site .form_statusbox_fail{
	background-color: #FCF3CF;
	background-image: url(../media/images/icon-statusbox-incorrect.gif);
	border: 1px solid #F5D851;
	color: #8C661E;
}

#site column1 .form_statusbox_fail li{
	color: #8C661E;
}

#site .form_statusbox_success{
	background-color: #F8FFF0;
	background-image: url(../media/images/icon-statusbox-correct.gif);
	border: 1px solid #A0DC11;
	color: #37782E;
}




#site #column1 .form_statusbox li, #site #column2 .form_statusbox li{
	background-image: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	list-style-type: disc;
	padding-left: 12px;
}


#site .form_statusbox ul{
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}



































/*///////////////////////////////////////////////////////////////////////// */
#5-MODULES-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-----------------------------{}
/*///////////////////////////////////////////////////////////////////////// */













#-----news-styles-detail-individual-page------------------------------------------------------{}
/*INDIVIDUAL NEWS ITEMS - START//////////////////////////////////////////////////*/
#site #column1 #individual-news-story-previous-page-link {
	background-image: url(../media/siteImages/arrow-left.jpg);
	background-repeat: no-repeat;
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-left: 25px;

}

.previous-page-link {
	background-image: url(../media/siteImages/arrow-left.jpg);
	background-repeat: no-repeat;
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-left: 25px;
	width: 100px;
}


#site #column1 #individual-news-story-previous-page-link a{

}



#site #column1 #individual-news-story .news_item_date_month,
#site #column1 #individual-news-story .news_item_date strong
 {
	color: #FFFFFF;
}



#site #column1 #individual-news-story-previous-page-link a:hover{

}

#site #column1 .divHeadline p {
	font-size: 1.4em;
	color: #007CB9;
}

#site #column1 #individual-news-story .floatRight, #site #column1 .news_item_container .floatRight, #site #column1 #individual-news-story .floatLeft, #site #column1 .news_item_container .floatLeft {
	border: 1px solid #CCCCCC;
	padding: 5px;
	width: 210px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
}

#site #column1 #individual-news-story .floatRight, #site #column1 .news_item_container .floatRight {
	margin-left: 15px;
}

 #site #column1 #individual-news-story .floatLeft, #site #column1 .news_item_container .floatLeft {
	margin-right: 15px;
}



#site #column1 #individual-news-story .news_item_date {
	font-size: 0.9em;
	margin-right: 5px;
}

/*INDIVIDUAL NEWS ITEMS - END////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////////////////////////////*/







#6-UNCLASSIFIED--xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-------------------------------------------------{}

#site #image_latestproject h2{
	margin-top: 0px;
}

#site #image_latestproject strong a{
	font-size: 0.7em;
	color: #544370;
	text-decoration: none;
	font-weight: bold;

}

#site #image_latestproject a{
	color: #FFFFFF;
}

#site #image_latestproject a:hover{
	color: #544370;
}


#image_latestproject .project_links{
	clear: both;

}

#site #google_search_results iframe {
    width: 600px;
    height: 1500px;
}

#7-CSS-RECYCLE-BIN---xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx--------------------------------------{
	text-decoration: none;
}
/*
Put old css in here:






*/























/*// 6) CSS RECYCLE BIN ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* 









*/
