/* Import HTML5 boilerplate */
@import url("reset.css");

/* Fonts */
@import url(http://fonts.googleapis.com/css?family=Droid+Sans:400,700|Droid+Serif:400italic|Open+Sans:300,700);

/* Styles */

html {
	height: 100%;
}

body {
	color: #333;
	font-size: 12px;
	line-height: 180%;
	height: 100%;
	margin: 0;
	padding: 0;
	background:#000;
}
	body.black:after {
		content: "";
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background:	url("") no-repeat;
	}
a, a:visited {
	color: red;
	text-decoration: underline;
	font-weight: bold;
}
	a:hover {
		text-decoration: none;
	}

nav {
	z-index: 20;
	width: 100%;
	background: no-repeat center;
}
	.black nav {	
		background-image: url(../img/nav_black.png);

	}
		.black nav li a {
			color: gold;
			text-shadow: 0px 1px 1px #000;
		}
	.white nav {	
		background-image: url(../img/nav_white.png);
	}
		.white nav li a {
			color: #333;
			text-shadow: 0px 1px 1px #fff;
		}
	nav ul {
		padding-top: 30px;
		height: 60px;
		text-align: center;
	}
	nav li {
		display: inline-block;
		float: none;
		margin: 0 5px;
		background: transparent;
	}
		nav a, nav a:visited {
			display: inline-block;
			line-height: 30px;
			color: #fff;
			font-size: 23px;
			padding: 0 20px;
			text-decoration: none;
			-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;		
		}
			nav li a.selected, nav li:hover a {
				color: yellow;
				background-color: rgba(0,0,0,0.3);
				text-shadow: 0px 2px 2px #000;
				-webkit-transition: background-color 0.2s; -moz-transition: background-color 0.2s; -o-transition: background-color 0.2s; transition: background-color 0.2s;
				-moz-box-shadow: 0px 1px 2px #000; -webkit-box-shadow: 0px 1px 2px #000; box-shadow: 0px 1px 2px #000;
			}
	nav.sticked {
		height: 90px;
		margin-bottom: 40px;
	}
		.black nav.sticked {
			background-image: url(../img/nav_sticked_black.png);
		}
		.white nav.sticked {
			background-image: url(../img/nav_sticked_white.html);
		}
	nav.sub {
		width: 820px;
		background: transparent;
		height: 35px;
		margin: -10px auto 30px auto;
	}
		nav.sub ul {
			background: rgba(0,0,0,0.5);
			width: auto;
			height: 35px;
			line-height: 35px;
			display: inline-block;
			float: left;
			padding: 0 5px;
			height: 35px;
			-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
		}
			nav.sub li {
				margin: 0;
			}
				nav.sub li a {
					font-weight: normal;
					font-size: 12px;
					padding: 0 10px;
					line-height: 25px;
					color: #fff;
					text-shadow: 0px 1px 1px #000;
				}
				nav.sub li a.selected, nav.sub li:hover a {
					background: rgba(255,255,255,0.1);
					text-shadow: 0px 2px 2px #000;
					-moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
				}
	
	nav.side {
		position: relative;
		background: transparent;
		margin: 0 auto;
		width: 860px;
		height: auto;
	}
		nav.side .previous, nav.side .next {
			display: inline-block;
			width: 20px;
			height: 26px;
			margin-top: 0;
			padding: 0;
			background: url("../img/controls.png");
		}
			nav.side .previous {
				float: left;
				background-position: 0px 0px;
			}
				nav.side .previous:hover {
					background-position: 0px -26px;
				}
			nav.side .next {
				float: right;
				background-position: 0px -52px;
			}
				nav.side .next:hover {
					background-position: 0px -78px;
				}

.back, .back:visited {
	display: inline;
	float: right;
	background-color: rgba(0,0,0,0.0);
	height: 25px;
	line-height: 25px;
	padding: 0 10px;
	color: gold;
	font-weight: normal;
	text-decoration: none;
	text-align: right;
	font-size: 12px;
	margin-top: 10px;
	-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
}
	.back img {
		vertical-align: middle;
		border: 0px;
		margin-right: 5px;
	}

#container {
	position: absolute;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
}

hr {
	border-top: 1px solid #eee;
	margin: 35px 0;
}

p {
	margin: 0 0 8px 0;
	color: black;
}

i {
	margin: 0 0 8px 0;
	color: black;
}

u {
	margin: 0 0 8px 0;
	color: black;
}

small {
	margin: 0 0 8px 0;
	color: black;
}

section {
	width: 100%;
	height: 100%;
	position: relative;
	display: none;
	vertical-align: middle;
	text-align: center;	
}
	section.home, section.selected {
		display: table;
	}
	section .content {
		position: relative;
		display: table-cell;
		vertical-align: middle;
		text-align: center;
	}
	section * {
		text-align: justify;
	}
	/*section:before {
		content: "";
		display: block;
		height: 150px;
	}
		section:first-child:before {
			display: none;
		}*/
h1 {
	font-size: 13px;
	color: #ff0036;
	font-weight: bold;
	width: 820px;
	text-align: center;	
	margin: 0 auto 30px 20px;
}
h2 {
	font-size: 40px;
	font-weight: 300;
	color: #ff0036;
	margin-bottom: 60px;
	line-height: 40px;
	text-shadow: 0px 1px 1px #000;
	width: 820px;
	margin: 0 auto 50px auto;
}
h3 {
	font-size: 13px;
	color: #ff0036;
	font-weight: bold;
	width: 820px;
}

h4 {
	font-size: 40px;
	font-weight: 300;
	color: #ff0036;
	letter-spacing: 2px;
	margin: 0;
	line-height: 0px;
	text-align: left;
	text-shadow: 0px 1px 1px #000;
}

h5 {
	font-size: 13px;
	color: #ff0036;
	font-weight: bold;
	width: 820px;
	margin: 0 auto 30px 20px;
}

h6 {
	font-size: 13px;
	color: #ff0036;
	font-weight: bold;
	width: 820px;
	margin: 0 auto 30px auto;
}

P.blocktext {
    margin-left: auto;
    margin-right: auto;
	text-align: center;
}

.autoplay {
	width: 830px;
	margin: 0 auto;
	padding: 0px;
	color: #fff;
	-webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px;
	-moz-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
}

.about {
	width: 840px;
	margin: 0 auto;
	padding: 30px;
	color: #fff;
	background:	url("../img/bg.jpg") repeat;
	-webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px;
	-moz-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
}

.intro {
	width: 850px;
	margin: 0 auto;
	padding: 30px;
	text-align: center;	
	color: #fff;
	background:	url("../img/bg3.jpg") repeat;	
	-webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px;
	-moz-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
}

.shop {
	width: 840px;
	margin: 0 auto;
	padding: 30px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	background:	url("../img/bg2.jpg") repeat;
	-webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px;
	-moz-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
}

IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto; }

	.quote {
		width: 280px;
		float: right;
		margin-left: 40px;
		color: #666;
	}
		blockquote {
			font-style: italic;
			background-color: #f2f2f2;
			padding: 15px 20px;
			margin: 0;
			text-align: left;
			-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
		}
		.quote span {
			display: block;
			text-align: right;
			font-weight: bold;
		}
			.quote span:before {
				content: "";
				display: block;
				width: 0px;
				height: 0px;
				border: solid;
				border-width: 10px 15px 0px 0px;
				border-color: #f2f2f2 transparent;
				position: relative;
				left: 240px;
				margin-bottom: 5px;
			}

.portfolio {
	width: 820px;
	margin: 0 auto;
}
	.portfolio li {
		list-style: none;
		display: block;
		float: left;
		margin: 0 20px 20px 0;
		width: 125px;
		}
		.gallery li {
			width: 190px;
		}
		.portfolio li {
			position: relative;	
		}
			.portfolio li img:after {
				opacity: 0;
			}
			.portfolio li img:hover:after {
				content: "";
				display: block;
				float: left;
				width: 100%;
				height: 100%;
				left: 0;
				top: 0;
				position: absolute;
				opacity: 1;
				background: rgba(255,255,255,0.1) url("../img/icons/zoom.png") no-repeat center;
				-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
				-webkit-transition: opacity 0.2s; -moz-transition: opacity 0.2s; -o-transition: opacity 0.2s; transition: opacity 0.2s;
			}
		.portfolio li.last {
			margin-right: 0;
		}
		.portfolio a {
			text-decoration: none;
		}
		.portfolio img {
			display: block;
		}
		.portfolio span {
			display: inline-block;
			background: rgba(0,0,0,0.5);
			height: 30px;
			line-height: 30px;
			padding: 0 15px;
			float: right;
			margin-top: -29px;
			z-index: 20;
			position: relative;
			color: #fff;
			font-weight: normal;
			text-shadow: 0px 0px 4px #000;
		}
		.portfolio h3 {
			font-size: 12px;
			margin: 20px 20px 0 20px;
		}
		.portfolio p {
			margin: 10px 20px 20px 20px;
		}
		.top {
			position: relative;
			display: block;
			-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3); -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3); box-shadow: 0px 1px 2px rgba(0,0,0,0.3);;	
		}
			.top img {
				display: block;
			}
			.top img:after {
				opacity: 0;
			}
			.top img:hover:after {
				content: "";
				display: block;
				float: left;
				width: 100%;
				height: 100%;
				left: 0;
				top: 0;
				position: absolute;
				opacity: 1;
				background: rgba(255,255,255,0.1) url("../img/icons/zoom.png") no-repeat center;
				-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
				-webkit-transition: opacity 0.2s; -moz-transition: opacity 0.2s; -o-transition: opacity 0.2s; transition: opacity 0.2s;
			}

.contact {
	width: 900px;
	margin: 0 auto;	
	background:	url("../img/bg.jpg") repeat;	
	-webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px;
	-moz-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
}
	.contact .left {
		width: 400px;
		margin: 30px;	
		float: left;
		color: #fff;
	}
		.contact .left p {
		}
			.contact .left .info {
				margin-bottom: 20px;
			}
			.contact .left p img {
				vertical-align: middle;
				margin-right: 15px;
			}
	.contact .right {
		width: 400px;
		margin: 30px 30px 30px 0;
		float: left;
		color: #fff;
	}

.catalog {
	width: 820px;
	margin: 0 auto;
}
	.catalog article {
		width: 133px;
		margin-right: 20px;
		margin-bottom: 20px;
		background:	url("") repeat;
		display: block;
		float: center;
		-webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px;
		-moz-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); box-shadow: 0px 0px 0px rgba(0,0,0,0.0);	
	}
		.catalog article.last {
			margin-right: 0;
		}
		.catalog article h3 {
			font-size: 12px;
			margin: 20px 20px 0 20px;
		}
			.catalog article h3 a {
				text-decoration: none;
			}
		.catalog article .meta {
			display: block;
			margin: 3px 20px 5px 20px;
			color: white;
		}
		.catalog article p {
			margin: 20px;
			color: white;
		}
		.catalog article {
			width: auto;
		}
	.catalog article {
		width: 800px;
		height: 100%;
		margin-right: 20px;
	}
	.catalog_gallery {
		width: 900px;
		float: none;
	}
		.catalog_gallery li {
			list-style: none;
			width: 110px;
			margin-bottom: 20px;
			margin-right: 40px;
			display: block;
}
			.catalog_gallery li a {
				display: block;
			}
				.catalog_gallery li img {
					display: block;
				}
							

.pages {
	overflow: hidden;
	width: 860px;
}
	.pages_content {
		position: relative;
		width: 99999px;
	}
		.page {
			float: left;
			margin-right: 100px;
		}
		
		
		
		
		
.catalogs {
	width: 820px;
	margin: 0 auto;
}
	.catalogs article {
		width: 133px;
		margin-right: 0px;
		margin-bottom: 0px;
		background-color: ;
		display: block;
		float: left;
		-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
		-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.7); -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.7); box-shadow: 0px 2px 2px rgba(0,0,0,0.7);	
	}
		.catalogs article.last {
			margin-right: 0;
		}
		.catalogs article h3 {
			font-size: 12px;
			margin: 20px 20px 0 20px;
		}
			.catalogs article h3 a {
				text-decoration: none;
				color: #fff;
			}
		.catalogs article .meta {
			display: block;
			margin: 3px 20px 0 20px;
			color: #999;
		}
		.catalogs article p {
			margin: 20px;
		}
		.catalogs article {
			width: auto;
		}
		
		

<style type="text/css">
table.gridtable {
	font-family: verdana,arial,sans-serif;
	font-size:11px;
	color:#fff;
	border-width: 0px;
	border-color: #666666;
	border-collapse: collapse;
}
table.gridtable th {
	border-width: 0px;
	padding: 8px;
	width: 820px;
	color:#000;
	text-align: center;
	font-weight: 100;
	background:	url("../img/back1.png") repeat;
	-webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;
	-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.7); -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.7); box-shadow: 0px 2px 2px rgba(0,0,0,0.7);		
}
</style>


	.catalog1_gallery {
		width: 820px;
		float: none;
	}
		.catalog1_gallery li {
			list-style: none;
			width: 820px;
			margin-bottom: 20px;
			display: block;
			background-color: #000;
			-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
			-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.7); -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.7); box-shadow: 0px 2px 2px rgba(0,0,0,0.7);	
		}
			.catalog1_gallery li a {
				display: block;
			}
				.catalog1_gallery li img {
					display: block;
				}
				
.list {
	width: 820px;
	margin: 0 auto;	
	background:	url("") repeat;	
	-webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px;
	-moz-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.0); box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
}
	.list .left {
		width: 365px;
		margin: 30px;	
		float: left;
		color: #fff;
	}
		.list .left p {
		}
			.list .left .info {
				margin-bottom: 20px;
			}
			.list .left p img {
				vertical-align: middle;
				margin-right: 15px;
			}
	.list .right {
		width: 365px;
		margin: 30px 30px 30px 0;
		float: left;
		color: #fff;
	}