@charset "utf-8";
body {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0;
	padding: 0;
	font-size:100%;	
	line-height:1.125em;	
	color: #aaaaaa;
}
/* ~~ 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{
	color: #38606F;
	font-size: 22px;
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 1.2em;
	letter-spacing: -1px;
	padding-right: 15px;
	padding-left: 15px
}
h1 span{ text-transform:uppercase}
h2{
	color: #F58220;
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 9px;
	padding-right: 15px;
	padding-left: 15px
}
.tail{ background:url(/images/tail.gif) bottom repeat-x; padding-bottom:15px; margin-bottom:15px}
.txt-1{ float:right; display:block; margin-bottom:31px; font-weight:bold; color:#5e5e5e}
.txt1{ text-align:right}
.txt2{ color:#3b3b3b; }
p {
	padding-right: 15px;
	padding-left: 15px;
	font-size: small;
	text-align: left;
}

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{ color:#3b3b3b; text-decoration:none; outline:none}
a:hover{ text-decoration:underline}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 960px;
	background-color: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	background-color: #FFFFFF;
	padding-bottom: 10px;
}
.TopRight {
	float: right;
	top: 0px;
	left: 560px;
	height: 89px;
	width: 400px;
	text-align: right;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks 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 block 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 block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 180px;
	background-color: #FFFFFF;
	padding-bottom: 10px;
	padding-right: 10px
}
.content {
	width: 550px;
	float: left;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
aside {
	float: left;
	width: 180px;
	background-color: #FFFFFF;
	padding: 10px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ 
.content ul, .content ol {
	padding: 0 15px 15px 40px;  this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. 
}

 ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ 
ul.nav {
	list-style: none;  this removes the list marker 
	border-top: 1px solid #666;  this creates the top border for the links - all others are placed using a bottom border on the LI 
	margin-bottom: 15px;  this creates the space between the navigation on the content below 
}
ul.nav li {
	border-bottom: 1px solid #666;  this creates the button separation 
}
ul.nav a, ul.nav a:visited {  grouping these selectors makes sure that your links retain their button look even after being visited 
	padding: 5px 5px 5px 15px;
	display: block;  this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. 
	width: 160px;  this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. 
	text-decoration: none;
	background-color: #CCCCCC;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {  this changes the background and text color for both mouse and keyboard navigators 
	background-color: #ADB96E;
	color: #FFF;
}*/

ul.list{margin:0; padding:0; list-style:none;}
ul.list li{background:url(../images/tail.gif) bottom left repeat-x; text-align:right }
ul.list .last{background:none}
ul.list li a{color:#3b3b3b; font-weight:bold; text-decoration:none; line-height:26px; font-size:11px; text-transform:uppercase} 
ul.list li a:hover {
	text-decoration: none;
	color: #bcbcbc;
	text-align: left;
}

ul.list2{margin:0; padding:0; list-style:none;}
ul.list2 li{ padding:0px 0px 24px 0px;  background:url(../images/icon4.png) top left no-repeat; padding-left:40px; overflow:hidden }
ul.list2 .last{ background:none}
ul.list2 li a{
	color: #38606F;
	text-decoration: none;
	line-height: 18px;
	font-weight: bold;
	background: url(../images/tail.gif) bottom left repeat-x;
	display: block;
	font-size: 13px;
	padding-bottom: 11px
}
ul.list2 li a strong{ text-transform:none; font-size:20px; display:block; margin-bottom:2px; line-height:24px}
ul.list2 li a:hover { text-decoration:none; color:#1f2122  }

ul.list2 .li{ padding:0px 0px 24px 0px;  background:url(../images/icon2.png) top left no-repeat; padding-left:40px; }
ul.list2 .li a{
	color: #F58220;
}
ul.list2 .li1{ padding:0px 0px 24px 0px;  background:url(../images/icon3.png) top left no-repeat; padding-left:40px; }
ul.list2 .li1 a{color:#c5a957;}
ul.list2 .li2{ padding:0px 0px 24px 0px;  background:url(../images/icon1.png) top left no-repeat; padding-left:40px; }
ul.list2 .li2 a{
	color: #656286;
}
ul.list3{margin:0; padding:0; list-style:none;}
ul.list3 li{
	background: url(../images/tail.gif) bottom left repeat-x;
	text-align: left
}
ul.list3 .last{background:none}
ul.list3 li a{color:#3b3b3b; font-weight:bold; text-decoration:none; line-height:26px; font-size:11px; text-transform:uppercase} 
ul.list3 li a:hover {
	text-decoration: none;
	color: #bcbcbc;
	text-align: right;
}
/* ~~ The footer ~~ */
footer {
	background-color: #FFFFFF;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
/* ~~ 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 block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
	color: #333333;
	text-align: left;
}
/* Contact form */
#contact-form {	overflow:hidden;	position:relative;	vertical-align:top;	}
	#contact-form fieldset {border:none;padding:0;}
		#contact-form .field {overflow:hidden; padding:0 0 15px 0px;}
			#contact-form input[type=text] {
	width:325px;
	padding:6px 18px 6px 14px;
	background:#ededed;
	border-top:1px solid #c5c5c5;
	border-left:1px solid #c5c5c5;
	border-bottom:1px solid #ededed;
	border-right:1px solid #ededed;
	display:block;
	color:#b1b1b1;
	border-style: solid;
	border-radius:21px;
	-moz-border-radius: 21px;
	-webkit-border-radius: 21px;
	position:relative
			}
			#contact-form.main-contacts .field input { margin-top:4px; }
			#contact-form textarea {
	width: 391px;
	height: 75px;
	background: #ededed;
	border-top: 1px solid #c5c5c5;
	border-left: 1px solid #c5c5c5;
	border-bottom: 1px solid #ededed;
	border-right: 1px solid #ededed;
	padding: 9px 18px 9px 14px;
	overflow: auto;
	display: block;
	margin-bottom: 15px;
	color: #b1b1b1;
	border-style: solid;
	border-radius: 21px;
	-moz-border-radius: 21px;
	-webkit-border-radius: 21px;
	position: relative
				}
				#contact-form a {cursor:pointer;}
				#contact-form .alignright {padding-top:12px;}
					#contact-form small {color:red;font-weight:bold;padding:0 0 0 5px;}
			#contact-form label {padding:0 0 2px 5px;display:inline-block;}
			#contact-form strong {padding:0 0 2px 9px;display:inline-block;color:#838383;}
				#contact-form .error {color:red; display:none}
		.buttons-wrapper {padding-top:30px;}
		
		#contact-form.main-contacts .buttons-wrapper {padding-top:19px;}
		#contact-form.main-contacts .buttons-wrapper a {
			float:right !important;
			margin:0 0 0 12px;
			}
.button{color:#fff; background:url(../images/button.png) center left no-repeat; width:86px; text-align:center; line-height:29px; display:block; text-decoration:none; float:left; text-transform:uppercase; font-size:11px  }
.button:hover{text-decoration:none; color:#3b3b3b; background:url(../images/button-act.png) center left no-repeat; }

.link-1 {
	display: inline-block;
	float: left;
	line-height: 23px;
	background: #3b3b3b;
	padding: 0 15px 2px 15px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 11px;
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
	cursor: pointer;
	position: relative;
}
.link-1:hover {background:#000; text-decoration:none; color:#fff}	
.container .content section table tr td {
	font-size: small;
}
.container .content section ul .li {
	list-style-type: circle;
}
.lihead {
	color: #F58220;
	font-weight: bold;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.container .content section ul {
	font-size: small;
	text-align: left;
}
.inputfield {
	border-top:1px solid #c5c5c5;
	border-left:1px solid #c5c5c5;
	border-bottom:1px solid #ededed;
	border-right:1px solid #ededed;
	display:block;
	color:#b1b1b1;
	border-style: solid;
	border-radius:21px;
	-moz-border-radius: 21px;
	-webkit-border-radius: 21px;
}
