h1, h2, h3, h4, h5, h6 {
 margin: 0;
 padding: 0;
 font-weight: normal;
 font-family: Arial, Helvetica, sans-serif;
 }
body {
		margin:0;
		padding:0;
		height:100%;
	    background-color: #095930;
}
	#globalcontainer {
		min-height:100%;
		position:relative;
	}

	#globalheader {
		padding:10px 10px 11px 10px;
		border-bottom-style:solid;
	    border-bottom-color: #6EC546;
	    border-bottom-width: 3px;
	}
	#globalbody {
		padding:10px;
		padding-bottom:40px;	/* Height of the footer */
	}
	#globalfooter {
		position:absolute;
		bottom:0;
		width:100%;
		height:30px;			/* Height of the footer */
		margin-top:8px;
		border-top-style: solid;
	    border-top-color: #6EC546;
	    border-top-width: 3px;
	}
	
	#menu, #menu ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	
	#menu {
		float:left; /* this can be a width but the float wraps the menu items according to number */
		padding-right:4px; /* not needed with width, but with float this finishes off the menu box on the right hand side */
		margin: 0px auto 2px auto; /* auto won't center unless width in pixels or % specified */
		border: 1px solid #0C783F;
		background-color: #095930;
		background-image: -moz-linear-gradient(#0F914D, #095930); 
		background-image: -webkit-gradient(linear, left top, left bottom, from(#0F914D), to(#095930));	
		background-image: -webkit-linear-gradient(#0F914D, #095930);	
		background-image: -o-linear-gradient(#0F914D, #095930);
		background-image: -ms-linear-gradient(#0F914D, #095930);
		background-image: linear-gradient(#0F914D, #095930);
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		-moz-box-shadow: 0 1px 1px #13BB63, 0 1px 0 #11A858 inset;
		-webkit-box-shadow: 0 1px 1px #13BB63, 0 1px 0 #11A858 inset;
		box-shadow: 0 1px 1px #13BB63, 0 1px 0 #11A858 inset;
	}
	
	#menu:before,
	#menu:after {
		content: "";
		display: table;
	}
	
	#menu:after {
		clear: both;
	}
	
	#menu {
		zoom:1;
	}
	
	#menu li {
		float: left;
		border-right: 1px solid #0C783F;
		-moz-box-shadow: 1px 0 0 #0F914D;
		-webkit-box-shadow: 1px 0 0 #0F914D;
		box-shadow: 1px 0 0 #0F914D;
		position: relative;
	}
	
	#menu a {
		float: left;
		padding: 10px 14px; /* modifying the padding modifies first menu item width and height */
		color: #F0F0E0;
		text-transform: uppercase;
		font: bold .9em Arial, Helvetica; /* modifying the font also expands the menu with the padding */
		text-decoration: none;
		text-shadow: 0 1px 0 #000;
	}
	
	#menu li:hover > a {
		color: #FAEB2C;
	}
	
	*html #menu li a:hover { /* IE6 only */
		color: #FAEB2C;
	}
	
	#menu ul {
		margin: 20px 0 0 0;
		_margin: 0; /*IE6 only*/
		opacity: 0;
		visibility: hidden;
		position: absolute;
		top: 38px;
		left: 0;
		z-index: 1;    
		background: #0F914D;
		background: -moz-linear-gradient(#0F914D, #095930);
		background-image: -webkit-gradient(linear, left top, left bottom, from(#0F914D), to(#095930));
		background: -webkit-linear-gradient(#0F914D, #095930);    
		background: -o-linear-gradient(#0F914D, #095930);	
		background: -ms-linear-gradient(#0F914D, #095930);	
		background: linear-gradient(#0F914D, #095930);
		-moz-box-shadow: 0 -1px rgba(255,255,255,.3);
		-webkit-box-shadow: 0 -1px 0 rgba(255,255,255,.3);
		box-shadow: 0 -1px 0 rgba(255,255,255,.3);	
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-ms-transition: all .2s ease-in-out;
		-o-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out;  
	}

	#menu li:hover > ul {
		opacity: 1;
		visibility: visible;
		margin: 0;
	}
	
	#menu ul ul {
		top: 0;
		left: 160px; /*control where the second tier and more menus dovetail with this positioning from left*/
		margin: 0 0 0 20px;
		_margin: 0; /*IE6 only*/
		-moz-box-shadow: -1px 0 0 rgba(255,255,255,.3);
		-webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3);
		box-shadow: -1px 0 0 rgba(255,255,255,.3);		
	}
	
	#menu ul li {
		float: none;
		display: block;
		border: 0;
		_line-height: 0; /*IE6 only*/
		-moz-box-shadow: 0 1px 0 #095930, 0 2px 0 #11A858;
		-webkit-box-shadow: 0 1px 0 #095930, 0 2px 0 #11A858;
		box-shadow: 0 1px 0 #095930, 0 2px 0 #11A858;
	}
	
	#menu ul li:last-child {   
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;    
	}
	
	#menu ul a {    
		padding: 1px 10px;  /* changing the padding here alters the second and third rows height and width*/
		font: bold .8em Arial, Helvetica, sans-serif; /* I've added this here for second level and more items - */
		width: 140px;
		_height: 1px; /*IE6 only --- On the original this is set to 10px along with the padding - I'm guessing needs to be same as padding*/
		display: block;
		white-space: nowrap;
		float: none;
		text-transform: none;
	}
	
	#menu ul a:hover {
		background-color: #6EC546; /*rollover colour for sub-menus*/
		background-image: -moz-linear-gradient(#8ED16D,  #6EC546);	 /* #lighter, #few shades darker*/
		background-image: -webkit-gradient(linear, left top, left bottom, from(#8ED16D), to(#6EC546));
		background-image: -webkit-linear-gradient(#8ED16D, #6EC546);
		background-image: -o-linear-gradient(#8ED16D, #6EC546);
		background-image: -ms-linear-gradient(#8ED16D, #6EC546);
		background-image: linear-gradient(#8ED16D, #6EC546);
	}
	
	#menu ul ul a {  /* I've added this extra condition so that the directory menus are wide enough see #menu ul ul above to adjust left margin accordingly*/
	    font: bold .8em Tahoma, Geneva, sans-serif; /* I've added this here for second level and more items - */
		width:240px;
	}

	#menu ul li:first-child > a {
		-moz-border-radius: 3px 3px 0 0;
		-webkit-border-radius: 3px 3px 0 0;
		border-radius: 3px 3px 0 0;
	}
	
	#menu ul li:first-child > a:after {
		content: '';
		position: absolute;
		left: 40px; /* This positions top arrow pointer */
		top: -6px;/* This positions top arrow pointer */
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 6px solid #0F914D;
	}
	
	#menu ul ul li:first-child a:after {
		left: -6px; /* This positions left arrow pointer */
		top: 50%; /* This positions left arrow pointer */
		margin-top: -6px;
		border-left: 0;	
		border-bottom: 6px solid transparent;
		border-top: 6px solid transparent;
		border-right: 6px solid #0D7D42;
	}
	
	#menu ul li:first-child a:hover:after {
		border-bottom-color: #8ED16D; 
	}
	
	#menu ul ul li:first-child a:hover:after {
		border-right-color: #80CC5B; 
		border-bottom-color: transparent; 	
	}
	
	#menu ul li:last-child > a {
		-moz-border-radius: 0 0 3px 3px;
		-webkit-border-radius: 0 0 3px 3px;
		border-radius: 0 0 3px 3px;
	}
	
	/* Mobile */
	#menu-trigger {
		display: none;
	}

	@media screen and (max-width: 600px) {

		/* nav-wrap */
		#menu-wrap {
			position: relative;
		}

		#menu-wrap * {
			-moz-box-sizing: border-box;
			-webkit-box-sizing: border-box;
			box-sizing: border-box;
		}

		/* menu icon */
		#menu-trigger {
			display: block; /* show menu icon */
			height: 40px;
			line-height: 40px;
			cursor: pointer;		
			padding: 0 0 0 35px;
			border: 1px solid #0C783F;
			color: #FAEB2C;
			font-weight: bold;
			background-color: #095930;
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAMAAADeWG8gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE2QjAxNjRDOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE2QjAxNjREOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTZCMDE2NEE5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTZCMDE2NEI5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42AEtnAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAWSURBVHjaYmAgFzBiACKFho6NAAEGAD07AG1pn932AAAAAElFTkSuQmCC) no-repeat 10px center, -moz-linear-gradient(#0F914D, #095930); 
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAMAAADeWG8gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE2QjAxNjRDOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE2QjAxNjREOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTZCMDE2NEE5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTZCMDE2NEI5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42AEtnAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAWSURBVHjaYmAgFzBiACKFho6NAAEGAD07AG1pn932AAAAAElFTkSuQmCC) no-repeat 10px center, -webkit-linear-gradient(#0F914D, #095930);	
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAMAAADeWG8gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE2QjAxNjRDOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE2QjAxNjREOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTZCMDE2NEE5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTZCMDE2NEI5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42AEtnAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAWSURBVHjaYmAgFzBiACKFho6NAAEGAD07AG1pn932AAAAAElFTkSuQmCC) no-repeat 10px center, -o-linear-gradient(#0F914D, #095930);
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAMAAADeWG8gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE2QjAxNjRDOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE2QjAxNjREOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTZCMDE2NEE5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTZCMDE2NEI5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42AEtnAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAWSURBVHjaYmAgFzBiACKFho6NAAEGAD07AG1pn932AAAAAElFTkSuQmCC) no-repeat 10px center, -ms-linear-gradient(#0F914D, #095930);
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAMAAADeWG8gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE2QjAxNjRDOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE2QjAxNjREOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTZCMDE2NEE5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTZCMDE2NEI5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42AEtnAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAWSURBVHjaYmAgFzBiACKFho6NAAEGAD07AG1pn932AAAAAElFTkSuQmCC) no-repeat 10px center, linear-gradient(#0F914D, #095930);
			-moz-border-radius: 6px;
			-webkit-border-radius: 6px;
			border-radius: 6px;
			-moz-box-shadow: 0 1px 1px #13BB63, 0 1px 0 #11A858 inset;
			-webkit-box-shadow: 0 1px 1px #13BB63, 0 1px 0 #11A858 inset;
			box-shadow: 0 1px 1px #13BB63, 0 1px 0 #11A858 inset;
		}
		
		/* main nav */
		#menu {
			margin: 0; padding: 10px;
			position: absolute;
			top: 40px;
			width: 100%;
			z-index: 1;
			background-color: #0F914D;
			display: none;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}

		#menu:after {
			content: '';
			position: absolute;
			left: 25px;
			top: -8px;
			border-left: 8px solid transparent;
			border-right: 8px solid transparent;
			border-bottom: 8px solid #0F914D;
		}	

		#menu ul {
			position: static;
			visibility: visible;
			opacity: 1;
			margin: 0;
			background: none;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;				
		}

		#menu ul ul {
			margin: 0 0 0 20px !important;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}

		#menu li {
			position: static;
			display: block;
			float: none;
			border: 0;
			margin: 5px;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;			
		}

		#menu ul li{
			margin-left: 20px;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}

		#menu a{
			display: block;
			float: none;
			padding: 0;
			color: #F0F0E0;
		}

		#menu a:hover{
			color: #FAEB2C;
		}	

		#menu ul a{
			padding: 0;
			width: auto;		
		}

		#menu ul a:hover{
			background: none;	
		}

		#menu ul li:first-child a:after,
		#menu ul ul li:first-child a:after {
			border: 0;
		}		

	}

	@media screen and (min-width: 600px) {
		#menu {
			display: block !important;
		}
	}	

	/* iPad */
	.no-transition {
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-o-transition: none;
		transition: none;
		opacity: 1;
		visibility: visible;
		display: none;  		
	}

	#menu li:hover > .no-transition {
		display: block;
	}
	
#centeredmenu {
   float:left;
   width:100%;
   margin-top:0px;
   margin-bottom:6px;
   overflow:hidden;
   position:relative;
}
#centeredmenu ul {
   clear:left;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   left:50%;
   text-align:center;
}
#centeredmenu ul li {
   display:block;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   right:50%;
}
#centeredmenu ul li a {
   display:block;
   margin:0 0 0 1px;
   padding:2px 6px;
   background: #13BB63;
   background: -moz-linear-gradient(#6EC546, #13BB63);
   background-image: -webkit-gradient(linear, left top, left bottom, from(#6EC546), to(#13BB63));
   background: -webkit-linear-gradient(#6EC546, #13BB63);    
   background: -o-linear-gradient(#6EC546, #13BB63);	
   background: -ms-linear-gradient(#6EC546, #13BB63);	
   background: linear-gradient(#6EC546, #13BB63);
   border:solid 1px #13BB63; -moz-border-radius:.5em; -webkit-border-radius:.5em;border-radius:.5em;
   font-family: Arial, Helvetica,  sans-serif;
   font-size: .75em;
   font-weight:bold;
   color:#fff;
   text-decoration:none;
   line-height:1.3em;
}
#centeredmenu ul li a:hover {
   background:#13BB63;
   color:#fff;
}
#centeredmenu ul li a.active,
#centeredmenu ul li a.active:hover {
   color:#fff;
   background:#13BB63;
   font-weight:bold;
}

.centeredcontainerouter {
   float:left;
   width:100%;
   position:relative;
}
.centeredcontainerinner {
   clear:left;
   float:left;
   position:relative;
   left:50%;
}
.centeredcontainerinnermost {
   display:block;
   float:left;
   position:relative;
   right:50%;
}
	
.spacer_3 {
	line-height:3px;
	height:3px;
}
.spacer_2 {
	line-height:2px;
	height:2px;
}
.spacer_1 {
	line-height:1px;
	height:1px;
}
.GDLogo_12 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bolder;
	color: #FFFFFF;
}
.GDLogo_12b {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bolder;
	color: #FFFFFF;
}
.LayerPositionGlobe {
	position:absolute;
	width:8px;
	height:8px;
	left: 47px;
	top: 5px;
}
.LayerPositionGDText {
	position:absolute;
	width:100px;
	height:12px;
	top: 3px;
	left: 20px;
	z-index:4;
}

.positionglobe {
	position: absolute;
	left: 56px;
	top: 17px;
	width: 30px;
	height: 30px;
	z-index: 1;	
}
.positionGlobalDistrictlogo {
	position: absolute;
	left: 1px;
	top: 5px;
	width: 320px;
	height: 45px;
	z-index: 1;	
}
a.positionsublogo  {
	position:relative;
	top:47px;
	left:67px;
	z-index:2;
	letter-spacing:28px;
	text-decoration:none;
}
.onekanaK {
	font-size:80%;
}
@media (max-width: @screen-sm-max) {
.positionglobe {
	position: absolute;
	left: 33px;
	top: 12px;
	width: 14px;
	height: 14px;
	z-index: 1;	
}
.positionGlobalDistrictlogo {
	position: absolute;
	left: 5px;
	top: 5px;
	width: 160px;
	height: 23px;
	z-index: 1;	
}
a.positionsublogo {
	position:relative;
	top:23px;
	left:37px;
	z-index:2;
	font-size:70%;
	letter-spacing:12.5px;
	text-decoration:none;
}
}
.highlight {
	color: #095930;
}
.Background_1 {
	background-color: #095930;
	}
.Background_2 {
	background-color: #095930;
    }
.Background_3 {
	background-color: #2A9571;
    }
.buttonbackground_1 {
	margin:4px;
	display:inline-block;
	-moz-border-radius:  						.6em  /*{global-radii-blocks}*/;
	-webkit-border-radius:  						.6em  /*{global-radii-blocks}*/;
	border-radius:  .6em  /*{global-radii-blocks}*/;
	border: 1px solid #2A9571; /*{a-bar-border}*/;
	padding:2px 4px;
	background: #095930; /*{a-bar-background-color}*/;
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	color:  #ffffff  /*{a-bar-color}*/;
	text-decoration:none;
	}
	.buttonbackground_2 {
	margin:4px 4px 4px 0px;
	display:inline-block;
	-moz-border-radius:.6em  /*{global-radii-blocks}*/;
	-webkit-border-radius:.6em  /*{global-radii-blocks}*/;
	border-radius:  .6em  /*{global-radii-blocks}*/;
	border: 1px solid #4DA7DF; /*{a-bar-border}*/;
	padding:2px 8px;
	background-color: #081D8E; /*{a-bar-background-color}*/;
	font-family: Arial, Helvetica, sans-serif;
	font-size:9px;
	color:  #ffffff  /*{a-bar-color}*/;
	text-decoration:none;
	}
	.buttonbackground_2b {
	margin:4px 4px 4px 0px;
	display:inline-block;
	-moz-border-radius:.6em  /*{global-radii-blocks}*/;
	-webkit-border-radius:.6em  /*{global-radii-blocks}*/;
	border-radius:  .6em  /*{global-radii-blocks}*/;
	border: 1px solid #DCE0FA /*{a-bar-border}*/;
	padding:2px 8px;
	background-color: #F5F5F5 /*{a-bar-background-color}*/;
	font-family: Arial, Helvetica, sans-serif;
	font-size:9px;
	color:  #ffffff  /*{a-bar-color}*/;
	text-decoration:none;
	}
.buttontopbackground {
	background-image: url(../../includes/cssmenus2/skins/Skin_500/img/bgtop_h.gif);
	background-repeat: no-repeat;
	background-position: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #FFFFFF;
}
.containercenterborder {
	margin: 2px 5px 5px 5px;
	border:solid 1px #0D1659;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:  3px;
	
}
.containercommercebuttons {
	margin: 20px 15px 15px 10px;
	text-align:right;	
}

.simpleborderradius1 {
	border:solid 1px #999; 
	-moz-border-radius:1em; -webkit-border-radius:1em;border-radius:1em;
}
.simpleborderradius2 {
	border:solid 1px #999; 
	-moz-border-radius:.5em; -webkit-border-radius:.5em;border-radius:.5em;
}

.largetitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	font-weight: bold;
	color: #095930;
}
.title1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	font-weight: bold;
	color: #FFF;
}
.title2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	font-weight: bold;
	color: #E199EE;
}
.title3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #2A9571999;
	font-weight: bold;
}
.titlereversed {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
.copy_8 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8px;
	color: #095930;
}
.copy_9 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .6em;
	color: #095930;
}
.copy_10 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
	color: #095930;
}
.copy_11 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #095930;
}
.copy_12 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #095930;
}
.copy_11b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #095930;
}
.copy_12b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #095930;
}
.copy_13 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #095930;
}
.copy_13b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #095930;
}
.copy_14 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #095930;
}
.copy_14b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #095930;
}
.copy_15 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color: #095930;
}
.copy_15b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color: #095930;
}
.copy_16 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	color: #095930;
}
.copy_16b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	color: #095930;
}
.copy_16c {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	color: #00BB00;
}
.copy_18 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	color: #095930;
}
.copy_18b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	color: #095930;
}
.reversecopy_9 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .6em;
	color: #FFFFFF;
}
.reversecopy_9b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .6em;
	color: #80FF80;
}
.reversecopy_10 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
	color: #FFFFFF;
}
.reversecopy_10b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
	color: #00FD00;	
}
.reversecopy_11 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #FFFFFF;
}
.reversecopy_11b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #00FD00;		
}
.reversecopy_11c {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #DDF1FF;
}
.reversecopy_12 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #FFFFFF;
}
.reversecopy_12b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #00E100;
}
.reversecopy_13 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #FFFFFF;
}
.reversecopy_13b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #FFFFFF;
}
.reversecopy_14 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #FFFFFF;
}
.reversecopy_14b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #00FD00;
}
.reversecopy_15 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color: #FFFFFF;
}
.reversecopy_15b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color: #00FD00;
}
.reversecopy_16 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	color: #FFFFFF;
}
.reversecopy_16b {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	color: #00FD00;
}
.smallcopy {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
	font-weight: bold;
	color: #095930;
}
/*
 * highlight applies to the search term highlighting
 */
.highlight {
	color: #00C100;
	font-weight: bold;
}
a:hover {
	color: #00FF00;
	text-decoration: underline;
}
.text_12 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #2A9571999;
}
.text_10 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
	color: #2A9571999;
}
.text_9 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .6em;
	color: #2A9571999;
}
.textbox1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #FFF;
	font-weight: bold;
	background-color: #00B900;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.textbox2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #FFF;
	font-weight: bold;
	background-color: #15992C;
}
.PageBackground {
	background-color: #095930;
}
.mapcontrolexplore {
	position: absolute;
	top: 110px;
	left: 57px;
	z-index: 200;
}
.mapsponsorglobaldistrict {
	position: absolute;
	top: 0px;
	right: 0px;
	}
.mapsponsorglobaldistrictglobe {
	position: absolute;
	top: 15px;
	right: 207px;
	}
.mapsponsorglobalsponsoredby {
	position: absolute;
	width: 300px;
	top: 45px;
	right: 0px;
	}
.mapsponsor {
	position: absolute;
	top: 58px;
	right: 3px;
	}
.topbannerbackground {
	background-color: #095930;
	background-image: url(images/topbanner.gif);
	background-repeat: no-repeat;
}
.background1 {
	background-color: #095930;
	background-repeat: no-repeat;
}
.background2 {
	background-color: #2D9773;
	background-repeat: no-repeat;
}
.TableBackground {
	background-color: #FFFFFF;
}
.TableBackground2 {
	background-color: #FFFFFF;
}
.TableBackground3 {
	background-color: #FFFFFF;
}
.producttabcontent {
	width: 98%;
	padding:5px;
	margin-right:auto;
	margin-left:auto;
    min-height: 300px;           
	background:#FFF;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.producttabcontent {
	width: 98%;
	padding:5px;
	margin-right:auto;
	margin-left:auto;
    min-height: 300px;           
	background:#FFF;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.TableBackgroundImage {
	background-image: url(http://www.globaldistrict.com/main_images/worldmapMED600.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
.PositionLayerLeftPanel {
	position:relative;
	width:19px;
	height:19px;
	z-index:1;
	top: 0px;
	left: 0px;
}
.PositionLayerTopRight {
	position:relative;
	width:19px;
	height:19px;
	z-index:1;
	top: 0px;
	left: 1px;
}
.PositionLayerLeftPanelBottom {
	background-image: url(images/CornerPanelLeftBottom.png);
	background-repeat: no-repeat;
	background-position: left;
}
.PositionLayerRightPanelBottom {
	background-image: url(images/CornerPanelRightBottom.png);
	background-repeat: no-repeat;
	background-position: right;
}
.MapBackgroundSmaller {
	background-image: url(http://www.globaldistrict.com/main_images/worldmapMED600.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
.MapBackgroundMedium {
	background-image: url(http://www.globaldistrict.com/main_images/worldmapMED.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
.HoldingLayerAbsolute {
	position:absolute;
	left: 0px;
	top: 0px;
}
.HoldingLayerAbsoluteFullWidth {
	position:absolute;
	left: 0px;
	top: 0px;
	width: 100%;
}
.HoldingLayerAbsoluteTop {
	position:absolute;
	z-index:600;
	left: 0px;
	top: 0px;
}
.HoldingLayerRelativeShift1 {
	position:relative;
	left: 2px;
	top:  -1px;
}
.HoldingLayerRelative {
	position:relative;
	left: 0px;
	top:  0px;
}
.HoldingLayerRelativeCorners {
	position:relative;
	left: 0px;
	top:  0px;
	margin-top: 0px;
	margin-right: 3px;
	margin-bottom: 0px;
	margin-left: 3px;
}
.HoldingLayerRelativeTop {
	position:relative;
	z-index:600;
	left: 0px;
	top:  0px;
}
.HoldingLayerListTableTop {
	position:absolute;
	z-index:600;
	left: 54px;
	top: 181px;
}
.PanelBackground {
	background-image: url(images/Panel_Bottom_Background.png);
	background-repeat: repeat;
}
.PanelTopLeft {
	background-image: url(images/Panel_Top_Left.png);
	background-position: left top;
	background-repeat: no-repeat;
	height: 66px;
}
.PanelTopRight {
	background-image: url(images/Panel_Top_Right.png);
	background-position: right top;
	background-repeat: no-repeat;
	height: 66px;
}
.PanelTopBackground {
	background-image: url(images/Panel_Top_Background.png);
	background-repeat: repeat-x;
	height: 66px;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-left: 50px;
}
.PanelBottomLeft{
	background-image: url(images/Panel_Bottom_Left.png);
	background-repeat: no-repeat;
	background-position: left;
	height: 67px;
}
.PanelBottomBackground{
	background-image: url(images/Panel_Bottom_Background.png);
	background-repeat: repeat;
	height: 67px;
	margin-left: 70px;
}
.PanelBottomPositionCorner {
	position: relative;
	height: 20px;
	width: 20px;
	top: 67px;
}
.PanelSideBarBackground{
	background-image: url(images/Panel_Sidebar_Background.png);
	background-repeat: repeat-y;
}
.WindowTopLeft {
	background-image: url(images/Window_Top_Left.png);
	background-position: left;
	background-repeat: no-repeat;
	height: 30px;
}
.WindowTopRight {
	background-image: url(images/Window_Top_Right.png);
	background-position: right;
	background-repeat: no-repeat;
	height: 30px;
}
.WindowTopBackground {
	background-image: url(images/Window_Top_Background.png);
	background-repeat: repeat;
	height: 30px;
	margin-top: 0px;
	margin-right: 30px;
	margin-left: 30px;
	padding: 0px;
}
.WindowLeft {
	background-image: url(images/Window_Left.png);
	background-position: left;
	background-repeat: repeat-y;
}
.WindowRight {
	background-image: url(images/Window_Right.png);
	background-position: right;
	background-repeat: repeat-y;
}
.WindowBottomLeft {
	background-image: url(images/Window_Bottom_Left.png);
	background-position: left;
	background-repeat: no-repeat;
	height: 27px;
}
.WindowBottomRight {
	background-image: url(images/Window_Bottom_Right.png);
	background-position: right;
	background-repeat: no-repeat;
	height: 27px;
}
.WindowBottomBackground {
	background-image: url(images/Window_Bottom_Background.png);
	background-repeat: repeat;
	height: 27px;
	margin-top: 0px;
	margin-right: 30px;
	margin-left: 30px;
	padding: 0px;
}
.FrameTopLeft {
	background-image: url(images/Frame_Top_Left.png);
	background-position: left;
	background-repeat: no-repeat;
	height: 5px;
}
.FrameTopRight {
	background-image: url(images/Frame_Top_Right.png);
	background-position: right;
	background-repeat: no-repeat;
	height: 5px;
}
.FrameTopBackground {
	background-image: url(images/Frame_Top_Background.png);
	background-repeat: repeat;
	height: 5px;
	margin-top: 0px;
	margin-right: 8px;
	margin-left: 8px;
	padding: 0px;
}
.FrameLeft {
	background-image: url(images/Frame_Left.png);
	background-position: left;
	background-repeat: repeat-y;
}
.FrameRight {
	background-image: url(images/Frame_Right.png);
	background-position: right;
	background-repeat: repeat-y;
}
.FrameBottomLeft {
	background-image: url(images/Frame_Bottom_Left.png);
	background-position: left;
	background-repeat: no-repeat;
	height: 5px;
}
.FrameBottomRight {
	background-image: url(images/Frame_Bottom_Right.png);
	background-position: right;
	background-repeat: no-repeat;
	height: 5px;
}
.FrameBottomBackground {
	background-image: url(images/Frame_Bottom_Background.png);
	background-repeat: repeat;
	height: 5px;
	margin-top: 0px;
	margin-right: 8px;
	margin-left: 8px;
	padding: 0px;
}
.PanelCornerTopLeft{
	background-image: url(images/Panel_Corner_Top_Left.png);
	background-repeat: no-repeat;
	background-position: left top;
}
.PanelCornerTopRight{
	background-image: url(images/Panel_Corner_Top_Right.png);
	background-repeat: no-repeat;
	background-position: right top;
}
.PanelCornerBottomLeft{
	background-image: url(images/Panel_Corner_Bottom_Left.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.PanelCornerBottomRight{
	background-image: url(images/Panel_Corner_Bottom_Right.png);
	background-position: right bottom;
	background-repeat: no-repeat;
}
.PanelCornerTopLeftSML{
	background-image: url(images/Panel_Corner_SML_Top_Left.png);
	background-repeat: no-repeat;
	background-position: left top;
}
.PanelCornerTopRightSML{
	background-image: url(images/Panel_Corner_SML_Top_Right.png);
	background-repeat: no-repeat;
	background-position: right top;
}
.PanelCornerBottomLeftSML{
	background-image: url(images/Panel_Corner_SML_Bottom_Left.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.PanelCornerBottomRightSML{
	background-image: url(images/Panel_Corner_SML_Bottom_Right.png);
	background-position: right bottom;
	background-repeat: no-repeat;
}
.floatright {
	float: right;
	z-index:1000;
}
.floatleft {
	float: left;
	z-index:1000;
}
.clearfloat {
	clear: both;
	height: 0;
	background-color: #000; /* to see in certain cases */
}
.searchbox {
	width:100%;
	text-align:right;
	padding-top:2px;
	padding-right:2px;
	border-bottom:solid 2px #00BB00;"
}
.searchtextbox {
    font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
    position:relative;
	top: -10px;	
	padding:2px;
	background:#095930;
    border: thin solid #00BB00;	
	-moz-border-radius: .5em;
	-webkit-border-radius: .5em;
	border-radius: .5em;
}
.searchtextboxvirtual {
    font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
    position:relative;
	top: 0px;	
	padding:2px;
	background:#095930;
    border: thin solid #00BB00;	
	-moz-border-radius: .5em;
	-webkit-border-radius: .5em;
	border-radius: .5em;
}
.searchboximage {
    padding:0px 6px 0px 2px;
}
.NewPanelBottomBox {
	position:relative;
	top:0px;
	height:67px;
	width:100%;
	z-index:1;
}

.NewPanelLogoPosition{
    position:relative;
	margin-top:10px;
	margin-right:70px;

}
.NewPanelBottomLeft{
    position:absolute;
	background-image: url(images/Panel_Bottom_Left.png);
	background-repeat: no-repeat;
	background-position: left;
	height: 67px;
	width: 70px;
}
.NewPanelBottomBackground{
    position:absolute;
	background-image: url(images/Panel_Bottom_Background.png);
	background-repeat: repeat;
	height: 67px;
	width:100%;
	margin: 0 0 0 70px;
}
.NewPanelBottomPositionCorner {
	position: absolute;
	height: 20px;
	width: 20px;
	top: 67px;
	right: 0px;
	background-image: url(images/Panel_Corner_Top_Right.png);
}
#pageheader {
        clear:both;
        float:left;
        width:100%;
		border-bottom-style: ridge;
	    border-bottom-color: #095930;
	    border-bottom-width: medium;
		margin-bottom:10px;
		padding:10px 10px 11px 10px;
    }
	
	/* column container */
	.columns_container {
		position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	    clear:both;
	    float:left;
        width:100%;			/* width of whole page */
		overflow:hidden;	/* This chops off any overhanging divs */
	}
	/* 2 column right menu settings */
	.columns {
	    background:#fff;
	}
	.columns .colleft {
        float:left;
        width:200%;
        margin-left:-350px;
        position:relative;
        right:100%;
    }
    .columns .col1wrap {
	    float:left;
	    width:50%;
	    position:relative;
	    left:50%;
	    
	}
	.columns .col1 {
        margin:0 0 0 350px;
        overflow:hidden;
	}
    .columns .col2 {
        float:right;
        width:350px;
        position:relative;
        left:350px;
    }
	/* pagefooter styles */
	#pagefooter {
        clear:both;
        float:left;
        width:100%;
		border-top:1px solid #000;
		margin-top:10px;
		margin-bottom:5px;
    }
		
.maincontent {
		padding:10px;
		position:relative;
		
}

.rightcontent {
		position:relative;
		top:70px;
		}


.rightcolumninnercontainer {
	float:right;
	width:308px;
	margin:4px 4px 0px 0px;
}

.box {
 width:100%;
 margin-top:2px;
}

.box .hd .c,
.box .ft .c {
 font-size:1px; /* ensure minimum height */
 height:5px;
}

.box .ft .c {
 height:5px;
}

.box .hd {
	margin-right:8px; /* space for right corner */
	background-color: transparent;
	background-image: url(images/tl.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

.box .hd .c {
	margin-right:-8px; /* pull right corner back over "empty" space (from above margin) */
	background-color: transparent;
	background-image: url(images/tr.png);
	background-repeat: no-repeat;
	background-position: right 0px;
}

.box .bd {
	margin-right:3px;
	background-color: transparent;
	background-image: url(images/ml.png);
	background-repeat: repeat-y;
	background-position: 0px 0px;
}

.box .bd .c {
	position: relative;
	padding-right: 3px;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-image: url(images/mr.png);
	background-repeat: repeat-y;
	background-position: right 0px;
}

.box .bd .c .s {
	margin:0px 0px 0px 3px;
	padding: 0px;
	background-image: url(images/ms.png);
	background-repeat: repeat-x;
	background-position: 0 0;
}

.box .ft {
	margin-right:8px;
	background-color: transparent;
	background-image: url(images/bl.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

.box .ft .c {
	margin-right:-8px;
	background-color: transparent;
	background-image: url(images/br.png);
	background-repeat: no-repeat;
	background-position: right 0px;
}






/**************** alternative box  ******************/


.box2 {
 margin:0px auto;
 min-width:200px;
 max-width:1200px; /* The left background image is only 800px wide. You could do much larger, etc. */
 overflow:inherit;
 text-align:center;
 text-wrap:normal;
}

.box2 .hd2 .c2,
.box2 .ft2 .c2 {
 height:30px;
 line-height:30px;
}

.box2 .hd2 {
 background:transparent url(images/tl2.png) no-repeat 0px 0px;
 margin-right:30px; /* space for right corner */
}

.box2 .hd2 .c2 {
 background:transparent url(images/tr2.png) no-repeat right 0px;
 margin-right:-30px; /* pull right corner back over "empty" space (from above margin) */
}

.box2 .bd2 {
 background:transparent url(images/ml2.png) repeat-y 0px 0px;
 margin-right:3px;
}

.box2 .bd2 .c2 {
 background:transparent url(images/mr2.png) repeat-y right 0px;
 position: relative;
 padding-right: 3px;
 width: 100%;
 height: 100%;
}

.box2 .bd2 .c2 .s2 {
 margin:0px 0px 0px 3px;
 background:#000 url(images/ms2.png) repeat-x 0 0;
 padding: 0px;
}

.box2 .ft2 {
 background:transparent url(images/bl2.png) no-repeat 0px 0px;
 margin-right:30px;
}

.box2 .ft2 .c2 {
	margin-right:-30px;
	background-color: transparent;
	background-image: url(images/br2.png);
	background-repeat: no-repeat;
	background-position: right 0px;
}

#mainlist {
	position:relative;
    width:90%; 
	margin-right:auto; 
	margin-left:auto;
	background:#EBEDFC;
	border:solid 1px #EBEDFC; 
	-moz-border-radius:.5em; -webkit-border-radius:.5em;border-radius:.5em;"
}

#mainlist ul {
	list-style:none;
	margin:3px;
	padding-top:10px;
	background:#FFF;
	border:solid 1px #EBEDFC; 
	-moz-border-radius:.5em; -webkit-border-radius:.5em;border-radius:.5em;
}

#mainlist li { 
    list-style:none;
	margin-left:-30px;
	padding:5px;
} 
.mainlist-li-spacer {
	clear: both;
	height: 10px;
	margin-top:10px;
	border-top-width: medium;
	border-top-style: solid;
	border-top-color: #CCC;	
}

.wrapsimple {
    display: table-cell;
	background:#095930;
    text-align: center;
    vertical-align: middle;
    width: 140px;
    height: 140px;           /*   this is also handled in the page */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.wrapsimple img {
	border: 1px solid #2A9571;
	margin:2px;
	padding:2px;
	max-width: 120px;
	max-height: 120px;           /*   this is also handled in the page */
}
.wrapsimple * {
    vertical-align: middle;
}
/*\*//*/
.wrapsimple {
    display: block;
}
.wrapsimple span {
    display: inline-block;
    height: 100%;
    width: 1px;
}
/**/

.wrapsimplerepeat {
    display: table-cell;
	background:#095930;
    text-align: center;
    vertical-align: middle;
    width: 130px;
    height: 130px;           /*   this is also handled in the page */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.wrapsimplerepeat img {
	border: 1px solid #2A9571;
	margin:2px;
	padding:2px;
	max-width: 100px;
	max-height: 100px;           /*   this is also handled in the page */
}
.wrapsimplerepeat * {
    vertical-align: middle;
}
/*\*//*/
.wrapsimplerepeat {
    display: block;
}
.wrapsimplerepeat span {
    display: inline-block;
    height: 100%;
    width: 1px;
}
/**/

.wrapfloatlist div {
	float: right;
	/*border: solid 1px #FF0000;*/
	margin: 5px 5px 0 0;
	padding: 2px;
}
.wrapfloatlist a {
	display: table-cell;
	width: 70px;
	height: 70px;             /*  this is also handled in the page */
	text-align: center; /* qui e non su precedente, iCab3 */
	vertical-align: middle;
	background: #095930;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.wrapfloatlist img {
	border: solid 1px #2A9571;
	margin:2px;
	padding:2px;
	vertical-align: middle;
	max-width: 60px;
	max-height: 60px;             /*  this is also handled in the page */
}
.wrapfloatlistcaption a {
	 background:none;
	 width: 70px;
	 height: 16px;
}
 
/*\*//*/
* html .wrapfloatlist a {
	display: block;
}
* html .wrapfloatlist span {
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	width: 1px;
}
* html .wrapfloatlist a {
	font-size: 1px;
}
/* non serve solito shift background-position: 11px 11px per IE/Mac, forse perche' su inline-block? */
.wrapfloatlist div {
	border-collapse: collapse; /* Op7 */
}
.clear {
	clear: both;
	margin: 0;
	padding: 1em 0;
}
.wrapfloatlist a:hover {
	background-color: #2A9571;
}
.wrapfloatlistcaption a:hover {
	 background:none;
	
}

.containerwraplist {
	background-color: #fff;	
	text-align: center;
	margin: 4px 14px 14px 14px;
	padding: 0;
	
}
.wraplist {
	border: 1px solid #2A9571;
	padding: 15px 8px 0 8px;
	background-color: #FFFFFF;
	margin: 0;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:  4px;
}
.wraplist li {
	display: -moz-inline-box;
	display: inline-block;
	/*\*/ vertical-align: top; /**/
	margin: 0 7px 15px 7px;
	border: solid 1px #2A9571;
	padding:0px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
/*  Moz: NO border qui altrimenti difficolta' con width, table altrimenti problemi a text resize (risolubili con refresh) */
.wraplist li>div {
	/*\*/ display: table; /**/
	width: 169px;                         /*  this is also handled in the page */
}
.wraplist a {
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	background-color: #095930;
	cursor: pointer;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
/*\*/
.wraplist>li .wrimg {
	display: table-cell;
	vertical-align: middle;
	width: 169px;
	height: 169px;                          /*  this is also handled in the page */
}
/**/
.wraplist li .wrimg {
	/*background-image: url(file:///C|/inetpub/wwwroot/supportpages/CSS/brunildo.org_centeringimagesinboxesetc/test/g100c2.pl?g100c2.gif);*/
}
.wraplist img {
	border: solid 1px #2A9571;
	vertical-align: middle;
	margin:2px;
	padding:2px;
	max-width:149px;
	max-height:149px;
}
.wraplist a:hover {
	background-color: #2A9571;
}
/*\*//*/
* html .wraplist li .wrimg {
	display: block;
	font-size: 1px;
}
* html .wraplist .wrimg span {
	display: inline-block;
	vertical-align: middle;
	height: 159px;
	width: 1px;
}
/**/
.wraplist .wraplistcaption {
	display: block;
	padding: .3em 5px;
	font-size: .9em;
	line-height: 1.1;
	border-top: 1px solid #2A9571;
	w\idth: 159px;  /* Moz, IE6 */                          /*  this is also handled in the page */
}
/* top ib e hover Op < 9.5 */
@media all and (min-width: 0px) {
	html:first-child .wraplist a {
		display: inline-block;
		vertical-align: top;
	}
	html:first-child .wraplist {
		border-collapse: collapse;
		display: inline-block; /* non deve avere margin */
	}
}