/**
 * 01. Basic styles
 * 02. For Form
 * 03. Banners
 * 04. Header menu
 * 05. Header menu bottom
 * 06. Bread
 * 07. Page
 * 08. Thumbnails (homepage)
 * 09. Thumbnails (detail)
 * 10. Pic detail
 * 11. Table (tablepart)
 * 12. Form vin
 * 13. Form search
 * 14. Registration
 * 15. Bug
 * 16. Feedback 
 * 17. Join
 * 18. News 
 * 19. Partner
 * 20. Footer
 * 21. Other
 * 22. Responsive Web Design
**/

@charset "utf-8";

/*
01. Basic styles
--------------------------------
html
body
a
a:hover
img
p
h1, h2, h3
ol, ul, li
.clear
.shadow
.shadow img
--------------------------------
*/

html {
	background: url("about:blank");
}

body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	font-size: .85em;
}

a {
	color: #015488;
}

a:hover {
	color: #E00;
}

img {
	border: 0;
}

p {
	padding: 0;
	margin: 0;
}

h1, h2, h3 {
	padding: 0;
	margin: 0;
	font-weight:normal;
}

ol, ul, li {
	padding: 0;
	margin: 0;
}

.clear {
	clear: both;
}

.shadow {
	margin: 0;
	padding: 0 5px 8px 0;
	background: #FFF url("../img/shadow.png") no-repeat left bottom;
}

.shadow img {
	font-size: 1px;
	vertical-align: top;
	border: 8px solid #EAEAEA;
}

/*
02. For Form
--------------------------------
.button
.button::-moz-focus-inner
.button:hover
.button:active 
.input
.texarea
--------------------------------
*/

.button {
	height: 22px;
	padding: 0 5px;
	outline: none;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #F1F1F1 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAIAAABi9+OQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpi+v//PxM2zMDAQEtxgAADAF2uTe9L4getAAAAAElFTkSuQmCC") repeat-x;
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
	color: #333;
	cursor: pointer;
}

.button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.button:hover {
	background-color: #E6E6E6;
	background-position: 0 -10px;
}

.button:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}

.input {
	border-radius: 4px;
	margin: 0;
	padding:2px 5px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	color: #333;
}

.texarea {
	margin: 0;
	height: 100px;
	width: 99%;
	outline: none;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	box-shadow: inset 1px -1px #F1F1F1;
	color: #333;
}

/*
03. Banners
--------------------------------
.banner_board
.banner_board_default
.banner
--------------------------------
*/

.banner_board {
	background: url("http://bat-esgrafecs.lip2952.keenetic.pro/img/banner_board.gif") 0 0 no-repeat;
	width: 254px;
	position: relative;
	height: 412px;
	z-index: 2;
}

.banner_board_default {
	background: url("http://bat-esgrafecs.lip2952.keenetic.pro/img/banner_board_default.gif") 0 0 no-repeat;
	width: 254px;
	position: relative;
	height: 412px;
	z-index: 2;
}

.banner {
	position: absolute;
	left: 6px;
	top: 6px;
	width: 240px;
	height: 400px;
	background-color: #FFF;
}

/*
04. Header menu
--------------------------------
#header_menu
.header_fixed
.header_fixed .left .title
.header_fixed .left .logo img
.header_fixed .left .logo_partner img
.header_fixed .left
.header_fixed .right
.header_relative
.toplink
.toplink a
.toplink a:hover
.toplink span
.header_relative .left .toplink
.header_relative .left .title
.header_relative .left
.header_relative .right
#header_menu .logo_partner
#header_menu .logo
#header_menu .title 
#header_menu .title a
#header_menu .title a:hover
#header_menu ul 
#header_menu ul li 
#header_menu ul li.exit a
.header_relative ul li.login
.link_bug
li#link_bug_nologin
ul#link_bug_nologin li
.header_fixed ul#link_bug_nologin
.header_relative li#link_bug_nologin
--------------------------------
*/

#header_menu {
	width: 100%;
	color: #015488;
	border-bottom: 1px solid #CACACA;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 10px rgba(0, 0, 0, 0.2);
	z-index: 200;
}

.header_fixed {
	background: #EEE url("../img/bg.png") repeat-x left bottom;
	padding: 10px 0;
	position: fixed;
	left: 0;
	top:  0;
	_position: absolute;
	_top: expression( 0 + eval(document.documentElement.scrollTop||document.body.scrollTop) + 'px' );
}

.header_fixed .left .title {
	font-weight: bold;
	font-size: 110%;
}

.header_fixed .left .logo img {
	height: 20px;
}

.header_fixed .left .logo_partner img {
	height: 20px;
}

.header_fixed .left {
	float: left;
	padding: 0 0 0 30px;
	display: inline;
}

.header_fixed .right {
	float: right;
	font-size: 95%;
	display: inline;
	padding: 0 30px;
}

.header_relative {
	background: #FFF;
	padding: 20px 0;
	position: relative;
}

.toplink {
	display: none;
	font-size: 90%;
	padding: 0 0 0 70px;
}

.toplink a {
	text-decoration: none;
	border-bottom: 1px dashed #015488;
}

.toplink a:hover {
	text-decoration: none;
	border-bottom: 1px dashed #E00;
}

.toplink span {
	font-size: 110%;
}

.header_relative .left .toplink {
	visibility: hidden;
}

.header_relative .left .title {
	font-size: 140%;
	padding-bottom: 5px;
	width: 150px;
}

.header_relative .left {
	float: left;
	padding: 0 0 0 30px;
}

.header_relative .right {
	float: right;
	font-size: 95%;
	padding: 0 30px;
}

#header_menu .logo_partner {
	float: left;
	padding: 0 10px 0 0;
	margin-right: 20px;
}

#header_menu .logo {
	float: left;
	padding: 0 10px 0 0;
}

#header_menu .title {
	float: left;
}

#header_menu .title a {
	text-decoration: none;
	border-bottom: 1px solid #2572a2;
}

#header_menu .title a:hover {
	border-bottom: 1px solid #E00;
	color: #E00;
}

#header_menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#header_menu ul li {
	margin: 0 0 0 20px;
	display: inline;
}

#header_menu ul li.exit a {
	color: #C00;
}

.header_relative ul li.login {
	font-size:140%;
}

.link_bug {
	padding-left: 15px;
	background: url("http://bat-esgrafecs.lip2952.keenetic.pro/img/exclamation.gif") 0% 50% no-repeat; 
}

li#link_bug_nologin {
	padding-left:15px;
	background: url("http://bat-esgrafecs.lip2952.keenetic.pro/img/exclamation.gif") 0% 50% no-repeat; 
}

ul#link_bug_nologin li {
	line-height: 250%;
	padding-left:15px;
	background: url("http://bat-esgrafecs.lip2952.keenetic.pro/img/exclamation.gif") 0% 50% no-repeat; 
}

.header_fixed ul#link_bug_nologin {
	display: none;
}

.header_relative li#link_bug_nologin {
	display: none;
}

/*
05. Header menu bottom
--------------------------------
#header_menu_bottom
#header_menu_bottom .left
#header_menu_bottom .right
#header_menu_bottom ul
#header_menu_bottom ul li
--------------------------------
*/

#header_menu_bottom {
	height: 24px;
	_height: 24px;
	*height: 24px;
	background: #FCFCFC url("http://bat-esgrafecs.lip2952.keenetic.pro/img/header_menu_bottom.gif") 0 0 repeat-x;
	z-index: 201;
}

#header_menu_bottom .left {
	float: left;
	padding: 5px 10px;
	text-align: left;
}

#header_menu_bottom .right {
	float: right;
	padding: 5px 10px;
	text-align: right;
}

#header_menu_bottom ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#header_menu_bottom ul li {
	font-size: 80%;
	margin: 0 10px;
	padding: 0;
	float: left;
}

/*
06. Bread
--------------------------------
#bread
.bread_relative
.bread_relative .title_and_breadcrumbs
.bread_fixed
.bread_fixed .title_and_breadcrumbs
.bread_fixed .title_and_breadcrumbs h1
.bread_fixed .title_and_breadcrumbs .breadcrumbs
.title_and_breadcrumbs .breadcrumbs
.title_and_breadcrumbs h1
--------------------------------
*/

#bread {
	width: 100%;
}

.bread_relative {
	background: #FFF;
	position: static;
	display: block;
	z-index: 100;
	_top: expression( 0 + eval(document.documentElement.scrollTop||document.body.scrollTop) + 0 + 'px' );
}

.bread_relative .title_and_breadcrumbs {
	padding: 25px 25px 0 25px;
}

.bread_fixed {
	border-bottom: 1px dotted #CCC;
	background: #FFF;
	font-size: 85%;
	position: fixed;
	padding: 5px 0 10px 0;
	left: 0px;
	top: 40px;
	z-index: 199;
	_position: absolute;
	_top: expression( 0 + eval(document.documentElement.scrollTop||document.body.scrollTop) + 40 + 'px' );
}

.bread_fixed .title_and_breadcrumbs {
	padding: 0 25px;
}

.bread_fixed .title_and_breadcrumbs h1 {
	font-size: 160%;
	padding: 10px 0 3px 0;
}

.bread_fixed .title_and_breadcrumbs .breadcrumbs {
	padding: 0 0 3px 0;
}

.title_and_breadcrumbs .breadcrumbs {
	padding: 0 0 4px 0;
	line-height: 1.5;
}

.title_and_breadcrumbs h1 {
	padding: 0 0 6px 0;
}

/*
07. Page
--------------------------------
#page
#page .left
#page .right
#page .left_mirror
#page .right_mirror
#page .left_a
#page .right_a
.page_info
.model_info
.page_info p, .model_info p
.page_info ul, .model_info ul 
.page_info ol, .model_info ol
.page_info li, .model_info li
.table
.banner_left
.content
.sidebar
.right_sidebar
.razdel_left
.razdel_right
html*.razdel_right
.left50
.left100
--------------------------------
*/

#page {
	margin: 25px;
	height: 100%;
}

#page .left {
	float: left;
	width: 64%;
}

#page .right {
	border-left: 1px dashed #999;
	float: right;
	width: 29%;
	height: 100%;
	padding-left: 15px;
}

#page .left_mirror {
	float: left;
	width: 300px;
	padding-right: 15px;
	height: 100%;
}

#page .right_mirror {
	float: left;
	width: 64%;
	border-left: 1px dotted #999;
	padding-left: 15px;
}

#page .left_a {
	float: left;
	width: 245px;
}

#page .right_a {
	margin-left: 295px;
	height: 100%;
}

.page_info {
	padding: 25px 25px 25px 0; 
}

.model_info {
	padding: 25px; 
}

.page_info p, .model_info p {
	padding: 0 0 10px 0; 
	line-height: 150%;
}

.page_info ul, .model_info ul {
	margin: 0; 
	padding: 0; 
	list-style: none;
}

.page_info ol, .model_info ol {
	margin: 0;
	padding: 0;
}

.page_info li, .model_info li {
	margin: 10px 30px;
}

.table td  {
	padding: 0;
}

.banner_left {}

.content {
	margin-left: 300px;
}

.sidebar {
	width: 300px;
	float:left;	
}

.right_sidebar {
}

.razdel_left {
	float:left;
	width: 473px;
}

.razdel_right {
	margin-left: 473px;
	_overflow-x: auto;
	overflow-x : auto\0/ ;
}

html*.razdel_right {
	overflow-x: auto;
}

.left50 {
	float: left;
	width: 45%;
}

.left100 {
	width: 50%;
	float: right;
}

/*
08. Thumbnails (homepage)
--------------------------------
.thumbnails
.thumbnail
.thumbnail .r
--------------------------------
*/

.thumbnails {
	word-wrap: break-word;
	padding-top: 1em;
	margin: -3em 0 0 0 ;
	text-align: left;
}

.thumbnail {
	text-decoration: none;
	display: -moz-inline-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	margin: 3em 4em 0 0;
}

.thumbnail .r {
	width: 14em;
	float: left;
}

/*
09. Thumbnails (detail)
--------------------------------
.thumbnails_2
.thumbnail_2 .r
.thumbnail_2 ol
ol.list
ol.list45
.list li, .list45 li
--------------------------------
*/

.thumbnails_2 {
	word-wrap: break-word;
	padding-bottom: 1em;
	text-align: left;
}

.thumbnail_2 {
	text-decoration: none;
	display: -moz-inline-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	margin: 0 0em 2em 0;
}

.thumbnail_2 .r {
	width: 24em;
	float: left;
}

.thumbnail_2 ol {
	padding-left: 45px;
	color: #015488;
	*padding-left: 50px;
}

ol.list {
	color: #015488;
	padding: 0 25px;
}

ol.list45 {
	color: #015488;
	padding-left: 45px;
}

.list li, .list45 li {
	padding-bottom: 10px;
}

/*
10. Pic detail
--------------------------------
#scheme
.scheme_relative
.scheme_fixed
.flash
.btn
#btnPlus, #btnMinus
#btnNorm
--------------------------------
*/

#scheme {
	width: 471px;
}

.scheme_relative {
	background: #FFF;
	position: relative;
	top: 0;
	left: 0;
	z-index: 100;
	_top: expression( 0 + eval(document.documentElement.scrollTop||document.body.scrollTop) + 0 + 'px' );
}

.scheme_fixed {
	position: fixed;
	left: 26px;
	top: 140px;
	_position: absolute;
	_top: expression( 0 + eval(document.documentElement.scrollTop||document.body.scrollTop) + 140 + 'px' );
}

.flash {
	height: 327px;
	width: 450px;
	border: 8px solid #EAEAEA;
}

.btn {
	text-align: center;
	background-color: #EAEAEA;
	padding: 5px;
	margin-right: 5px;
}

#btnPlus, #btnMinus {
	width: 30px;
}

#btnNorm {
	width: 50px;
}

/*
11. Table (tablepart)
--------------------------------
#parts
.parts_fixed
table
table td
thead
.tablepart
.tablepart td, .tablepart th
.tablepart .table_title th
.tablepart tr.name td
.td_w_1
td.td_aling_left
.border
.bg
--------------------------------
*/

#parts {
}

.parts_fixed {
	padding-top: 179px;
} 

table {
	border-collapse: collapse;
}

table td {
	vertical-align: top;
}

thead {
	background: #FFF;
}

.tablepart {
	border-collapse: collapse;
}

.tablepart tr.name td {
	vertical-align: bottom;
	border-bottom: 2px solid #999;
	font-size: 100%;
	padding-top: 30px;
}

.tablepart td, .tablepart th {
	text-align: center;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	padding: 4px;
	font-size: 80%;
}

.tablepart .table_title th {
	text-align: center;
	font-weight: bold;
}

.td_w_1 {
	width: 1%;
}

td.td_aling_left {
	text-align: left;
}

#border {
	background: #FFFBD1;
	text-align: center;
}

.bg {
	background: #FFFBD1;
}

/*
12. Form vin
--------------------------------
#form_vin
#form_vin table
#form_vin_page
#form_vin_page td.label
#form_vin .input, #form_vin_page .input
.form_vin_result
.form_vin_result table
.form_vin_result table td
.form_pre_vin_result big
.form_pre_vin_result table
.form_pre_vin_result table tr.table_title td
#vin_notice
#vin_notice p
#vin_notice p.first
.color_color img
--------------------------------
*/

#form_vin {
	width: 245px;
	padding: 20px 10px;
	border-top: 1px solid #CACACA;
}

#form_vin table {
	margin: 5px 0;
}

#form_vin_page {
	padding: 20px 10px;
	width: 450px;
	background: #F6F6F6;
	margin: 15px 0 30px 0;
}

#form_vin_page td.label {
	vertical-align: baseline;
	padding: 3px 10px 0 3px;
}

#form_vin .input, #form_vin_page .input {
	text-transform: uppercase;
	width: 98%;
}

.form_vin_result {
	font-size: 75%;
}

.form_vin_result table {
	border-collapse: collapse;
	min-width: 40%;
}

.form_vin_result table td {
	padding: 6px 10px 6px 0;
	vertical-align: top;
	font-size: 135%;
	padding-top: 10px;
	color: #333;
	border-bottom: 1px solid #BBB;
}

.form_pre_vin_result big {
	line-height: 150%;
	font-size: 150%;
}

.form_pre_vin_result table {
	border-collapse: collapse;
	margin-top: 15px;
}

.form_pre_vin_result table tr.table_title td {
	font-size: 135%;
	margin: 10px 0;
	padding: 5px;
	vertical-align: middle;
	color: #333;
	border-top: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
}

#vin_notice {
	display: none;
	font-size: smaller;
}

#vin_notice p {
	margin: 10px 0;
}

#vin_notice p.first {
	border-left: 3px solid #B00;
	padding-left: 10px;
}


.color_color img {
	font-size: 1px;
	vertical-align: top;
	border: 2px solid #EAEAEA;
}

/*
13. Form search
--------------------------------
#form_search
#form_search table
#form_search table td
#form_search_page
#form_search_page table td
#form_search_page td.label
#form_search .input, #form_search_page .input
.form_search_result
.form_search_result big
.form_search_result h2
.form_search_result table
.form_search_result table.link_buy td
.form_search_result table tr.table_title td
.form_search_result table tr td
.form_search_result table tr.it td
.form_search_result .micrologo
--------------------------------
*/

#form_search {
	width: 245px;
	padding: 0 10px 20px 10px;
}

#form_search table {
	margin: 5px 0;
}

#form_search table td {
	vertical-align: baseline;
	border-collapse: collapse;
}

#form_search_page {
	padding: 20px 10px;
	width: 450px;
	background: #F6F6F6;
	margin: 15px 0 30px 0;
}

#form_search_page table td {
	vertical-align: baseline;
	border-collapse: collapse;
}

#form_search_page td.label {
	vertical-align: baseline;
	padding: 3px 10px 0 3px;
}

#form_search .input, #form_search_page .input {
	text-transform: uppercase;
	width: 98%;
}

.form_search_result {
	max-width: 1000px;
	padding: 0 20px 0 0;
}


.form_search_result big {
	font-size: 150%;
}

.form_search_result h2 {
	margin: 5px 0 10px 0;
}

.form_search_result table {
	width: 100%;
	margin: 0 0 20px 0;
}

.form_search_result table.link_buy td {
	font-size: 175%;
	border: 0;
	background: #FCFCFC url("http://bat-esgrafecs.lip2952.keenetic.pro/img/header_menu_bottom.gif") 0 0 repeat-x;
	padding: 15px 0 15px 10px;
}

.form_search_result table tr.table_title td {
	font-size: 135%;
	vertical-align: middle;
	padding-top: 10px;
	color: #333;
	border-bottom: 2px solid #bbb;
}

.form_search_result table tr td {
	padding: 10px 20px 10px 0;
	vertical-align: top;
	border-bottom: 1px solid #ddd;
}

.form_search_result table tr.it td {
	background: #FFFBD1;
}

.form_search_result .micrologo
{
	vertical-align: middle;
	padding-right: 10px;
}

/*
14. Registration
--------------------------------
.registration
.registration .r_left
.registration .r_right
.error
.panel
.panel_username, .panel_password
.panel_username input, .panel_password input
.panel_permanent
.panel_permanent_hide
.panel_permanent label, .panel_permanent a
.panel_permanent input 
.panel_button input
.panel_button 
.password_remember .panel
#loginOrRegistration
--------------------------------
*/

.registration {
	position: relative;
	margin: 50px auto;
	border: 4px solid #ECE9E4;
	padding: 25px;
	width: 50%;
	background: #FFF;
}

.registration .r_left {
	float: left;
	width: 40%;
}

.registration .r_right {
	float: left;
}

.error {
	font-size: 90%;
	color: #E00;
	padding-bottom: 5px;
}

.panel {
	padding: 10px 0;
}

.panel_username, .panel_password {
	padding: 0 0 10px 0;
}

.panel_username input, .panel_password input {
	margin: 0;
	width: 150px;
}

.panel_permanent {
	padding: 0;
}

.panel_permanent_hide {
	display: none;
}

.panel_permanent label, .panel_permanent a {
	font-size: 81%;
	vertical-align: top;
}

.panel_permanent input {
	margin:0;
}

.panel_button input {
	padding: 3px 10px;
	margin: 0;
}

.panel_button {
	padding: 7px 0 0 0;
}

.password_remember .panel {
}

#loginOrRegistration {
	font-size: 15px;
	height: 30px;
}

/*
15. Bug
--------------------------------
.bug .panel 
.bug_form
.bug_form input
.bug_form textarea
.bug_link
--------------------------------
*/

.bug .panel {
}

.bug_form {
	position: relative;
	margin: 50px auto;
	border: 4px solid #ECE9E4;
	padding: 25px;
	width: 50%;
	background: #FFF;
}

.bug_form input {
	margin: 0 0 5px 0;
}

.bug_form textarea {
	margin: 0 0 10px 0;
}

.bug_link {
	font-size: 90%;
}

/*
16. Feedback
--------------------------------
.feedback .panel
.feedback_form
.feedback_form input
.feedback_form textarea
--------------------------------
*/

.feedback .panel {
}

.feedback_form {
	position: relative;
	margin: 50px auto;
	border: 4px solid #ECE9E4;
	padding: 25px;
	width: 50%;
	background: #FFF;
}

.feedback_form input {
	margin: 0 0 5px 0;
}

.feedback_form textarea {
	margin: 0 0 10px 0;
}

/*
17. Join
--------------------------------
.join .panel
.join_catalog
.join .error
.join_form
.join_form input
.join_form textarea
--------------------------------
*/

.join .panel {
}

.join_catalog td {
	vertical-align: baseline;
}

.join .error {
	font-size: 100%; 
	padding-left: 10px;
}

.join_form {
	position:relative;
	margin: 50px auto;
	border: 4px solid #ECE9E4;
	padding: 25px;
	width: 50%;
	background: #FFF;
}

.join_form input {
	margin: 0 0 5px 0;
}

.join_form textarea {
	margin: 0 0 10px 0;
}

/*
18. News
--------------------------------
.news
.news dl
.news dl dt
.news dl dd
.news dl dd p
.list_news table
.list_news_post h2
.list_news_post .date
.list_news_post .news_list
.list_news_post .post
ul.list_news_year
ul.list_news_year li
ul.list_news_year li.active
.news_post h2
.post
.post ul
.post p
--------------------------------
*/

.news {
	font-size: 90%;
	width: 245px;
	padding: 20px 10px;
	display: none;
}

.news dl {
	margin: 0;
	padding: 0;
	list-style: none;
}

.news dl dt {
	margin: 5px 0 3px 0;
	color: #666;
	font-style: italic;
	font-size: 95%;
}

.news dl dd {
	margin: 0;
	line-height: 1.4;
	padding: 0 0 10px 0;
	font-size: 95%;
}

.news dl dd p {
	margin: 3px 0;
}

.list_news table {
}

.list_news_post h2 {
	padding: 10px 0;
}

.list_news_post .date {
	float: left;
	width: 100px;
}

.list_news_post .news_list {
}

.list_news_post .post {
	margin-left: 120px;
	padding: 0 20px 15px 0;
	line-height: 150%;
}

ul.list_news_year {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.list_news_year li {
	margin: 10px 0;
}

ul.list_news_year li.active {
}

.news_post h2 {
	padding: 0 0 10px 0;
}

.post {
	padding: 20px 20px 0 0;
	line-height: 150%;
}
.post p {
	padding: 0 0 10px 0;
}

.post ul {
	padding: 0 0 10px 45px;
}

/*
19. Partner
--------------------------------
table.edit_partner
table.edit_partner td
table.edit_partner_logo
table.edit_partner_logo td
.edit_partner .domain_http
.edit_partner #domain
.edit_partner #user_login
.edit_partner #link
.edit_partner #link_text
.edit_partner .update
.edit_partner .update input
table.table_partners
table.table_partners td
table.table_partners tr.second td
--------------------------------
*/

table.edit_partner {
	margin-top: 15px;
	font-size: 85%;
	border-collapse: collapse;
}

table.edit_partner td {
	vertical-align: middle;
	padding: 5px 10px 5px 0;
}

table.edit_partner_logo {
	margin-top: 15px;
	font-size: 85%;
	border-collapse: collapse;
	padding: 5px 7px;
}

table.edit_partner_logo td {
	background-color: #F6F6F6;
	vertical-align: middle;
	padding: 5px 10px;
}

.edit_partner .domain_http {
	width: 99%;
	font-size: 175%;
}

.edit_partner #domain {
	margin: 10px 0 10px 85px;
}

.edit_partner #user_login {
	margin: 0 0 10px 15px;
}

.edit_partner #link {
	width: 300px;
}

.edit_partner #link_text {
	margin: 0;
}

.edit_partner .update {
	text-align: center;
	border-top: 1px solid #966;
	padding: 20px 0 100px 0;
}

.edit_partner .update input {
	font-size: 16px;
	height: 30px;
	width: 100px;
}

table.table_partners {
	margin-top: 15px;
	font-size: 85%;
	border-collapse: collapse;
}

table.table_partners td {
	vertical-align: middle;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	padding: 10px;
}

table.table_partners tr.second td {
	background: #F1F1F7;
}

/*
20. Footer
--------------------------------
#footer
#footer a
#footer a:hover
#footer .left
#footer .right
#footer ul
#footer ul li
--------------------------------
*/

#footer {
	background: #FFF;
	font-size: 90%;
	line-height: 1.4;
	padding: 15px 0 30px 0;
	border-top: 1px solid #999;
}

#footer a {
	color: #8792A0;
}

#footer a:hover {
	color: #E00;
}

#footer .left {
	float: left;
	padding: 0 0 0 30px;
}

#footer .right {
	float: right;
	padding: 0 30px 0 0;
}

#footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#footer ul li {
	margin: 0 0 0 50px;
	padding: 0;
	float: left;
}

/*
21. Other
--------------------------------
.d
.icon
#infopage
#noscript
span.eng
.edit
--------------------------------
*/

.d {
	color: #666;
	padding: 2px;
	text-align: right;
	font-size: 8px;
	z-index: 1;
}

.icon {
	font-size: 1px;
	vertical-align: baseline;
	border: 0;
}

#infopage {
	font-size: 90%;
}
 
#noscript {
	background: #F7E5EE;
	z-index: 202;
	position: relative;
	padding: 10px;
	border-bottom: 1px solid #CCC;
	font-size: 90%;
}

span.eng {
	font-size: 85%;
	color: #CCC;
}

.edit {
	padding: 0;
	margin: 0;
	font-size: 12px;
	width: 200px;
}

/* 
22. Responsive Web Design
--------------------------------
@media screen and (max-width:1150px) 
.banner_top
.content
.right_sidebar
.thumbnails

@media screen and (max-width:1024px)
.razdel_left
.razdel_left #scheme
.razdel_right
.razdel_right .tablepart

@media screen and (min-width:360px) and (max-width:600px)
.banner_left, .right_sidebar
.flash
object, embed

@media screen and (max-width:800px)
.banner_left, .right_sidebar
.razdel_left
.razdel_right
.header_relative
.sidebar
.sidebar ol
.list, .list45
.breadcrumbs
.breadcrumbs span
#form_vin
#form_search
.input
.button
.news
.content
.thumbnails
.thumbnail
#header_menu_bottom
#header_menu
#header_menu .left
#header_menu .right
#header_menu ul li
#header_menu .login 
#link_bug_nologin 
.feedback_form, .bug_form, .join_form 
.feedback_form .panel, .bug_form .panel, .join_form .panel
.feedback_form h2, .bug_form h2, .join_form h2
#name, #email
.registration
.registration .r_left 
.registration .r_right
.panel_username input, .panel_password input
#loginOrRegistration
h2
.thumbnails_2
.thumbnail_2
.thumbnail_2 .r
.thumbnail_2 ol
.shadow
.shadow img
#footer .left, #footer .bottom_menu, #footer .right
#footer ul li
#scheme
#scheme .shadow
#scheme img
.tablepart 
.tablepart img
.flash
object, embed
.btn
.btn input
#parts
.news_list .date, .news_list .post
#form_search_page, #form_vin_page
.form_search_result, .form_pre_vin_result, .form_vin_result
.form_search_result i
.left50, .left100
.panel_permanent
.partners
--------------------------------
*/

@media screen and (max-width:1150px) {
	.banner_top {
		display: none;
		visibility: hidden;
	}

	.content {
		margin-right: auto!important;
	}

	.right_sidebar {
		display: none;
		visibility: hidden;
	}

	.thumbnails {
		margin: -3em 0 0 0!important;
	}
}

@media screen and (max-width:1024px) {
	.razdel_left {
		width: 100%;
		float: none;
		margin-bottom: 25px;
	}

	.razdel_left #scheme {
		margin: 0 auto;
	}

	.razdel_right {
		margin: 0!important;
	}


	.razdel_right .tablepart {
		width: 100%;
	}
}

@media screen and (min-width:360px) and (max-width:600px) {
	.banner_left, .right_sidebar {
		display: none;
		visibility: hidden;
	}

	.flash {
		margin: 0 auto;
		width: 270px!important;
		height: 196px!important;
	}

	object, embed {
		width: 270px!important;
		height: 196px!important;
	}
}

@media screen and (max-width:800px) {
	.banner_left, .right_sidebar {
		display: none;
		visibility: hidden;
	}

	.razdel_left {
		width: 100%;
		float: none;
	}

	.razdel_right {
		margin: 0!important;
	}

	.header_relative {
		padding: 20px 0 0 0;
	}

	.sidebar {
		width: 100%;
		float: none;
		border-top: 2px solid #CCC;
		padding: 20px 0 10px 0;
	}

	.sidebar ol {
		padding-left: 55px;
	}

	.list, .list45 {
		font-size: 130%;
	}

	.breadcrumbs {
		font-size: 130%;
		line-height: 1.4;
	}

	.breadcrumbs span {
		padding: 5px 0;
		display: block;
	}

	#form_vin {
		padding: 20px 0;	
		width: 100%;
		font-size: 125%;
	}

	#form_search {
		padding: 0 0 20px 0;
		width: 100%;
		font-size: 125%;
	}

	.input {
		font-size: 110%;
	}

	.button {
		font-size: 110%;
		height: 27px;
	}

	.news {
		display: none;
	}

	.content {
		margin: 0!important;
		border-top: 2px solid #CCC;
		padding-top: 20px;	
		float: none;
		margin: 0;
	}

	.thumbnails {
		margin: -3em 0 0 -2em;
	}

	.thumbnail {
		margin: 3em 0 0 2em;
	}

	#header_menu_bottom {
	}

	#header_menu {
	}

	#header_menu .left {
		float: none;
		clear: both;
		margin: 0 auto;
		padding: 0 0 0 20px;
	}

	/*	
	2015.08.03
	#header_menu .right {
		background: -moz-linear-gradient(-45deg, rgba(193,224,255,1) 0%, rgba(143,195,247,0.66) 44%, rgba(255,255,255,0.23) 100%);
		background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#C1E0FF), color-stop(44%,rgba(143, 195, 247, 0.66)), color-stop(100%,rgba(255, 255, 255, 0.23)));
		background: -webkit-linear-gradient(-45deg, #C1E0FF 0%,rgba(143, 195, 247, 0.66) 44%,rgba(255, 255, 255, 0.23) 100%);
		background: -o-linear-gradient(-45deg, rgba(193,224,255,1) 0%,rgba(143,195,247,0.66) 44%,rgba(255,255,255,0.23) 100%);
		background: -ms-linear-gradient(-45deg, rgba(193,224,255,1) 0%,rgba(143,195,247,0.66) 44%,rgba(255,255,255,0.23) 100%);
		background: linear-gradient(135deg, #C1E0FF 0%,rgba(143, 195, 247, 0.66) 44%,rgba(255, 255, 255, 0.23) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c1e0ff', endColorstr='#3bffffff',GradientType=1);
		border-top: 1px dashed #999;	
		float: none;
		margin: 20px auto 0 auto;
		padding: 20px 0 20px 20px;
		font-size: 130%;
	}
	*/
	#header_menu .right {
		float: none;
		margin: 20px auto 0 auto;
		padding: 0;
		font-size: 130%;
	}
	#header_menu ul li {
		margin: 5px 20px 0 0;
		display: block;
	}

	#header_menu .login {
		font-size: 110%;
	}

	#link_bug_nologin {
		display: none;
	}

	.feedback_form, .bug_form, .join_form {
		width: auto;
		margin: 20px 0;	
	}

	.feedback_form .panel, .bug_form .panel, .join_form .panel {
		padding: 0;
	}

	.feedback_form h2, .bug_form h2, .join_form h2 {
		margin: 0 0 10px 0;
	}

	#name, #email {
		width: 100%;
	}

	.registration {
		font-size: 115%;
		margin: 10px 0 0 0;
		padding: 0;
		width: 100%;
	}

	.registration .r_left {
		float: none;
		width: 90%;
		margin: 10px auto;
	}

	.registration .r_right {
		float: none;
	}

	.panel_username input, .panel_password input {
		width: 95%;
		padding: 5px;
	}

	#loginOrRegistration {
		font-size: 19px;
	}

	h2 {
		margin-top: 20px;
	}

	.thumbnails_2 {
		margin: 0;
	}

	.thumbnail_2 {
		width: 270px;
		margin: 0 0 20px 0; 
	}

	.thumbnail_2 .r {
		width: 240px;
		font-size: 130%;
	}

	.thumbnail_2 ol {
		padding-left: 55px;
		width: 170px;
	}

	.shadow {
	}

	.shadow img {
		height: auto;
		width: 220px;
	}

	#footer .left, #footer .bottom_menu, #footer .right {
		font-size: 110%;
		clear: both;
		display: block;
	}

	#footer ul li {
		margin: 0 0 0 30px;
	}


	#scheme {
		width: 100%;
		text-align: center;
	}

	#scheme .shadow {
		margin: 0;
		padding: 20px 0 10px 0;
		background: none;
	}

	#scheme img {
		width: 95%;
		height: auto;
	}

	.tablepart td {
		padding: 15px 3px;
		vertical-align: middle;
	}

	.tablepart img {
		padding: 10px;
		background: #E5EFF4;
	}

	.flash {
		margin: 0 auto;
		width: 225px;
		height: 163px;
	}

	object, embed {
		width: 225px;
		height: 163px;
	}

	.btn {
		width: 100%;
		padding: 10px 0;
	}

	.btn input {
		padding: 10px;
		margin: 0 5px;
		font-size: 120%;
		width: 75px!important;
	}

	#parts {
		height: auto;
		width: auto; 
		overflow: auto;
	}

	.news_list .date, .news_list .post {
		clear: both;
		display: block;
		padding: 0;
		margin: 0;
	}

	#form_search_page, #form_vin_page {
		width: 100%;
		background: #FFF;
		padding: 0 0 30px 0;
		border-bottom: 2px solid #CCC;
	}

	.form_search_result, .form_pre_vin_result, .form_vin_result {
		height: auto; 
		width: auto; 
		overflow: auto;
	}

	.form_search_result i {
		display: block;
	}

	.left50, .left100 {
		width: 100%;
		float: none;
	}

	.panel_permanent {
		padding: 10px 0 15px 0;
	}

	.partners {
		width: auto;
		overflow: auto;
	}
}