/* =============== reset.css =============== */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, em, img, strong, sub, sup, b, u, i,  dl, dt, dd, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;                               /* обнуляем отступы и убираем бордюры */
	vertical-align: baseline;          /* приводим все к одной базовой линии */
	background: transparent;      /* чтобы не проскакивали левые фоны, установленные по умолчанию */
	font-size: 100%;                     /* размер шрифта всем одинаковый */
}
a {                                      	     /* ссылка не в общем списке чтобы не сбрасывать outline по умолчанию */
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
table {						/* устраняем отступы между ячейками таблицы */
	border-collapse: collapse; 
	border-spacing: 0;
}
td, td img {
	vertical-align: top;			/* возвращаем привычное вертикальное выравнивание */
} 
input, select, button, textarea {
	margin: 0; 				/* убираем отступы по умолчанию для элементов форм (в частности для checkbox и radio) */
	font-size: 100%; 			/* делаем размер шрифтов везде одинаковым */
}
input[type="text"], input[type="password"], textarea {
	padding: 0; 				/* убираем внутренние отступы для текстовых полей */
}
input[type="checkbox"] { 		/* вертикальное выравнивание чекбоксов и радиобатонов относительно меток */
	vertical-align: bottom;
}
input[type="radio"] {
	vertical-align: text-bottom;
}
sub {
	vertical-align: sub;
	font-size: smaller;
}
sup {
	vertical-align: super;
	font-size: smaller;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display:block;
}
nav ul {
	 list-style:none;
}
/* =============== END reset.css =============== */

/* =============== STURT базовые настройки =============== */
html {
	overflow-y: scroll; /* всегда показываем вертикальную полосу прокрутки  */
	min-width: 1000px;
}
html, body {
	height: 100%; /* чтобы подвал книзу можно было прижать */
}
body {
	line-height: 1;
	background: #fff;
	color: #000;
	text-align: left;
	font: 18px Tahoma, "Century Schoolbook L", Serif; /* используем безопасные шрифтовые CSS стеки */
}
input, select, button, textarea {
	font-family: Tahoma, "Century Schoolbook L", Serif; /* чтобы шрифт был такой же как и везде */
}
label, input[type="button"], input[type="submit"], button {
	cursor: pointer; /* курсор в виде руки для всех кликабельных элементов форм */
}
a, a:visited { /* порядок правил для ссылок имеет значение */
	color: #287fc3;
	text-decoration: underline;
}
a:hover {
	color: #287fc3;
	text-decoration: none;
}
a:focus, a:active {
	color: #287fc3;
	text-decoration: underline;
}
span.text-white {
	color: #fff;
}

/* =============== END базовые настройки =============== */

/* =============== STURT Global wrapper's =============== */
body {
	background: url(../img/bg-wrapper.jpg);
}
.main-wrapper {
	min-height: 100%;
	position: relative;
}
	.header-wrapper {
		height: 97px;
		width: 100%;
		background: url(../img/bg-header2.jpg) left top repeat-x;
		position: relative;
		box-shadow: 0 3px 4px rgba(0,0,0,0.5);
		-webkit-box-shadow: 0 3px 4px rgba(0,0,0,0.5);
		-moz-box-shadow: 0 3px 4px rgba(0,0,0,0.5);
		-o-box-shadow: 0 3px 4px rgba(0,0,0,0.5);
		z-index: 100;

	}
	.content-wrapper {
		padding-bottom: 132px;
		position: relative;
	}
	.footer-wrapper {
		position: absolute;
		height: 132px;
		left: 0;
		bottom: 0;
		width: 100%;
		background: url(../img/bg-footer.jpg) left top repeat-x;
	}
	.footer-wrapper:before {
		content: '';
		position: absolute;
		display: block;
		left: 0;
		top: -5px;
		width: 100%;
		height: 5px;
		background: url(../img/shadow-hd.png) left top repeat-x;
		z-index: 110;
	}
/* =============== END Global wrapper's =============== */

/* =============== STURT .header-wrapper =============== */
.header {
	width: 960px;
	height: 97px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
	background: url(../img/light-nav.png) 310px top no-repeat;
}
.header a.logo {
	text-indent: -9999px;
	height: 237px;
	width: 156px;
	display: block;
	background: url(../img/logo.png) left top no-repeat; 
	position: absolute;
	top: 0;
	left: 20px;
	z-index: 100;
}
.header-nav {
	overflow: hidden;
}
	.header-nav ul {
		float: right;
		height: 40px;
		padding-top: 27px;

	}
	.header-nav ul li {
		display: inline-block;
		width: 120px;
		height: 40px;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		font-family: Tahoma;
		/* эмуляция inline-block для IE6-7*/
        //display : inline;
	    //zoom : 1;
	    background: url(../img/nav-divisior.png) right top no-repeat;
	}
	.header-nav ul li a {
		display: inline-block;
		text-align: left;
		text-decoration: none;
		color: #fff;
	}
	.header-nav ul li a:hover {
		color: orange;
	}
	.header-nav ul li.active a {color: orange;}
	.header-nav ul li.last2 {
		background: none;
	}
	
/* =============== END .header-wrapper =============== */

/* =============== STURT .footer-wrapper =============== */
.footer {
	width: 960px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
}
.footer h4 {
	font-size: 32px;
	text-indent: -99999px;
	background: url(../img/contacts.png) left top no-repeat;
	margin: 15px 0 0 15px;
	height: 32px;
}
.footer ul {
	margin-left: 15px;
	margin-top: 5px;
	height: 60px;
}
	.footer ul li {
		display: inline-block;
		height: 60px;
		padding-left: 60px;
		color: #E66329;
		font-size: 20px;
		margin-right: 57px;
		vertical-align: top;
		/* эмуляция inline-block для IE6-7*/
	    //display : inline;
		//zoom : 1;
	}
	.footer ul li.phone {
		background: url(../img/icons/phone.png) left top no-repeat;
		line-height: 60px;
	}
	.footer ul li.mail {
		background: url(../img/icons/mail.png) left top no-repeat;
		line-height: 60px;

	}
	.footer ul li.icq {
		background: url(../img/icons/icq.png) left top no-repeat;
		line-height: 60px;
	}
/* =============== END .footert-wrapper =============== */

/************************
//PAGES
*************************/

/*Main or Home page*/
.main-content {
	width: 960px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
	padding-top: 36px;
	background: url(../img/head.png) 480px bottom no-repeat;
}
div.entry {
	width: 410px;
}
h1.our-decision {
	display: block;
	text-indent: -99999px;
	background: url(../img/slogan.png) 185px top no-repeat;
	height: 72px;
	margin-bottom: 50px;
}
h2.slogan {
	display: block;
	width: 380px;
	height: 98px;
	background: url(../img/grey-box.jpg) left top no-repeat;
	margin-bottom: 36px;
	font-size: 26px;
	color: #fff;
	text-shadow: 1px 1px 1px #333;
	font-weight: normal;
	padding-left: 20px;
	padding-top: 18px;
	line-height: 28px;
}
div.entry h3 {
	font-weight: bold;
	color: #2F3220;	
}
div.entry p {
	color: #666;
	margin-bottom: 20px;
}

/*Site page*/
.site-content {
	width: 960px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
	z-index: 1;
}
div.services-wrap {
	background: url(../img/tree.jpg) left top no-repeat;
	position: relative;
	overflow: hidden;
	min-height: 775px;
	margin-bottom: 10px;
}
	div.services {
		float: right;
		width: 215px;
		background: url(../img/bg-services.jpg) left top repeat-y;
		margin-top: 55px;
		padding-left: 5px;
		padding-bottom: 15px;
	}
	div.services img {
		margin-top: 15px;
		margin-bottom: 10px;
	}
	div.services h2 {
		font-size: 16px;
		color: #fff;
		padding-left: 5px;
		margin-bottom: 5px;
	}
	div.services ul {
		list-style: none;
		padding-left: 5px;
	}
	div.services ul li {
		color: #fff;
		font-size: 16px;
	}
div.services-wrap h1 {
	font-size: 26px;
	color: #fff;
	text-shadow: 1px 1px 1px #333;
	height: 40px;
	margin-left: 187px;
	line-height: 40px;
	background: url(../img/bg-portf.jpg) left top repeat-x;
	padding-left: 15px;
	padding-right: 15px;
	margin-top: 40px;
	font-weight: normal;
	position: absolute;
}
div.graf h2 {
	font-size: 28px;
	color:#939079;
	margin-bottom: 25px;
	text-align: center;
	text-decoration: underline;
}
div.graf img {
	margin: 0 0 30px 45px;
}

/*Design Page*/
.design-content {
	width: 960px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
	z-index: 1;
	background: url(../img/irland.jpg) 40px top no-repeat;
	min-height: 660px;
}
.design-content h1 {
	color: #353722;
	margin-left: 270px;
	padding-top: 130px;
	font-size: 26px;
}

/*Portfolio Page*/
.portfolio-content {
	width: 960px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
	z-index: 0;
	padding-top: 1px;
}
.portfolio-content h1 {
	font-size: 36px;
	color: #fff;
	text-shadow: 1px 1px 1px #333;
	height: 67px;
	margin-left: 187px;
	line-height: 64px;
	background: url(../img/bg-portf.jpg) left top repeat-x;
	padding-left: 15px;
	margin-top: 20px;
	font-weight: normal;
	margin-bottom: 40px;
}
div.portfolio-list {
	margin-bottom: 40px;
}
div.portfolio-list .left {
	padding-left: 15px;
	padding-right: 490px;
}
	div.portfolio-list .left div.img {
		position: absolute;
		top: 30px;
		right: 5px;
	}
div.portfolio-list .right {
	padding-right: 5px;
	padding-left: 500px;
}
	div.portfolio-list .right div.img {
		position: absolute;
		top: 30px;
		left: 0;
	}
div.portfolio-row {
	width: 450px;
	min-height: 270px;
	position: relative;
	padding-top: 40px;
	border-bottom: 2px dashed #7E835E;
	padding-bottom: 40px;
}
	div.portfolio-row h2, .portfolio-content h2 {
		color: #6C724B;
		font-size: 24px;
		line-height: 26px;
		margin-bottom: 10px;
	}
	div.portfolio-row p {
		font-size: 14px;
		margin-bottom: 10px;
	}
	div.portfolio-row div.img {
		width: 450px;
		height: 243px;
		background: url(../img/collag.jpg) left top no-repeat;
		padding-left: 24px;
		padding-top: 31px;
	}
	div.portfolio-row a.buttom {
		display: inline-block;
		height: 37px;
		line-height: 37px;
		background: url(../img/buttom.jpg);
		font-size: 20px;
		color: #fff;
		padding: 0 12px;
		text-decoration: none;
		margin-top: 20px;
	}
	div.portfolio-row a.buttom:hover  {
		background: #ccc;
	}
	div.portfolio-row ul li {
		list-style: none;
		font-size: 14px;
	}
	div.portfolio-row a {
		color: #000;
	}
div.portfolio-list .last {
	border-bottom: none;
}

/*About page*/
.about-content {
	width: 960px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
	background: url(../img/about.jpg) 200px 35px no-repeat;
	height: 750px;
}

/* Portfolio Item Page */
.portfolio-content h2.namePage {
	margin-left: 40px;
	text-align: left;
	padding-bottom: 10px;
	text-decoration: underline;
}
.portfolio-content p.portf-item {
	text-align: center;
	margin-bottom: 20px;
}
.portfolio-content p.portf-item img {
	width: 600px;
}
.portfolio-content h1.headerPortfItem {
	font-size: 36px;
	background: none;
	color: #666;
	text-shadow: 1px 1px 1px #fff;
	line-height: 36px;
	padding-top: 30px;
}