@charset "UTF-8";
body {
	background: #FAFAFA;
	margin: 0;
	padding: 0;
}
.container {/* ~~ This fixed width container surrounds all other divs ~~ */
	width: 978px;
	height: auto;
	background: #fff;
	margin: 0 auto 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
.header {
	background: #fff;
	height: 127px;
}
.menu {
	width: 581px;
	height: 127px;
	float: left;
}
.intro {
	width: 978px;
	height: 630px;
	margin: 0px;
	padding: 0px;
	background-image: url(../images/intro-background.png);
	background-repeat:no-repeat;
}
.language {
	width: 65px;
	height: 127px;
	float: left;
}
.logo {
	width: 332px;
	height: 127px;
	float: right;
	background-image: url(../images/asti-logo-ru.png);
	background-repeat:no-repeat;
}
.left_sidebar {
	float: left;
	width: 83px;
	background: #fffd;
	padding-bottom: 10px;
	padding-top: 18px;
}
.content {
	width: 646px;
	float: left;
}
.content_header {
	margin: 0px;
	padding: 0px;
	width: 646px;
	height: 18px;
	float: left;
}
.portfolio_big {
	padding: 0px;
	float: left;
	width: 639px;
	height: auto;
	border-width: 3px 4px 3px 3px;
	border-style: solid;
	border-color: #9c8627;
	margin-bottom: 10px;
}
.youtube {
	margin: 0px;
	padding: 0px;
}
.content_body {
	padding: 0px;
	width: 646px;
	float: left;
	margin: 0px 0px 18px 0px;
	background-image: url(../images/main-text-background.png);
}
.right_sidebar {
	width: 213px;
	float: right;
	background: #fff;
	padding: 18px;
}
.portfolio_element {
	width: 202px;
	float: left;
 	margin: 0px 0px 18px 0px;

}
.portfolio_thumb {
	padding: 0px;
	float: left;
	width: 90px;
	height: 48px;
	border-width: 3px;
	border-style: solid;
	border-color: #9c8627;
}
.portfolio_description {
	padding:inherit;
	float: left;
	width: 104px;
	height: 54px;
	background-image: url(../images/portfolio-text-background.png);
}
.map {
	width: 202px;
	float: left;
 	margin: 0px 0px 18px 0px;

}
.map_thumb {
	padding: 0px;
	float: left;
	width: 196px;
	height: 196px;
	border-width: 3px;
	border-style: solid;
	border-color: #9c8627;
}
.map_description {
	padding: 10px 0 0 0;
	float: left;
	width: 202px;
	height: 68px;
	background-image: url(../images/map-text-background.png);
}

#icon {
	padding-left: 34px;
	padding-top: 2px;
}
.footer {
	padding: 0px;
	height: 90px;
	background: #fff;
	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 */
}
.footer_content {
	width:729px;
	padding: 0px;
	float:left;
}
.counter {
	width:88px;
	height:31px;
	float:right;
	padding: 59px 0 0 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 footer styles ~~ */
/* ~~ 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 .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}