/* сброс стилей css, заданных в браузерах по умолчанию, по Эрику Майеру:
http://meyerweb.com/eric/tools/css/reset/index.html
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	/* обнуление границ, отступов, рамок и обводок */
	margin: 0;
	/* снизу добавляется отступ в 3 пикселя */
	padding : 0 0 3px 0;
	border: 0;
	outline: 0;
	/* заимствование стилей шрифта из родительских элементов */
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	/* нормальный размер шрифта по умолчанию */
	font-size: 100%;
	/* выравнивание по базовой линии для всего */
	vertical-align: baseline;
	/* прозрачный фон по умолчанию */
	background: transparent;
}
html {
    overflow: auto;
}
html:not(:nth-child(1)) {
    overflow: visible; /* KHTML сам нарисует скроллинг, не будем ему мешать */
}
html, body {
    width: 100%;
    height: 100%;
}
body{
	/* используемые шрифты */
	font-family: Times, Verdana, Arial, Helvetica, sans-serif;
	/* одинаковый межстрочный интервал по умолчанию */
	line-height: 1;
	/* одинаковый цвет шрифта, отступ, фон по умолчанию */
	color:#000;
	text-indent: 0px;
	/* избегание проблемы центрирования в младших браузерах IE */
	text-align: center;
}
/* удаление маркеров из списка по умолчанию */
ol, ul {
	list-style: none;
	text-align: left;
	text-indent: 0;
}
/* Удаление возможных кавычек (") из цитат <q> и длинных цитат <blockquote>. */
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
/* все элементы в фокусе (на которые перешли, например, Tab'ом) имеют единый вид  */
:focus {
	outline: 0;
}
/* обозначение вставок и удаления */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
input {
	-x-system-font:none;
	border:1pt solid #000;
	color:#000;
	font-family:tahoma;
	font-size:10px;
	font-size-adjust:none;
	font-stretch:normal;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:normal;
	margin:0px 0px 5px;
}
/* Установка 'cellspacing="0"' для таблиц в разметке */
table, caption, th, td {
	/* удаление "двойных границ" у ячеек в таблицах */
	border-collapse: collapse;
	/* цвет фона, стиль рамки, расстояния между ячейками и отступы для таблицы */
	border : 1px solid black;
	margin : 2px;
	padding : 5px;
}
table {
	border : 2px double;
}
caption { 
	text-align: left;
	font-weight:bold;
}
td p {
	text-indent:0;
	line-height:120%;
}
a img { border: none; }
a:active {
	outline: none;
	}
a:focus {
	-moz-outline-style: none;
	}
strong {
	font-weight: bold;
}
/* сброс стилей закончен*/

/* общие стили */
/* увеличение межстрочного интервала в параграфах текста по умолчанию, для удобочитаемости */
p{
	line-height: 1.2;
}
a:link, a:visited {
text-decoration:underline;
color : #666;
font-weight: bold;
}
a:hover, a:active{
text-decoration:none;
}
/* Общая обертка для всей страницы */
#all_wrapper {
	/*Задание минимальной ширины страницы при блочной верстке, чтобы при сужении браузера, информация не съезжала в кучу*/
	width: expression((documentElement.clientWidth||document.body.clientWidth)<980?'980px':''); /* Internet Explorer <= 6.0 */
	min-width: 980px; /* Opera & FireFox & Internet Explorer 7.0 */
	max-width: 1200px;
	width: 100%;
	/* центрирование страницы по горизонтали и расстояния от верхнего и нижнего края */
	margin: 10px auto;
	text-align: left;
    height: auto !important;
    height: 100%; /* для IE6 */
    min-height: 100%;
}
* html #all_wrapper { overflow: visible; } /* для IE6 */
/* Разрыв строки с этим классом используется для очистки плавающих контейнеров с обоих сторон */ 
.brclear { 
	clear:both; 
	height:0; 
	margin:0; 
	font-size: 1px; 
	line-height: 0; 
} 

/* оформление общего заголовка */
	#header{
		width:100%;
		padding:0;
		margin:0;
		clip: rect(auto,auto,auto,auto);
	}
	/* обертка для логотипа и названия сайта */
		#left-corner{
			position:absolute;
			margin:0;
			padding:0;
			text-align:left;
			width: /* 400px */100%;
			z-index: 100;
		}
			/* логотип */
			#logo{
			display: none;
			}
			/*название сайта*/
			#sitename {
				padding:0;
				width: auto;
				margin: 0 4px;
			}
				#sitename h1 a { 
				font-size : 26px;
				font-weight:bold;
				text-decoration: none;
				color: black;
				margin:0;
				padding:0 0 0 440px;
				float:left;
				text-align:left;
				} 
				#sitename h1 a:hover {
				background-color:#FFFFDC;
				} 
		/*девиз*/
		#slogan {
			background:url(images/slogan-bg.gif) no-repeat left top;
			height:158px;
			width:430px;
			float:left;
			margin:0;
			font-weight:bold;
		}
			#slogan h2 {
				position:absolute;
				margin: 140px 0 0 230px;
			}
/********ГОРИЗОНТАЛЬНОЕ МЕНЮ ПОДСАЙТОВ ***********/
#subsitemenu {
	display: none;
}

/* ОСНОВНОЕ СОДЕРЖИМОЕ */
/* общая обертка для основного содержимого */
#wrapper{
	font-family: Times New Roman;
	color:#000;
 	width: 100%;
	float: left;
/* 	margin-left: 240px; */
/*  	padding: 10px; */
	position: relative;
	border-top: solid black;
}
		/* установка основных стилей оформления текста для содержимого сайта */
		#wrapper h1, #wrapper h2, #wrapper h3 { 
			font-weight: bold;
			margin:4px 0 0 0;
		} 
		
		#wrapper h1 { 
			font-size : 16pt;
		} 
		
		#wrapper h2 { 
			font-size : 14pt;
		} 

		#wrapper h3 { 
			font-size : 12pt;
		} 
		#wrapper p {
			font-size : 12pt;
			text-align: justify;
			text-indent: 1.5em;
		}
		#wrapper td, #wrapper  dl,#wrapper label {
			font-size: 10pt;
		}
		#wrapper ol {
			font-size : 12pt;
			list-style: none;
			text-align: left;
			list-style: decimal;
			list-style-position: inside;
			padding: 0 10px;
		}
		#wrapper ul {
			font-size : 12pt;
			list-style: none;
			text-align: left;
			list-style: circle;
			list-style-position: inside;
			padding: 0 10px;
		}		
	/* основные баннеры вверху */
	#main-sub-content{
		display: none;
		text-align : left;
		width: auto;
		padding:0 10px;
	}
	/*местоположение на сайте*/
	.breadcrumb {
	font-size: 12pt;
	margin:4px 0;
	padding: 0px 10px;
	text-align:left;
	border-bottom: dashed black;
	}

	/* название страницы */
	#pagetitle {
		color:#666666;
		text-align:left;
		font-weight:bold;
		font-size : 100%;
		margin:4px 0 0 0;
		padding:0 10px;
	}
	/*основное содержимое*/
 	#main_content{
		padding:0 10px;
	}
	
/* ЛЕВАЯ БОКОВАЯ ЧАСТЬ */
/* общая обертка для левой части */
#left-wrapper {
	/* обязательное включение ширины! */
	width: 100%;
	border-top: dashed black;
	text-align:left;
	float: left;
}
	
/* МЕНЮ СЛЕВА */
/* обертка для всего меню */
#menu-wrapper{/*for ie6*/
display: none;
padding:0;
background:url(images/nav-bg.jpg) top center repeat-y;
}
/* основное */
	/*блок поиска*/
	#search{
	display: none;
		margin:2px;
		font-size: 90%;
		color : #666666;
		float:none;
	}
	/*содержимое слева*/
	/*банныеры слева*/
	#left-sub-content {
		display: none;
	}

/* ПРАВАЯ БОКОВАЯ ЧАСТЬ */
/* общая обертка для правой части */
#right-wrapper {
	float: left;
	/* обязательное включение ширины! */
	width: 100%;
	text-align:left;
	border-top: dashed black;
}
/* БЛОК РЕГИСТРАЦИИ НА САЙТЕ */
#login {
	display: none;
}
	/*содержимое справа*/
	#right {
		margin : 0;
		text-align : left;
		padding: 10px;
	} 
	/*банныеры справа*/
	#right-sub-content {
		display: none;
	} 

/* нижний колонтитул */
#footer {
	margin: 0;
	width: 100%;
	padding: 10px 0;
	text-align: center;
	clear:both;
}
/* навигация снизу */
.bottom-nav {
	display: none;
}
/* авторские права */
.copyright {
	font-size: 12pt;
	color: #fff;
	padding:5px 0 5px 0;
	margin:0;
	text-align:center;
	background-color:#000;
}
.copyright a {
	color: #fff;
	font-size: 12pt;
	text-transform: uppercase;
	text-decoration: none;
}
.contact {
	font-size:12pt;
	color: #fff;
	background-color:#000;
}



/*******************************************/
/************* Стили для расширений*************/
/*******************************************/
