@charset "UTF-8";/* ~~ Element/tag selectors ~~ */ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */	padding: 0;	margin: 0;}h1, h2, h3, h4, h5, h6, p {	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */	padding-right: 0px;	padding-left: 8px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */}a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */	border: none;}/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */a:link, a:active {	color: #009245;	visibility: inherit;	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */}a:visited {	color: #8CC63F;	visibility: inherit;	text-decoration: none;}a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */		color: #662D91;	visibility: inherit;	text-decoration: underline;}/* ~~ this fixed width container surrounds all other elements ~~ */	body { text-rendering:auto; }.TabbedPanelsTab{	white-space: nowrap;}.MenuBar  .MenuBarView, .MenuBar  .SubMenuView /* Resets for ul and li in menus */{	display: block;	list-style: none;}.MenuBar .SubMenu{	display: none;	position: absolute;}.MenuBar .SubMenuVisible, .MenuBarVertical .SubMenuVisible, .MenuBar .SubMenu .SubMenuVisible, .popup_element.Active, span.actAsPara, .actAsDiv, a.nonblock.nontext{	display: block;}.NoWrap{	white-space: nowrap;	word-wrap: normal;}.MenuBar .MenuItemContainer{	position: relative;}.rootelem /* the root of the artwork tree */{	margin-left: auto;	margin-right: auto;}.colelem /* a child element of a column */{	display: inline;	float: left;	clear: both;}.grpelem /* a child element of a group */{	display: inline;	float: left;	}.clearfix:after /* force a container to fit around floated items */{	content: "\0020";	visibility: hidden;	display: block;	height: 0;	clear: both;}*:first-child+html .clearfix /* IE7 */{	zoom: 1;}.position_content, .excludeFromNormalFlow /* used when child content is larger than parent */{	float: left;}.inclusion_context /* context for positioning a group of elements that share the same height */{	display: table;}.inclelem /* element of an inclusion context */{	display: table-cell;	vertical-align: top;}.container {	width: 956px;	background: #FFF;	min-height: 767px;	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */}.topcontainer {	width: 950px;	height:200px;	background: #FFF;	background-image:url(../image/clipboard.jpg);	background-repeat:no-repeat;	margin-top:15px;	margin-left: 0 auto;	margin-right: 0 auto;}.ptitle{	width: 413px;	min-height: 43px;	margin-left: 204px;	position: relative;	font-size: 43px;	font-style: italic;	color: #AED376;	font-family: Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif;	margin-top: 5px;}#tabsJ {	float:right;	width:465px;	line-height:normal;	padding-top: 1px;	font-family: Verdana, Arial, Helvetica, sans-serif;	text-align:center;	vertical-align:central;	font-size:12px;	padding-left: 0px;	padding-right: 0px;	height: 72px;      }    #tabsJ ul {	margin:0;	padding:0px;	list-style:none;	background-repeat: no-repeat;      }    #tabsJ li {	display:inline;	height: 100px;	width:91px;	padding-right: 0;	padding-bottom: 0;	padding-left: 0;	margin-right: 0;	margin-bottom: 0;	margin-left: 0;      }    #tabsJ a {	float:right;	background:url(../image/gbut.png) no-repeat right top;	height:77px;	width:91px;	padding:0px;	text-decoration:none;	vertical-align:central;	color: #000;	font-size: 12px;      }    #tabsJ a span {	float:right;	display:block;	background:url(image/gbut.png) no-repeat right top;	height:77px;	width:91px;	vertical-align:central;	padding:0px;	color:#000;	margin-left: 0px;	margin-right: 0px;      }    /* Commented Backslash Hack hides rule from IE5-Mac \*/    #tabsJ a span {float:none;}    /* End IE5-Mac hack */    #tabsJ a:hover span {      color:#000;      }    #tabsJ a:hover {	background-position:0% -77px;	text-decoration: none;      }    #tabsJ a:hover span {	background-position:100% -77px;	text-decoration: none;      }	#special a:hover {	background-position:0% -77px;	text-decoration: none;      }    #special a:hover span {	background-position:100% -77px;	text-decoration: none;      }	  	    /* Commented Backslash Hack hides rule from IE5-Mac \*/    #special a span {float:none;}    /* End IE5-Mac hack */    #special a:hover span {      color:#000;      }	  	#special a {	background-position:0% -154px;	margin:0;	padding:0px;	text-decoration:none;	color: #fff;      }	      #special a span {	display:block;	vertical-align:central;	background-color:#fff	background-position:100% -154px;	padding:0px;	color:#000;      }/* ~~ This is the layout information. ~~ 1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.*/.content {	padding: 10px 0;	margin: 6px;}/* ~~ miscellaneous float/clear classes ~~ */.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */	float: right;	margin-left: 8px;}.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */	float: left;	margin-right: 8px;}.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */	clear:both;	height:0;	font-size: 1px;	line-height: 0px;}.contentcontainer {	width: 950px;	height:auto;	background: #fff;	margin: 5, auto;	font-family: Verdana, Arial, Helvetica, sans-serif;	color: #000000;}.contentcontainer #content-left {	width: 606px;	height: auto;	margin-left: 5px;	margin-top:0px;	padding:0;	font-size: 13px;	background: #fff;	min-height: 540px;	overflow: hidden;}.contentcontainer #content-talk {	width: 510px;	height: auto;	margin-left: 20px;	margin-top:10;	padding:0;	font-size: 13px;	background: #fff;	min-height: 478px;}#title{	width: 700px;	padding-top:0px;	min-height: 43px;	margin-left: 204px;	position: relative;	margin-top: 50px;}#titletext{	font-size: 43px;	font-style: italic;	color: #AED376;	font-family: Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif;}.contentcontainer #content-right {	z-index: 80;	width:290px;	float:right;	margin-top:15px;	margin-bottom: 0;	padding-left: 0;	padding-bottom: 5px;	background: #fff;	margin-left: 10px;	margin-right: 20px;	overflow: hidden;	}.contentcontainer #content-right li{	color: #009245;	font-family: Verdana, Tahoma, Geneva, sans-serif;	font-size: 13px;	margin-left: 48px;	margin-right: 0px;	padding-top: 0px;	margin-bottom: 6px;	border-bottom-width: 1px;	border-bottom-style: solid;}.contentcontainer #hookbox{	width: 280px;	height:163px;	border-style: none;	background-color: #FFFFFF;	padding-bottom: 10px;	position: relative;	paddin-right: 20px;	padding-top: 5px;	margin-left:0px;}#n4{	width: 24px;	position: relative;	margin-top: 5px;	left: 5px;}#n6{	z-index: 7;	width: 24px;	position: relative;	margin-right: -24px;	margin-top: 157px;	left: 646px;}#n8{	z-index: 9;	width: 196px;	min-height: 16px;	position: relative;	margin-right: -196px;	margin-top: 132px;	left: 686px;}#n10{	font-size: 13px;	color: #FFFFFF;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#ln9{	width: 0.01px;	position: relative;	margin-right: -295px;	left: 481px;}#ln10{	width: 0.01px;	margin-left: 4px;	position: relative;}#ln11{	width: 0.01px;	position: relative;	margin-right: -33px;	margin-top: 4px;}#ln12{	z-index: 207;	width: 33px;	border-style: none;	background-color: #662D91;	padding-bottom: 6px;	position: relative;}#ln13{	z-index: 214;	width: 24px;	position: relative;	margin-right: -24px;	margin-top: 2px;	left: 5px;}#ln13_img, #ln16_img, #ln19_img, #ln51_img, #ln53_img, #ln55_img, #ln182_img, #ln185_img, #ln188_img, #ln191_img, #ln214_img{	vertical-align: top;}#ln15{	width: 33px;	border-style: none;	background-color: #662D91;	padding-bottom: 4px;	margin-top: 41px;	position: relative;}#ln16{	width: 24px;	position: relative;	margin-right: -24px;	margin-top: 5px;	left: 5px;}#ln18{	width: 33px;	border-style: none;	background-color: #009245;	padding-bottom: 4px;	margin-top: 120px;	position: relative;}#ln19{	z-index: 212;	width: 24px;	position: relative;	margin-right: -24px;	margin-top: 5px;	left: 5px;}#ln21{	z-index: 172;	width: 222px;	min-height: 241px;	position: relative;	margin-right: -222px;	left: 53px;}#ln23{	font-size: 24px;	line-height:20px;	color: #009245;	margin-left: 30px;	font-family: Baskerville, Georgia, Cambria, Times, Times New Roman, serif;}#ln25, #ln29, #ln31, #ln33, #ln35, #ln37, #ln41{	font-size: 14px;	margin-left: 30px;	line-height:17px;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#ln27, #ln39{	font-size: 24px;	padding-top: 15px;	color: #009245;	font-family: Baskerville, Georgia, Cambria, Times, Times New Roman, serif;}#n12{	font-size: 14px;	font-weight: normal;	color: #FFFFFF;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#n14{	font-size: 12px;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#n18{	font-size: 13px;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#n15{	font-size: 22px;	color: #FFFFFF;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#n21{	z-index: 189;	width: 295px;	border-style: none;	-moz-border-radius: 10px 10px 0px 0px ;	-webkit-border-radius: 10px 10px 0px 0px ;	-khtml-border-radius: 10px 10px 0px 0px ;	border-radius: 10px 10px 0px 0px ;	position: relative;	background: #009245 url("../image/about-us_u645_fr.png") repeat-x left top;}#n22{	z-index: 190;	width: 269px;	min-height: 29px;	margin-bottom: -7px;	position: relative;	margin-right: -269px;	margin-top: 10px;	left: 13px;}#n24{	font-size: 24px;	font-style: italic;	color: #FFFFFF;	font-family: Baskerville, Georgia, Cambria, Times, Times New Roman, serif;}#n28{	z-index: 196;	width: 295px;	min-height: 441px;	border-style: none;	background-color: #DFDCE0;	position: relative;}#n30, #n32{	font-size: 12px;	margin-right: 4px;	margin-left: 4px;	padding-top: 5px;	color: #5B5B5B;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#n34, #n38, #n50{	font-size: 12px;	margin-right: 4px;	margin-left: 4px;	padding-bottom: 9px;	padding-top: 5px;	color: #662D91;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#n36, #n40, #n44, #n48{	font-size: 12px;	margin-right: 4px;	margin-left: 4px;	padding-bottom: 5px;	padding-top: 5px;	color: #5B5B5B;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#n42, #n52{	font-size: 12px;	margin-right: 4px;	margin-left: 4px;	padding-bottom: 8px;	padding-top: 5px;	color: #662D91;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#n46{	font-size: 12px;	margin-right: 4px;	margin-left: 4px;	padding-bottom: 5px;	padding-top: 5px;	color: #662D91;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#n134 {	z-index: 176;	width: 290px;	min-height: 359px;	position: relative;}#n140{	font-size: 24px;	color: #009245;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#indeximage{	z-index: 188;	width: 563px;	min-height: 286px;	border-style: none;	position: relative;	background: #939495 url("../image/limesplash2.jpg") no-repeat left top;}#n186{	width: 108px;	height: 108px;	border-width: 2px;	border-style: solid;	border-color: #5D9E40;	border-radius: 55px;	position: relative;		margin-top: 0px;	left: 0px;	background: #FFFFFF url("../image/-a-%20compass.jpg") no-repeat left top;}#n187{	z-index: 227;	width: 125px;	min-height: 106px;	position: relative;		margin-top: 10px;	left: 120px;}#n189{	font-size: 32px;	font-style: italic;	color: #FFFF00;	font-family: Baskerville, Georgia, Cambria, Times, Times New Roman, serif;	line-height: 32px;}#n191{	color: #FFFFFF;	font-family: Verdana, Tahoma, Geneva, sans-serif;}#footer {	width: 948px;	height: 400px;	background: #FFF;	background-image:url(../image/clipboard4.jpg);	background-repeat:no-repeat;	margin-top:15px;	margin-left: 0 auto;	margin-right: 0 auto;	margin-top: 2;}#footlist {	font-family: Verdana, Tahoma, Geneva, sans-serif;	color: #FFF;	font-size: 12px;	line-height: 18px;	text-decoration:none;}#button_row {	vertical-align: middle;	height: 10px;	width: 60px;	position: fixed;}#basebuttons {	float:right;	width:400px;	line-height:normal;	font-family: Verdana, Arial, Helvetica, sans-serif;	text-align:center;	vertical-align:central;	font-size:12px;	padding-left: 0px;	padding-right: 0px;	height: 32px;      }#footbuttons{	margin-top: 5px;	width: 900px;	min-height: 32px;	margin-left: 20px;	position: relative;	overflow: visible;	}