@charset "utf-8";

@font-face {
	font-family: "Post-it Penscript";
	src: url(/_v0.1/fonts/postit-penscript.otf);
}

@font-face {
	font-family: Niconne;
	src: url(/_v0.1/fonts/Niconne-Regular.ttf);
}

/* Base tags: */

*{
	padding: 0;
	border: 0;
	margin: 0;
}

body {
	width: auto;
	margin: 0 auto;
	font-family: Georgia, serif;
	font-size: 16px;
	line-height: 1.5em;
	color: rgb(64, 0, 0);
	background: rgb(238, 221, 173) url(/img/bg.jpg) repeat top left;
}

a {
	text-decoration: none;
	color: rgb(170, 51, 0);
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
}

a:link
a:visited { color: rgb(170, 51, 0); }
a:hover,
a:active { color: rgb(221, 51, 0); }

ul {
	list-style-type: disc;
	list-style-image: url(/_v0.1/img/bullet_16.png);
	list-style-position: inside;
}

ul.lv2 {
	list-style-image: none;
	list-style-type: disc;
}

li.sel { color: rgb(153, 51, 0); }

.hidden { display: none !important; }

@media screen and (max-width: 1300px) {
	body { font-size: 14px; }
}

@media screen and (max-width: 650px) {
	body { font-size: 12px; }
}

/* Headers: */

h1, h2, h3 {
	color: rgb(153, 51, 0);
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
}

h1 { font-size: 24px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }

@media screen and (max-width: 1300px) {
	h1 { font-size: 20px; }
	h2 { font-size: 18px; }
	h3 { font-size: 16px; }
}

@media screen and (max-width: 900px) {
	h1 {
		padding-top: 5px;
		font-size: 18px;
	}

	h2 { font-size: 14px; }
	h3 { font-size: 12px; }
}

/* Form controls: */

form { display: block; }
fieldset { min-width: 0; }

label {
	display: inline-block;
	max-width: 100%;
}

input,
textarea,
select {
	padding-left: 3px;
	box-sizing: border-box !important;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: rgb(64, 0, 0);
	border: rgb(64, 0, 0) 1px solid;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search],
textarea {
	display: block;
	width: 100%;
	margin-bottom: 6px;
	outline: none;
	cursor: text;
}

input[type=email] { text-transform: lowercase; }

input[type=checkbox] {
	float: left;
	margin-right: 5px;
	margin-top: 5px;
	cursor: pointer;
}

textarea {
	overflow: auto;
	resize: none !important;
}

input.alert,
textarea.alert,
select.alert { background: rgb(255, 255, 153); }

/* Spacing: */

.spc {
	display: block;
	clear: both;
	height: 1px;
}

.spc.s2 { height: 2px; }
.spc.s5 { height: 5px; }
.spc.s10 { height: 10px; }
.spc.s15 { height: 15px; }
.spc.s20 { height: 20px; }
.spc.s25 { height: 25px; }
.spc.s50 { height: 50px; }
.spc.fill { background-color: rgb(102, 51, 0); }

/* Floats: */

.flt_l { float: left; }
.flt_r { float: right; }

/* Borders: */

.brd {
	border-top: rgb(64, 0, 0) 1px dotted;
	border-bottom: rgb(64, 0, 0) 1px dotted;
}

.rnd {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
}

@media screen and (max-width: 900px) {
	.rnd {
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		-khtml-border-radius: 5px;
	}
}

/* Text modifiers: */

.caption { font-size: 12px; }
.warning { color: rgb(220, 0, 0); }

.quote::before {
	content: url(/_v0.1/img/quote_24.png);
	margin-right: 5px;
}


@media screen and (max-width: 900px) {
	.caption { font-size: 10px; }
}

/* Spans: */

span.bullet {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 5px;
	background: url(/_v0.1/img/bullet_16.png) no-repeat top left;
}

span.btn {
	display: block;
	margin-top: 5px;
	width: 100px;
	height: 23px;
	font-weight: bolder;
	font-size: 12px;
	text-align: center;
	background: rgb(102, 51, 0);
	box-shadow: 0px 2px 5px 0px rgba(235, 0, 0, 0.5);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	transition: background 1s ease-in-out;
	-webkit-transition: background 1s ease-in-out;
	-o-transition: background 1s ease-in-out;
	-moz-transition: background 1s ease-in-out;
}

span.btn:hover,
span.btn:active { background: rgb(153, 51, 0); }

span.btn+span.btn {
	margin-left: 5px;
	margin-right: 0;
}

span.btn.flt_r+span.btn.flt_r {
	margin-left: 0;
	margin-right: 5px;
}

span.btn a {
	display: block;
	width: 100%;
	height: 100%;
	color: rgb(255, 153, 0);
}

span.btn a:link,
span.btn a:visited { color: rgb(255, 153, 0); }
span.btn a:hover,
span.btn a:active { color: rgb(255, 204, 0); }

span.tab {
}

@media screen and (max-width: 1300px) {
	span.btn {
		width: 100%;
		height: 22px;
		padding-top: 3px;
	}
}

@media screen and (max-width: 900px) {
	span.btn { padding-top: 5px; }
}

/* Page sections: */

.wrap {
	margin: 0 auto;
	width: 1200px;
}

.head {
	width: 1200px;
	height: 255px;
	background: url(/_v0.1/img/bg/bg_head_1200.png) no-repeat bottom center;
	z-index: 1000 !important;
}

.head .title {
	position: absolute;
	height: 104px;
	width: 470px;
	margin-top: 45px;
	margin-left: 60px;
	background: url(/_v0.1/img/bg/bg_title_470.png) no-repeat top center;
}

.page {
	padding: 0 90px 10px 80px;
	background: url(/_v0.1/img/bg/bg_page_1200.png) repeat-y top center;
}

.foot {
	height: 203px;
	padding: 52px 0 0 60px;
	background: url(/_v0.1/img/bg/bg_foot_1200.png) no-repeat top center;
	margin-top: -10px;
}

@media screen and (max-width: 1300px) {
	.wrap { width: 800px; }

	.head {
		width: 800px;
		height: 170px;
		background: url(/_v0.1/img/bg/bg_head_800.png) no-repeat bottom center;
	}

	.head .title {
		height: 69px;
		width: 313px;
		margin-top: 30px;
		margin-left: 40px;
		background: url(/_v0.1/img/bg/bg_title_313.png) no-repeat top center;
	}

	.page {
		padding: 0 60px 10px 50px;
		background: url(/_v0.1/img/bg/bg_page_800.png) repeat-y top center;
	}

	.foot {
		height: 135px;
		padding: 32px 0 0 40px;
		background: url(/_v0.1/img/bg/bg_foot_800.png) no-repeat top center;
	}
}

@media screen and (max-width: 900px) {
	.wrap { width: 600px; }

	.head {
		width: 600px;
		height: 128px;
		background: url(/_v0.1/img/bg/bg_head_600.png) no-repeat bottom center;
	}

	.head .title {
		height: 52px;
		width: 235px;
		margin-top: 22px;
		margin-left: 30px;
		background: url(/_v0.1/img/bg/bg_title_235.png) no-repeat top center;
	}

	.page {
		padding: 0 45px 10px 40px;
		background: url(/_v0.1/img/bg/bg_page_600.png) repeat-y top center;
	}

	.foot {
		height: 101px;
		padding: 21px 0 0 30px;
		background: url(/_v0.1/img/bg/bg_foot_600.png) no-repeat top center;
	}
}

@media screen and (max-width: 650px) {
	.wrap { width: 400px; }

	.head {
		width: 400px;
		height: 85px;
		background: url(/_v0.1/img/bg/bg_head_400.png) no-repeat bottom center;
	}

	.head .title {
		height: 34px;
		width: 156px;
		margin-top: 17px;
		margin-left: 20px;
		background: url(/_v0.1/img/bg/bg_title_156.png) no-repeat top center;
	}

	.page {
		padding: 35px 28px 10px 25px;
		background: url(/_v0.1/img/bg/bg_page_400.png) repeat-y top center;
	}

	.foot {
		height: 67px;
		padding: 12px 0 0 20px;
		background: url(/_v0.1/img/bg/bg_foot_400.png) no-repeat top center;
	}
}

/* Main menu: */

.head .menu-btn {
	display: none !important;
	position: absolute;
	width: 25px;
	height: 25px;
	text-align: center;
  	cursor: pointer;
	color: rgb(255, 153, 0);
	background: rgb(102, 51, 0);
}

.head .menu-btn.sel { color: rgb(255, 153, 0); }

.menu {
	position: absolute;
	margin-top: -30px;
	width: 1030px;
	font-weight: bold;
	z-index: 1000 !important;
}

.menu ul {
	display: block;
	width: 1030px;
	height: 30px;
	list-style: none;
	background: rgb(102, 51, 0);
	overflow: hidden;
}

.menu ul li {
	display: inline !important;
	width: 120px;
	height: 30px;
}

.menu a {
	display: block;
	float: left;
	width: 120px;
	height: 25px;
	padding-top: 5px;
	text-align: center;
	color: rgb(255, 153, 0);
}

.menu a:link,
.menu a:visited { color: rgb(255, 153, 0); }
.menu a:hover,
.menu a:active { color: rgb(255, 204, 0); }

.menu li.sel a {
	color: rgb(255, 153, 0);
	background: url(/_v0.1/img/menu_sel_30.png) repeat-x bottom;
}

@media screen and (max-width: 1300px) {
	.menu { width: 690px; }

	.menu ul {
		width: 690px;
		height: 30px;
	}

	.menu ul li { width: 90px; }

	.menu a {
		width: 90px;
		height: 24px;
		padding-top: 6px;
		font-size: 12px;
	}
}

@media screen and (max-width: 900px) {
	.head .menu-btn {
		display: block !important;
		margin-top: 97px;
		margin-left: 530px;
	}

	.menu {
		display: none !important;
		width: 120px;
		margin-top: -4px;
		margin-left: 395px;
		padding: 0;
	}

	.menu.open { display: block !important; }

	.menu ul {
		width: 120px;
		height: 210px;
	}

	.menu ul li {
		display: block !important;
		clear: both;
		width: 120px;
	}

	.menu a {
		width: 120px;
		height: 24px;
		padding-top: 6px;
		font-size: 12px;
	}
}

@media screen and (max-width: 650px) {
	.head .menu-btn {
		margin-top: 83px;
		margin-left: 344px;
	}

	.menu {
		margin-top: -10px;
		margin-left: 226px;
	}
}

/* User session controls: */

.head .session {
	display: block !important;
	position: absolute;
	width: 200px;
	height: 25px;
	margin-top: 65px;
	margin-left: 785px;
	text-align: right;
	font-weight: bolder;
}

.head .session a,
.head .session a:link,
.head .session a:visited { color: rgb(67, 0, 0); }
.head .session a:hover,
.head .session a:active { color: rgb(170, 51, 0); }

@media screen and (max-width: 1300px) {
	.head .session {
		margin-top: 37px;
		margin-left: 458px;
		padding-top: 3px;
	}
}

@media screen and (max-width: 900px) {
	.head .session {
		margin-top: 25px;
		margin-left: 295px;
		padding-top: 4px;
	}
}

@media screen and (max-width: 650px) {
	.head .session {
		display: none !important;
		margin-top: 57px;
		margin-left: 174px;
	}
}

/* Social and contact controls: */

.head .socials {
	position: absolute;
	width: 300px;
	margin-top: 200px;
	margin-left: 810px;
	text-align: right;
}

.head .socials span.phone {
	display: block !important;
	float: right;
	width: 150px;
	font-size: 14px;
	font-weight: bolder;
}

.head .socials ul {
	display: block;
	float: right;
}

.head .socials ul li {
	display: inline;
	float: right;
}

.head .socials ul li.login { display: none !important; }
.head .socials ul li.phone { display: none !important; }

.head .socials a {
	display: block;
	width: 25px;
	height: 20px;
	text-align: right;
	font-size: 18px;
	color: rgb(64, 0, 0);
}

.head .socials a:link,
.head .socials a:visited { color: rgb(64, 0, 0); }
.head .socials a:hover,
.head .socials a:active { color: rgb(170, 51, 0); }

@media screen and (max-width: 1300px) {
	.head .socials {
		width: 250px;
		margin-top: 118px;
		margin-left: 490px;
	}

	.head .socials span.phone {
		width: 128px;
		font-size: 12px;
	}

	.head .socials a {
		height: 18px;
		width: 20px;
		font-size: 14px;
	}
}

@media screen and (max-width: 900px) {
	.head .socials {
		width: 200px;
		margin-top: 100px;
		margin-left: 325px;
	}

	.head .socials span.phone { display: none !important; }
	.head .socials ul li.phone { display: inline !important; }

	.head .socials a {
		width: 25px;
		height: 20px;
		font-size: 18px;
	}
}

@media screen and (max-width: 650px) {
	.head .socials {
		width: 210px;
		margin-top: 85px;
		margin-left: 95px;
		text-align: center;
	}

	.head .socials ul li.login { display: inline !important; }

	.head .socials a {
		width: 30px;
		height: 25px;
		font-size: 20px;
		text-align: center;
	}
}

/* Page content: */

#page-content {
	display: block;
	width: 100%;
}

.sec {
	display: none;
	user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
}

.sec h1,
.sec h2,
.sec h3 { margin-bottom: 5px; }

.sub { display: none; }

@media screen and (max-width: 900px) {
	.sec h1,
	.sec h2,
	.sec h3 { margin-bottom: 3px; }
}

/* Dividers: */

.divider {
	display: block;
	width: 100%;
	height: 50px;
	margin: 10px auto;
}

.divider.plain { background: url(/_v0.1/img/div-plain_30_line.png) repeat-x center; }

.divider.plain .center {
	display: block;
	width: 236px;
	height: 50px;
	margin: 0 auto;
	background: url(/_v0.1/img/div-plain_30.png) no-repeat center;
}

.divider.top .wrapper {
	display: block;
	width: 336px;
	height: 50px;
	margin: 0 auto;
}

.divider.top .left {
	display: block;
	float: left;
	height: 50px;
	width: 118px;
	background: url(/_v0.1/img/div-top_30_l.png) no-repeat right center;
}

.divider.top .right {
	display: block;
	float: right;
	height: 50px;
	width: 118px;
	background: url(/_v0.1/img/div-top_30_r.png) no-repeat left center;
}

.divider.top a {
	display: block;
	margin: 0 auto;
	width: 100px;
	height: 48px;
	padding-top: 12px;
	text-align: center;
}

@media screen and (max-width: 1300px) {
	.divider { margin-top: 10px; }
	.divider.top .wrapper { width: 326px; }
	
	.divider.top a {
		width: 90px;
		height: 46px;
		padding-top: 14px;
	}
}

@media screen and (max-width: 900px) {
	.divider { margin-bottom: 10px; }
	.divider.top .wrapper { width: 316px; }
	
	.divider.top a {
		width: 80px;
		height: 45px;
		padding-top: 15px;
	}
}

/* Slider: */

.slider {
	display: block;
	width: 664px;
	height: 256px;
}

.slider .brd-l {
	display: block;
	float: left;
	width: 30px;
	height: 256px;
	background: url(/_v0.1/img/slider/slider_l_30.png) no-repeat center right;
}

.slider .brd-r {
	display: block;
	float: right;
	width: 30px;
	height: 256px;
	background: url(/_v0.1/img/slider/slider_r_30.png) no-repeat center left;
}

.slider .slides-wrapper {
	display: block;
	width: 604px;
	height: 256px;
	margin: 0 auto;
	overflow: hidden !important;
	background: url(/_v0.1/img/slider/slider_base_604.png) no-repeat center;
}

.slider ul.content {
	display: block;
	width: 604px;
	height: 256px;
	list-style: none;
	overflow: hidden;
}

.slider li.slide {
	display: inline-block;
	position: relative;
	left: 604px;
	width: 604px;
	height: 256px;
	background: url(/_v0.1/img/slider/slide_604.png) no-repeat center;
}

.slider .slide h1 {
	display: block;
	width: 584px;
	margin: 40px 0 30px 10px;
	text-align: center;
	font-size: 20px;
	line-height: 1em;
}

.slider .slide h1 img { margin-bottom: -15px; }

.slider .slide-text {
	display: block;
	width: 584px;
	margin-left: 10px;
	text-align: center;
}

.slider .slide-text span.text {
	display: block;
	width: 584px;
}

.slider .slide-text span.text img { display: block; }

.slider .slide-text span.text img.glyph {
	float: left;
	width: 100px;
	height: 100px;
	margin-bottom: 60px;
}

@media screen and (max-width: 1300px) {
	.slider { width: 384px; }
	.slider .slides-wrapper { width: 324px; }
	.slider .slide h1 { margin-bottom: 20px; }
	.slider ul.content { width: 324px; }

	.slider li.slide {
		left: 324px;
		width: 324px;
	}

	.slider .slide h1 { width: 304px; }

	.slider .slide-text {
		top: 220px;
		width: 304px;
	}

	.slider .slide-text span.text { width: 304px; }

	.slider .slide-text span.text img.glyph {
		width: 80px;
		height: 80px;
	}

	.slider .slide-text span.btn { width: 100px; }
}

@media screen and (max-width: 900px) {
	.slider { width: 515px; }
	.slider .slides-wrapper { width: 455px; }
	.slider ul.content { width: 455px; }

	.slider li.slide {
		left: 455px;
		width: 455px;
	}

	.slider .slide h1 {
		width: 435px;
		margin-bottom: 30px;
	}

	.slider .slide-text {
		top: 390px;
		width: 435px;
	}

	.slider .slide-text span.text { width: 435px; }
}

@media screen and (max-width: 650px) {
	.slider { width: 347px; }
	.slider .slides-wrapper { width: 287px; }
	.slider ul.content { width: 287px; }

	.slider li.slide {
		left: 287px;
		width: 287px;
	}

	.slider .slide h1 {
		width: 267px;
		margin-bottom: 15px;
	}

	.slider .slide-text {
		top: 375px;
		width: 267px;
	}

	.slider .slide-text span.text { width: 267px; }
}

/* Pinup note: */

.pinup {
	display: block;
	width: 267px;
	height: 203px;
	background: url(/_v0.1/img/card_270.png) no-repeat center;
	transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	-webkit-transform: rotate(3deg);
	-moz-transform: rotate(3deg);
	-o-transform: rotate(3deg);
}

.pinup .pin {
	display: block;
	position: absolute;
	width: 41px;
	height: 36px;
	margin-top: -10px;
	margin-left: 110px;
	background: url(/_v0.1/img/pin_41.png) no-repeat center;
}

.pinup h1 {
	display: block;
	margin: 20px 25px 0;
	font-size: 16px;
	text-align: center;
}

.pinup p {
	display: block;
	margin: 6px 25px 0;
	font-family: "Post-it Penscript", cursive;
	font-weight: bold;
	font-size: 24px;
	line-height: 1.1em;
	text-align: center;
}

.pinup p.none { margin-top: 25px; }

.pinup span.btn {
	width: 100px;
	margin-right: 20px;
	margin-top: 10px;
}

/* Timeline: */

.timeline {
	display: block;
	width: 440px;
	overflow: hidden;
}

.timeline .timeline-wrap {
	display: block;
	width: 440px;
	overflow: hidden;
}

.timeline .entry {
	display: block;
	float: left;
	clear: both;
	width: 210px;
	height: 70px;
	margin-bottom: 10px;
}

.timeline .entry.right { float: right; }

.timeline .entry span.content {
	display: block;
	float: left;
	width: 184px;
	font-size: 12px;
	text-align: left;
	background: rgba(255, 0, 0, 0.1);
	border: rgb(102, 51, 0) 1px solid;
	overflow: hidden;
}

.timeline .entry.right span.content { float: right; }
.timeline .entry span p { padding: 5px; }

.timeline .entry div.date {
	display: block;
	float: right;
	width: 40px;
	height: 54px;
	margin-left: 5px;
	margin-right: 0px;
	padding: 3px 0;
	text-align: center;
	font-weight: bolder;
	color: rgb(255, 153, 0);
	background: rgba(102, 51, 0, 0.9);
}

.timeline .entry.right div.date {
	float: left;
	margin-left: 0px;
	margin-right: 5px;
}

.timeline .entry div.pointer {
	display: block;
	float: right;
	width: 16px;
	height: 70px;
	background: url(/_v0.1/img/arrow_r_16.png) no-repeat top center;
}

.timeline .entry.right div.pointer {
	float: left;
	background: url(/_v0.1/img/arrow_l_16.png) no-repeat top center;
}

@media screen and (max-width: 1300px) {
	.timeline { width: 690px; }
	.timeline .timeline-wrap { margin-left: 125px; }
}

@media screen and (max-width: 900px) {
	.timeline { width: 515px; }
	.timeline .timeline-wrap { margin-left: 37px; }
}

@media screen and (max-width: 650px) {
	.timeline .timeline-wrap { margin-left: 58px; }
	.timeline .entry.right { float: left; }
	.timeline .entry.right span.content { float: left; }

	.timeline .entry.right div.date {
		float: right;
		margin-left: 5px;
		margin-right: 0px;
	}

	.timeline .entry.right div.pointer {
		float: right;
		background: url(/_v0.1/img/arrow_r_16.png) no-repeat top center;
	}
}

/* Captcha: */

.captcha-wrapper {
	display: block;
	width: 347px;
	height: 100px;
	margin: 0 auto;
}

.captcha-wrapper .captcha {
	display: block;
	float: left;
	width: 225px;
	height: 45px;
	border: rgb(64, 0, 0) 1px solid;
	box-sizing: border-box;
}

.captcha-wrapper .recaptcha {
	display: block;
	float: left;
	margin-left: 10px;
	margin-top: 18px;
	font-size: 24px;
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
}

.captcha-wrapper .recaptcha:hover,
.captcha-wrapper .recaptcha:active {
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

.captcha-wrapper input[type=text] {
	float: left;
	width: 80px;
	height: 32px;
	margin-top: 14px;
	margin-left: 9px;
	font-size: 20px;
}

.captcha-wrapper p.warning { clear: both; }

/* Bickies section:*/

.bickies .logo {
	display: block;
	float: left;
	width: 356px;
	height: 216px;
	background: url(/_v0.1/img/logos/logo_256.png) no-repeat center;
}

.bickies .content {
	display: block;
	float: right;
	width: 664px;
}

.bickies .content>p { text-align: justify; }
.bickies .content>span.btn { width: 200px; }

@media screen and (max-width: 1300px) {
	.bickies .logo { width: 296px; }
	.bickies .content { width: 384px; }
}

@media screen and (max-width: 900px) {
	.bickies .logo { width: 100%; }
	.bickies .content { width: 515px; }
}

@media screen and (max-width: 650px) {
	.bickies .content { width: 347px; }
}

/* Home section -> Intro: */

.intro-wrapper {
	display: block;
	height: 256px;
}

.intro .logo {
	display: block;
	float: left;
	width: 356px;
	height: 256px;
	background: url(/_v0.1/img/logos/logo_256.png) no-repeat center;
}

.intro .slider { float: right; }

@media screen and (max-width: 1300px) {
	.intro .logo { width: 296px; }
}

@media screen and (max-width: 900px) {
	.intro-wrapper { height: 472px; }

	.intro .logo {
		width: 100%;
		height: 216px;
	}
}

/* Home section -> Welcome: */

.home .welcome {
	width: 1030px;
	text-align: justify;
}

.home .col {
	width: 330px;
	text-align: justify;
}

.home .col.flt_l { margin-right: 20px; }

.home .col img {
	display: block;
	float: left;
	width: 100px;
	height: 100px;
	margin-top: 5px;
}

.home .col p { margin-top: 5px; }
.home .col a { font-weight: bolder; }

@media screen and (max-width: 1300px) {
	.home .welcome { width: 690px; }
	.home .col { width: 220px; }
	.home .col.flt_l { margin-right: 15px; }

	.home .col img {
		width: 80px;
		height: 80px;
	}

	.home .col p { margin-top: 3px; }
}

@media screen and (max-width: 900px) {
	.home .welcome { width: 515px; }

	.home .col {
		width: 515px;
		margin-top: 10px;
	}

	.home .col.flt_l { margin-right: 0; }

	.home .col img {
		width: 100px;
		height: 100px;
	}

	.home .col p { margin-top: 5px; }
}

@media screen and (max-width: 650px) {
	.home .welcome { width: 347px; }
	.home .col { width: 347px; }
}

/* Home section -> Events: */

.home .events {
	float: right;
	margin-right: 30px;
}

@media screen and (max-width: 1300px) {
	.home .events { margin-right: 0; }
}

@media screen and (max-width: 900px) {
	.home .events { margin-right: 125px; }
}

@media screen and (max-width: 650px) {
	.home .events {
		margin-right: 40px;
		margin-bottom: 10px;
	}
}

/* Home section -> Articles: */

.home-articles {
	display: block;
	float: left;
	width: 680px;
}

.home-articles .articles-wrapper {
	display: block;
	width: 100%;
}

.home-articles ul.content {
	display: block;
	width: 100%;
	list-style: none;
}

.home-articles li.article {
	display: block;
	width: 100%;
	height: 88px;
	overflow: hidden;
}

.home-articles .article-card {
	display: block;
	width: 657px;
	height: 59px;
	margin-top: 29px;
	margin-left: 10px;
	overflow: hidden;
	background: rgb(226, 189, 131);
	border: rgb(102, 51, 0) 2px solid;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	-webkit-border-top-left-radius: 15px;
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	-moz-border-radius-topleft: 15px;
	box-shadow: 0px 2px 5px 0px rgba(235, 0, 0, 0.5);
	transition: height 1s ease-in-out, margin-top 1s ease-in-out, background 1s ease-in-out;
	-webkit-transition: height 1s ease-in-out, margin-top 1s ease-in-out, background 1s ease-in-out;
	-o-transition: height 1s ease-in-out, margin-top 1s ease-in-out, background 1s ease-in-out;
	-moz-transition: height 1s ease-in-out, margin-top 1s ease-in-out, background 1s ease-in-out;
}

.home-articles .article-card:hover,
.home-articles .article-card:active {
	height: 86px;
	margin-top: 2px;
	background: rgb(233, 205, 155);
}

.home-articles .article-groove {
	display: block;
	position: relative;
	float: left;
	width: 680px;
	height: 4px;
	margin-top: -8px;
}

.home-articles .article-groove .groove.left {
	display: block;
	float: left;
	width: 4px;
	height: 4px;
	background: url(/_v0.1/img/groove_b_l_4.png) no-repeat bottom right;
}

.home-articles .article-groove .groove.center {
	display: block;
	float: left;
	width: 672px;
	height: 4px;
	background: url(/_v0.1/img/groove_b_1.png) repeat-x bottom;
}

.home-articles .article-groove .groove.right {
	display: block;
	float: right;
	width: 4px;
	height: 4px;
	background: url(/_v0.1/img/groove_b_r_4.png) no-repeat bottom left;
}

.home-articles .article h1 {
	display: block;
	margin: 15px 15px 2px;
	font-size: 16px;
	line-height: 1em;
}

.home-articles .article-text {
	display: block;
	width: 627px;
	height: 50px;
	margin-left: 15px;
}

.home-articles .article-text span.text {
	display: block;
	width: 507px;
	height: 29px;
	font-size: 14px;
	line-height: 1em;
}

.home-articles .article-text span.btn { margin-top: 18px; }

@media screen and (max-width: 1300px) {
	.home-articles,
	.home-articles .article-groove { width: 415px; }
	.home-articles .article-card { width: 392px; }
	.home-articles .article-groove .groove.center { width: 407px; }
	.home-articles .article-text { width: 362px; }
	.home-articles .article-text span.text { width: 242px; }
	.home-articles .article-text span.btn { width: 100px; }
}

@media screen and (max-width: 900px) {
	.home-articles,
	.home-articles .article-groove { width: 515px; }
	.home-articles .article-card { width: 492px; }
	.home-articles .article-groove .groove.center { width: 507px; }
	.home-articles .article h1 { padding-top: 0; }
	.home-articles .article-text { width: 462px; }
	.home-articles .article-text span.text { width: 342px; }
}

@media screen and (max-width: 650px) {
	.home-articles,
	.home-articles .article-groove { width: 347px; }
	.home-articles .article-card { width: 324px; }
	.home-articles .article-groove .groove.center { width: 339px; }
	.home-articles .article-text { width: 294px; }
	.home-articles .article-text span.text { width: 174px; }
}

/* About section: */

.about span {
	display: block;
	text-align: justify;
}

.about .logo {
	display: block;
	float: right;
	width: 296px;
	height: 256px;
	background: url(/_v0.1/img/logos/logo_256.png) no-repeat center;
}

.about img.flt_l { margin-right: 10px; }
.about img.flt_r { margin-left: 10px; }

@media screen and (max-width: 900px) {
	.about .logo {
		width: 100%;
		height: 216px;
	}
}

@media screen and (max-width: 650px) {
	.about img.flt_l { margin-right: 5px; }
	.about img.flt_r { margin-left: 5px; }
}

/* About section -> Timeline: */

.about .timeline {
	float: right;
	height: 360px;
	margin-left: 30px;
}

.about .timeline .timeline-wrap {
	height: 320px;
	margin-top: 10px;
	background: url(/_v0.1/img/timeline_4p.png) no-repeat center;
}

@media screen and (max-width: 1300px) {
	.about .timeline { margin-left: 0; }
}

@media screen and (max-width: 900px) {
	.about .timeline { margin-top: 0; }
}

@media screen and (max-width: 650px) {
	.about .timeline { width: 347px; }
}

/* About section -> Company: */

.about-company { display: block; }

.about-company img {
	display: block;
	width: 128px;
	height: 128px;
	margin-top: 10px;
}

@media screen and (max-width: 900px) {
	.about-company img {
		width: 96px;
		height: 96px;
		margin-top: 5px;
	}
}

/* About section -> Offices: */

.about-offices { display: block; }

.about-offices .office {
	display: block;
	width: 1030px;
}

.about-offices .office.left {
	float: left;
	width: 500px;
}

.about-offices .office.right {
	float: right;
	width: 500px;
}

.about-offices .office h3 { margin-top: 0; }

.about-offices .office img {
	display: block;
	float: left;
	width: 250px;
	margin: 0 15px 10px 0;
	box-shadow: 3px 3px 5px 0px rgba(235, 0, 0, 0.5);
}

.about-offices .office.right img {
	float: right;
	margin: 0 0 5px 15px;
}

.about-offices .offices-foot { margin-top: 10px; }

@media screen and (max-width: 1300px) {
	.about-offices .office,
	.about-offices .office.left,
	.about-offices .office.right { width: 690px; }
	.about-offices .office h3 { margin-top: 3px; }
	.about-offices .office img { width: 200px; }
}

@media screen and (max-width: 900px) {
	.about-offices .office,
	.about-offices .office.left,
	.about-offices .office.right { width: 515px; }
	.about-offices .office h3 { margin-top: 0; }
}

@media screen and (max-width: 650px) {
	.about-offices .office,
	.about-offices .office.left,
	.about-offices .office.right { width: 347px; }
	.about-offices .office h3 { margin-top: 5px; }

	.about-offices .office img {
		width: 250px;
		margin: 5px 48px 10px;
	}
	
	.about-offices .office.right img { margin: 5px 48px 10px; }
}

/* Services section: */

.services span {
	display: block;
	text-align: justify;
}

.services .service {
	display: block;
	width: 1030px;
}

.services .service .service-items-wrapper {
	display: block;
	width: 1030px;
}

.services .service .service-item {
	display: block;
	float: left;
	width: 505px;
	margin-right: 10px;
}

@media screen and (max-width: 1300px) {
	.services .service,
	.services .service .service-items-wrapper { width: 690px; }
	.services .service h3 { margin-top: 3px; }
	.services .service .service-item { width: 335px; }
}

@media screen and (max-width: 900px) {
	.services .service,
	.services .service .service-items-wrapper { width: 515px; }
	.services .service h3 { margin-top: 5px; }

	.services .service .service-item {
		float: none;
		width: 515px;
		margin-right: 0px;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 650px) {
	.services .service,
	.services .service .service-items-wrapper,
	.services .service .service-item { width: 347px; }
}

/* Clients section: */

/* Articles section: */

.articles .intro {
	display: block;
	width: 1030px;
}

.articles .intro .art {
	display: block;
	float: right;
	margin-top: -29px;
	margin-left: 20px;
	width: 140px;
	height: 140px;
	background: url(/_v0.1/img/articles_140.png) no-repeat center;
}

@media screen and (max-width: 1300px) {
	.articles .intro { width: 690px; }
	.articles .intro .art { margin-top: -26px; }
}

@media screen and (max-width: 900px) {
	.articles .intro { width: 515px; }
	.articles .intro .art { margin-top: -24px; }
}

@media screen and (max-width: 650px) {
	.articles .intro { width: 347px; }
	.articles .intro .art {
		float: none;
		width: 100%;
		margin-top: 0;
	}
}

/* Articles section -> Search: */

.articles .search-wrapper {
	display: block;
	position: absolute;
	width: 1030px;
}

.articles .search-groove {
	display: block;
	position: relative;
	float: left;
	width: 1030px;
	height: 4px;
	margin-bottom: -8px;
}

.articles .search-groove .groove.left {
	display: block;
	float: left;
	width: 4px;
	height: 4px;
	background: url(/_v0.1/img/groove_t_l_4.png) no-repeat top right;
}

.articles .search-groove .groove.center {
	display: block;
	float: left;
	width: 1022px;
	height: 4px;
	background: url(/_v0.1/img/groove_t_1.png) repeat-x top;
}

.articles .search-groove .groove.right {
	display: block;
	float: right;
	width: 4px;
	height: 4px;
	background: url(/_v0.1/img/groove_t_r_4.png) no-repeat top left;
}

.articles .search-card {
	display: block;
	width: 1006px;
	height: 24px;
	margin-left: 10px;
	overflow: hidden;
	background: rgb(226, 189, 131);
	border: rgb(102, 51, 0) 1px solid;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-webkit-border-bottom-right-radius: 15px;
	-moz-border-radius-bottomright: 15px;
	-moz-border-radius-bottomleft: 15px;
	box-shadow: 0px 1px 5px 0px rgba(235, 0, 0, 0.5);
	transition: height 1s ease-in-out, margin-bottom 1s ease-in-out, background 1s ease-in-out;
	-webkit-transition: height 1s ease-in-out, margin-bottom 1s ease-in-out, background 1s ease-in-out;
	-o-transition: height 1s ease-in-out, margin-bottom 1s ease-in-out, background 1s ease-in-out;
	-moz-transition: height 1s ease-in-out, margin-bottom 1s ease-in-out, background 1s ease-in-out;
}

.articles .search-card.initial { height: 0px; }

.articles .search-card.open {
	height: 124px;
	background: rgb(233, 205, 155);
}

.articles .search-card .btn.open {
	position: relative;
	margin: 4px 0 -120px 465px;
	width: 85px;
	height: 23px;
	padding-top: 3px;
	padding-left: 15px;
	font-size: 12px;
	text-align: left;
	line-height: 1.5em;
	transition: margin-top 1s ease-in-out;
	-webkit-transition: margin-top 1s ease-in-out;
	-o-transition: margin-top 1s ease-in-out;
	-moz-transition: margin-top 1s ease-in-out;
	background: rgb(155, 30, 0);
	box-shadow: none;
}

.articles .search-card .btn.open a>i {
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
}

.articles .search-card.initial .btn.open { margin-top: -20px; }
.articles .search-card.open .btn.open { margin-top: 104px; }

.articles .search-card.open .btn.open a>i {
	transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
}

.articles #search-form {
	display: block;
	width: 100%;
}

.articles #search-form input[type=search] {
	float: left;
	width: 876px;
	margin-left: 10px;
	font-size: 16px;
	line-height: 1.5em;
}

.articles #search-form .btn.search {
	margin-top: 1px;
	margin-left: 10px;
	width: 100px;
	height: 24px;
	padding-top: 2px;
	font-size: 12px;
	line-height: 2em;
}

.articles #search-form .search-col {
	display: block;
	float: left;
	width: 488px;
	margin-left: 10px;
}

.articles #search-form label {
	display: block;
	width: 150px;
}

.articles #search-form .lang { float: left; }

.articles #search-form img.lang {
	margin-right: 5px;
	border: rgb(64, 0, 0) 1px solid;
}

.articles #search-form p.lang+input { margin-left: 20px; }

@media screen and (max-width: 1300px) {
	.articles .search-wrapper,
	.articles .search-groove { width: 690px; }
	.articles .search-groove .groove.center { width: 682px; }
	.articles .search-card { width: 666px; }
	.articles .search-card .btn.open { margin-left: 295px; }
	.articles #search-form input[type=search] { width: 535px; }
	.articles #search-form .search-col { width: 318px; }
}

@media screen and (max-width: 900px) {
	.articles .search-wrapper,
	.articles .search-groove { width: 515px; }
	.articles .search-groove .groove.center { width: 507px; }
	.articles .search-card { width: 491px; }
	.articles .search-card .btn.open { margin-left: 207px; }
	.articles #search-form input[type=search] { width: 360px; }
	.articles #search-form .search-col { width: 471px; }
}

@media screen and (max-width: 650px) {
	.articles .search-wrapper,
	.articles .search-groove { width: 347px; }
	.articles .search-groove .groove.center { width: 339px; }
	.articles .search-card { width: 323px; }
	.articles .search-card .btn.open { margin-left: 123px; }
	.articles #search-form input[type=search] { width: 192px; }
	.articles #search-form .search-col { width: 303px; }
}

/* Articles section -> Content: */

.articles .articles-wrapper {
	display: block;
	float: left;
	width: 1030px;
	min-height: 100px;
	margin-top: 35px;
}

.articles .articles-wrapper .container {
	display: block;
	width: 100%;
	/*height: 389px;*/
}

.articles #articles-content {
	display: block;
	width: 100%;
	/*height: 382px;*/
	overflow: hidden;
}

@media screen and (max-width: 1300px) {
	.articles .articles-wrapper { width: 690px; }
}

@media screen and (max-width: 900px) {
	.articles .articles-wrapper { width: 515px; }
}

@media screen and (max-width: 650px) {
	.articles .articles-wrapper { width: 347px; }
}

/* Contact section */

.contact-wrapper {
	display: block;
	width: 1030px;
}

@media screen and (max-width: 1300px) {
	.contact-wrapper { width: 690px; }
}

@media screen and (max-width: 900px) {
	.contact-wrapper { width: 515px; }
}

@media screen and (max-width: 650px) {
	.contact-wrapper { width: 347px; }
}

/* Contact section -> Info: */

.contact-info-wrap {
	display: block;
	float: left;
	width: 600px;
}

#contact-map {
	display: block;
	width: 100%;
	height: 260px;
	margin-bottom: 10px;
	border: rgb(64, 0, 0) 1px solid;
	box-sizing: border-box;
}

#map-canvas {
	width: 100%;
	height: 258px;
}

.contact-info {
	display: block;
	width: 100%;
}

.contact-info .left {
	display: block;
	float: left;
	width: 330px;
}

.contact-info .right {
	display: block;
	float: right;
	width: 250px;
}

.contact-info h3 { margin-top: 0; }

@media screen and (max-width: 1300px) {
	.contact-info-wrap { width: 400px; }
	.contact-info .left { width: 240px; }
	.contact-info .right { width: 150px; }
}

@media screen and (max-width: 900px) {
	.contact-info-wrap { width: 515px; }
	.contact-info .left { width: 265px; }
	.contact-info .right { width: 240px; }
}

@media screen and (max-width: 650px) {
	.contact-info-wrap { width: 347px; }
	.contact-info .left { width: 187px; }
	.contact-info .right { width: 150px; }
}

/* Contact section -> Contact form: */

.contact-form-wrap {
	display: block;
	float: right;
	width: 400px;
}

.contact-form {
	display: block;
	width: 100%;
}

.contact-form .warning { margin-top: -3px; }

.contact-result {
	display: none;
	width: 100%;
}

@media screen and (max-width: 1300px) {
	.contact-form-wrap { width: 270px; }
	.contact-form-wrap span.btn { width: 100px; }
}

@media screen and (max-width: 900px) {
	.contact-form-wrap {
		width: 515px;
		margin-top: 10px;
	}
}

@media screen and (max-width: 650px) {
	.contact-form-wrap { width: 347px; }
}

/* Contact section -> Contact result: */

.contact-result .contact-captcha {
	display: block;
	width: 100%;
	height: 300px;
}

.contact-result .result {
	display: none;
	text-align: center;
}

.contact-result .result-wrap {
	display: block;
	width: 100%;
}

.contact-result .result .glyph {
	display: block;
	width: 100%;
	height: 100px;
	margin-top: 50px;
	background: url(/_v0.1/img/loading.gif) no-repeat center;
}

.contact-result .result .glyph.ok { background: url(/_v0.1/img/orbs/orb_ok_100.png) no-repeat center; }
.contact-result .result .glyph.err { background: url(/_v0.1/img/orbs/orb_err_100.png) no-repeat center; }

.contact-result .result .msg {
	display: block;
	width: 100%;
}

.contact-result .result .info {
	display: block;
	width: 100%;
}

/* Contact section -> Feedback: */

.feedback-wrapper {
	display: block;
	float: left;
	width: 600px;
	height: 475px;
}

.feedback-wrapper .container {
	display: block;
	width: 100%;
	height: 389px;
}

#feedback-content {
	display: block;
	width: 100%;
	height: 382px;
	overflow: hidden;
}

.feedback-content-wrap {
	display: block;
	width: 100%;
	height: 346px;
	overflow: auto;
}

.feedback-content-wrap ul.content {
	display: block;
	width: 100%;
}

.feedback-content-wrap li.feedback {
	display: block;
	width: 100%;
}

.feedback-content-wrap li.none {
	display: block;
	width: 100%;
	margin-top: 150px;
	text-align: center;
}

.feedback-content-wrap li+li { margin-top: 10px; }

.feedback-content-wrap li .quote {
	display: block;
	font-family: Niconne, cursive;
	font-size: 24px;
	line-height: 1em;
	color: rgb(80, 40, 0);
}

.feedback-toolbar {
	display: block;
	width: 100%;
	height: 35px;
}

.feedback-toolbar span.btn { width: 150px; }

@media screen and (max-width: 1300px) {
	.feedback-wrapper { width: 400px; }
}

@media screen and (max-width: 900px) {
	.feedback-wrapper { width: 515px; }
}

@media screen and (max-width: 650px) {
	.feedback-wrapper { width: 347px; }
}

/* Contact section -> Feedback form: */

.feedback-form-wrap {
	display: none;
	width: 100%;
	height: 382px;
}

.feedback-form-wrap span.close { width: 20px; }

.feedback-form {
	display: block;
	width: 100%;
}

.feedback-form .warning { margin-top: -3px; }

@media screen and (max-width: 1300px) {
	.feedback-form-wrap span.btn:not(.close) { width: 100px; }
}

/* Contact section -> Feedback result: */

.feedback-result {
	display: none;
	width: 100%;
}

.feedback-result .feedback-captcha {
	display: block;
	width: 100%;
	height: 300px;
}

.feedback-result .result {
	display: none;
	text-align: center;
}

.feedback-result .result-wrap {
	display: block;
	width: 100%;
}

.feedback-result .result .glyph {
	display: block;
	width: 100%;
	height: 100px;
	margin-top: 50px;
	background: url(/_v0.1/img/loading.gif) no-repeat center;
}

.feedback-result .result .glyph.ok { background: url(/_v0.1/img/orbs/orb_ok_100.png) no-repeat center; }
.feedback-result .result .glyph.err { background: url(/_v0.1/img/orbs/orb_err_100.png) no-repeat center; }

.feedback-result .result .msg {
	display: block;
	width: 100%;
}

.feedback-result .result .info {
	display: block;
	width: 100%;
}

/* Contact section -> Social Networking: */

.socials-wrapper {
	display: block;
	float: right;
	width: 400px;
	height: 475px;
}

.socials-wrapper .container {
	display: block;
	width: 100%;
}

.socials-wrapper ul.socials-container {
	display: block;
	width: 300px;
	height: 56px;
	margin: 11px auto 5px;
	text-align: center;
}

.socials-wrapper ul.socials-container li {
	display: inline;
	float: left;
	width: 80px;
	height: 56px;
}

.socials-wrapper ul.socials-container li+li { margin-left: 20px; }

.socials-container .socials-item {
	display: block;
	width: 100%;
	height: 35px;
	margin-top: 18px;
	font-size: 72px;
	overflow: hidden;
	transition: height 1s ease-in-out, margin-top 1s ease-in-out;
	-webkit-transition: height 1s ease-in-out, margin-top 1s ease-in-out;
	-o-transition: height 1s ease-in-out, margin-top 1s ease-in-out;
	-moz-transition: height 1s ease-in-out, margin-top 1s ease-in-out;
}

.socials-container .socials-item:hover,
.socials-container .socials-item:active {
	height: 56px;
	margin-top: -3px;
}

.socials-container .socials-item a,
.socials-container .socials-item a:link,
.socials-container .socials-item a:visited { color: rgb(102, 51, 0); }
.socials-container .socials-item a:active,
.socials-container .socials-item a:hover { color: rgb(153, 51, 0); }

.socials-container .socials-groove {
	display: block;
	position: relative;
	float: left;
	width: 80px;
	height: 4px;
	margin-top: -4px;
}

.socials-container .socials-groove .groove.left {
	display: block;
	float: left;
	width: 4px;
	height: 4px;
	background: url(/_v0.1/img/groove_b_l_4.png) no-repeat center right;
}

.socials-container .socials-groove .groove.center {
	display: block;
	float: left;
	width: 72px;
	height: 4px;
	background: url(/_v0.1/img/groove_b_1.png) repeat-x center;
}

.socials-container .socials-groove .groove.right {
	display: block;
	float: right;
	width: 4px;
	height: 4px;
	background: url(/_v0.1/img/groove_b_r_4.png) no-repeat center left;
}

.socials-wrapper #facebook-wrapper {
	display: block;
	width: 100%;
	height: 379px;
	border: rgb(64, 0, 0) 1px solid;
	box-sizing: border-box;
}

@media screen and (max-width: 1300px) {
	.socials-wrapper { width: 270px; }
}

@media screen and (max-width: 900px) {
	.socials-wrapper {
		width: 515px;
		margin-top:	10px;
	}

	.socials-wrapper #facebook-wrapper {
		width: 500px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 650px) {
	.socials-wrapper { width: 347px; }

	.socials-wrapper #facebook-wrapper {
		width: 100%;
		margin: 0;
	}
}

/* Links section: */
