/*
Bliss v1.0
URI: http://www.hrachia.com
*/


/* ==================================================
   Basic Styles
================================================== */

html, body {
	height: 100%;
}

html, hmtl a{
	width:100%;
	-webkit-text-size-adjust: 100%; 
	-ms-text-size-adjust: 100%;
}

body{
	background:#fff;
	color:#222;
	font-weight:400;
	font-size:16px;
	font-family: 'Open Sans', arial, sans-serif;
	line-height:28px;
}


a{
	color:#09c;
	text-decoration: none;
	cursor: pointer;
	
	-webkit-transition: color 0.1s linear 0s;	
	   -moz-transition: color 0.1s linear 0s;
		 -o-transition: color 0.1s linear 0s;
		    transition: color 0.1s linear 0s;
}

a:hover,
a:active,
a:focus{
	outline: 0;
	color:#9cf;
	text-decoration:none;
}

a img {
	border: none;
}

a > img {
	vertical-align: bottom;	
}

img {
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}

strong {
  	font-weight: 600;
}

p {
	margin: 0 0 30px;
}

hr {
	border-style: dashed;
	border-color: #3C3F45;
	border-bottom: none;
	border-left: none;
	border-right: none;
	margin: 50px 0;	
}

.center {text-align:center;}
.text_align_center {
	text-align: center;
}

.align_left{
	float:left;
	margin:0 25px 0 0px!important;
}

.align_right{
	float:right;
	margin:0 0 0 25px!important;
}

.text_align_left {
	text-align: left;
}

.right {text-align:right;}
.text_align_right {
	text-align: right;	
}

.color-text {
    color: #09c;
}

.through{
	text-decoration:line-through;
}

input, button, select, textarea {
	font-weight: 300;
	font-family: 'Open Sans', arial, sans-serif;
	outline: 0;
}

input:focus, 
textarea:focus,
input[type="text"]:focus {
	outline: 0;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #7F8289;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #7F8289;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #7F8289;
}

/* ==================================================
   Code and Pre
================================================== */

code,
pre {
  	padding: 0 3px 2px;
  	-webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
  	color: #232527;
  	font-size: 12px;
  	font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}

code {
  	padding: 2px 4px;
  	border: 1px solid #dde4e9;
  	background-color: #F6F6F6;
  	color: #232527;
  	white-space: nowrap;
}

pre {
  	display: block;
  	margin: 70px 50px;
  	padding: 30px;
  	border: 1px solid #dde4e9;
  	-webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
  	background-color: #FCFCFC;
  	white-space: pre;
  	white-space: pre-wrap;
  	word-wrap: break-word;
  	word-break: break-all;
  	font-size: 12px;
  	line-height: 20px;
}

pre code {
  	padding: 0;
  	border: 0;
  	background-color: transparent;
  	color: inherit;
  	white-space: pre;
  	white-space: pre-wrap;
}

.pre-scrollable {
  	overflow-y: scroll;
  	max-height: 340px;
}


/* ==================================================
   Typography
================================================== */

h1,
h2,
h3,
h4,
h5,
h6{
	margin:0 0 20px 0;
	color:#333;
	font-weight:300;
	font-family: 'Open Sans', arial, sans-serif;
	line-height:1.5em;
}

h1{
	font-size:2.5em;
}

h2{
	font-size:2.25em;
}

h3{
	font-size:1.8em;
}

h4{
	font-size:1.5em;
}

h5{
	font-size:1.25em;
}

h6{
	font-size:1.1em;
}

h3.spec {
	color: #FFFFFF;
    font-size: 1.8em;
    font-weight: 300;
    line-height: 1em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.large {font-size:x-large;}
.small {font-size:small;}

/* ==================================================
   Margin Bottom Sets
================================================== */

.margbot0 {margin-bottom:0;}
.margbot5 {margin-bottom:5px !important;}
.margbot10 {margin-bottom:10px;}
.margbot20 {margin-bottom:20px;}
.margbot25 {margin-bottom:25px;}
.margbot30 {margin-bottom:30px !important;}
.margbot40 {margin-bottom:40px;}
.margbot50 {margin-bottom:50px;}
.margbot60 {margin-bottom:60px;}
.margbot70 {margin-bottom:70px;}
.margbot80 {margin-bottom:80px;}

.pad0 {padding:0 !important;}
.padbot0 {padding-bottom:0 !important;}
.padbot10 {padding-bottom:10px !important;}
.padbot20 {padding-bottom:20px !important;}
.padbot30 {padding-bottom:30px !important;}
.padbot40 {padding-bottom:40px !important;}
.padbot50 {padding-bottom:50px !important;}
.padbot60 {padding-bottom:60px !important;}
.padbot70 {padding-bottom:70px !important;}
.padbot80 {padding-bottom:80px !important;}
.padtop0 {padding-top:0 !important;}
.padleft {padding-left:15px !important;}
.padtop: {padding-top:30px !important;}

/* ==================================================
   Header
================================================== */

header {
	width: 100%;
	z-index: 99;
}

header .sticky-nav {
	position: relative;
	width: 100%;
	height: 48px;
	background: -moz-linear-gradient(top,  #0cf 0%, #39c 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0cf), color-stop(100%,#39f));
	background: -webkit-linear-gradient(top,  #0cf 0%,#39c 100%);
	background: -o-linear-gradient(top,  #0cf 0%,#39c 100%);
	background: -ms-linear-gradient(top,  #0cf 0%,#39c 100%);
	background: linear-gradient(to bottom,  #0cf 0%,#39c 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3399ff', endColorstr='#3399cc',GradientType=0 );
	box-shadow: 0 5px 2px -2px rgba(0,0,0,0.5);
	z-index: 1001;
	opacity: 0.98;
	filter: alpha(opacity=98);	
	-webkit-box-shadow: 0 5px 2px -2px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 5px 2px -2px rgba(0,0,0,0.5);

}

header .sticky-nav.stuck {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
}

header #logo {
	color: #FFFFFF;
	float: left;
	padding: 10px 40px;
}

header #logo a {
	background: url(../img/logo.png) no-repeat;
	width: 96px;
	height: 30px;
	text-indent: -9999px;
	display: block;
	opacity: 1;
	filter: alpha(opacity=100);
	
	-webkit-transition: opacity 0.25s ease-in-out 0s;	
	   -moz-transition: opacity 0.25s ease-in-out 0s;
		 -o-transition: opacity 0.25s ease-in-out 0s;
		    transition: opacity 0.25s ease-in-out 0s;	
}

header #logo a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);	
}

nav#menu {
	float: right;
	margin-right: 20px;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.92em;
}

nav#menu #menu-nav {
	margin: 0;
	padding: 0;	
}

nav#menu #menu-nav li {
	list-style: none;
	display: inline-block;
	margin-left: 40px;	
}

nav#menu #menu-nav li:first-child {
	margin-left: 0;	
}

nav#menu #menu-nav li a {
	color: #000;

	font-weight: 400;
	line-height: 55px;
	display: block;
	text-transform: uppercase;
}

nav#menu #menu-nav li.current a,
nav#menu #menu-nav li a:hover {
	color: #fff;
}


/* ==================================================
   Mobile Navigation
================================================== */

#mobile-nav {
	display: none;	
}

.menu-nav {
	background:url(../img/menu-mobile.png) 0 0 no-repeat;
	width: 16px;
	height: 16px;
	display: block;
	margin: 22px 0 0 0;
	
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		 -o-transform: rotate(0deg);
			transform: rotate(0deg);
	
	-webkit-transition: -webkit-transform 250ms ease-out 0s;	
	   -moz-transition: -moz-transform 250ms ease-out 0s;
		 -o-transition: -o-transform 250ms ease-out 0s;
		    transition: transform 250ms ease-out 0s;
}

.menu-nav.open {
	background-position: 0 -16px;
		  
	-webkit-transform: rotate(-180deg);
	   -moz-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		 -o-transform: rotate(-180deg);
			transform: rotate(-180deg);
	
	-webkit-transition: -webkit-transform 250ms ease-out 0s;	
	   -moz-transition: -moz-transform 250ms ease-out 0s;
		 -o-transition: -o-transform 250ms ease-out 0s;
		    transition: transform 250ms ease-out 0s;	
}

#navigation-mobile {
	display: none;
	text-align: center;
	width: 100%;
	background: #26292E;	
	border-bottom: 1px solid #2F3238;
	position: relative;
	float: left;
	z-index: 9999;
}

#navigation-mobile li {
	list-style: none;
	border-top: 1px solid #2F3238;
}

#navigation-mobile li a{
	display: block;
	font-size: 16px;
	text-transform: uppercase;
	padding: 20px 0;
}


/* ==================================================
   Section Page
================================================== */

.page {
	background: #fff;
	padding: 50px 0;
	position: relative;
	z-index: 99;
}

.page-alternate {
	background: #fff;
	padding: 50px 0;
	position: relative;
	z-index: 99;
}

.title-page {
	text-align: center;
	margin-bottom: 50px;	
}

.title-page .title {
	font-size: 250%;
	margin: 0 0 10px 0
}

.title-page .title-description {
	font-size: 150%;
	font-weight: 300;
	margin: 0;
}


/* ==================================================
   Table of Contents
================================================== */
.toc_item {
	position:relative;
	display:block;
	padding:80px 25px 0;
}

.toc_item span {line-height:20px;}
.toc_item:before {
	content:'';
	position:absolute;
	left:0;
	right:0;
	top:0;
	height:2px;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.toc_item.bg1:before {background-color: #ffcc00;}
.toc_item.bg2:before {background-color: #ef4836;}
.toc_item.bg3:before {background-color: #0099ff;}
.toc_item.bg4:before {background-color: #00cc99;}
.toc_item:hover:before {height:6px;}

.toc_item i {
	position:relative;
	display:block;
	width:130px;
	height:130px;
	margin:0 auto 25px;
	line-height:130px;
	font-size:250%;
	color:#fff;
	border-radius:50%;
	cursor:default;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.toc_item.bg1 i {box-shadow: 0 0 0 75px #F5C700 inset;}
.toc_item.bg2 i {box-shadow: 0 0 0 75px #ef4836 inset;}
.toc_item.bg3 i {box-shadow: 0 0 0 75px #0099ff inset;}
.toc_item.bg4 i {box-shadow: 0 0 0 75px #00cc99 inset;}
.toc_item.bg1:hover i {box-shadow: 0 0 0 3px #F5C700 inset; color:#F5C700;}
.toc_item.bg2:hover i {box-shadow: 0 0 0 3px #ef4836 inset; color:#ef4836;}
.toc_item.bg3:hover i {box-shadow: 0 0 0 3px #0099ff inset; color:#0099ff;}
.toc_item.bg4:hover i {box-shadow: 0 0 0 3px #00cc99 inset; color:#00cc99;}

.toc_item p {
	margin-bottom:9px;
	text-transform:none;
	line-height:32px;
	font-size:150%;
	color:#333;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.toc_item.bg1:hover p {color:#F5C700;}
.toc_item.bg2:hover p {color:#ef4836;}
.toc_item.bg3:hover p {color:#0099ff;}
.toc_item.bg4:hover p {color:#00cc99;}

.toc_item span {
	display:block;
	line-height:22px;
	color:#555;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.toc_item:hover span {color:#333;}




/* ==================================================
   About Section
================================================== */

#about .about_content {padding-top:50px;}

#about .about_content h3 {font-weight:400;}

#about .about_content p {
	line-height:24px;
}


/* ==================================================
   Colours of Armenia
================================================== */
#arm {background-color:#fee;}

.arm-title {color:#f00;}

.arm-title-description {color:#000;}

.type-arm {
	font-size: 125%;
	font-weight: 300;
	color: #000;
	margin-bottom: 30px;
	line-height: 1em;
	text-transform: uppercase;
}

.arm-nav #filters {
	margin: 0;
	padding: 0;
	list-style: none;
}

.arm-nav #filters li {
	margin: 0 0 30px 0;
	padding: 0;
}

.arm-nav #filters li a {
	color: #999;
	font-size: 120%;
	display: block;	
}

.arm-nav #filters li a:hover {
	color: #ccc;
}

.arm-nav #filters li a.selected {
	color: #f33;
}

#thumbs {
	margin: 0;
	padding: 0;	
}

#thumbs li {
	list-style-type: none;
}

.item-thumbs {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
	cursor: pointer;
}

.item-thumbs a + img {
	width: 100%;	
}

.item-thumbs .hover-wrap {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	
	opacity: 0;
	filter: alpha(opacity=0);
	
	-webkit-transition: all 450ms ease-out 0s;	
	   -moz-transition: all 450ms ease-out 0s;
		 -o-transition: all 450ms ease-out 0s;
		    transition: all 450ms ease-out 0s;
		  
	-webkit-transform: rotateY(180deg) scale(0.5,0.5);
	   -moz-transform: rotateY(180deg) scale(0.5,0.5);
		-ms-transform: rotateY(180deg) scale(0.5,0.5);
		 -o-transform: rotateY(180deg) scale(0.5,0.5);
			transform: rotateY(180deg) scale(0.5,0.5);	
}

.item-thumbs:hover .hover-wrap,
.item-thumbs.active .hover-wrap {
	opacity: 1;
	filter: alpha(opacity=100);
	
	-webkit-transform: rotateY(0deg) scale(1,1);
	   -moz-transform: rotateY(0deg) scale(1,1);
		-ms-transform: rotateY(0deg) scale(1,1);
		 -o-transform: rotateY(0deg) scale(1,1);
		    transform: rotateY(0deg) scale(1,1);
}

.item-thumbs .hover-wrap .overlay-img {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #09c;
	
	opacity: 0.80;
	filter: alpha(opacity=80);
}

.item-thumbs .hover-wrap .overlay-img-thumb {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -16px 0 0 -16px;
	color: #FFFFFF;
	font-size: 32px;
	line-height: 1em;
	
	opacity: 1;
	filter: alpha(opacity=100);
}


/* ==================================================
   Publications
================================================== */
#publications {background-color:#cfc;}
.pub-title {color:#099;}


/* __________ Process Model __________ */

.cd_process {
	color:#099;
	text-align: center;
}

.fig_block {
	margin:0 -15px;
	text-align:center;
}
.fig_block .pm_img {
	width: 100%;
	height: 100%;
	display:inline-block;
	margin:0 12px 20px 15px;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.publications_block:hover .client_img {opacity:0.3;}
.fig_block .client_img:hover {opacity:1;}


.pub_item {
	position:relative;
	min-height:414px;
	padding:50px 20px;
	background-color:#fff;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.pub_item:hover {
	transform:translateY(-20px);
	-o-transform:translateY(-20px);
	-ms-transform:translateY(-20px);
	-webkit-transform:translateY(-20px);
}
.pub_item:before {
	content:'';
	position:absolute;
	z-index:10;
	left:15px;
	right:15px;
	bottom:0;
	height:0;
	background-color:rgba(0,0,0,0.15);
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.pub_item:hover:before {bottom:-20px; height:20px;}

.pub_img {
	overflow:hidden;
	width:200px;
	height:200px;
	margin:0 auto 25px;
	border-radius:50%;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.pub_item:hover .pub_img {
	transform:scale(0);
	-o-transform:scale(0);
	-ms-transform:scale(0);
	-webkit-transform:scale(0);
}

.pub_descr {
	position:absolute;
	left:25px;
	right:25px;
	top: 275px;
	background-color:#fff;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.pub_item:hover .pub_descr {top:34px;}

.pub_name {
	font-weight:600;
	line-height:26px;
	font-size:20px;
	color:#099;
}
.pub_post {
	padding-bottom:33px;
	font-size:16px;
	color:#333;
}

.pub_item .pub_doc {padding-bottom:50px;}
.pub_item .pub_doc a {
	display:inline-block;
	width:50px;
	height:50px;
	margin:0 2px 0 5px;
	border-radius:50%;
	line-height:48px;
	font-size:x-large;
	color:#fff;
	background-color:#ccc;
}
.pub_item .pub_doc a:hover {box-shadow:0 0 0 25px #4d72bf inset;}

.pub_about {
	height:0;
	line-height:22px;
	font-size:medium;
	opacity:0;
	transform:scale(0);
	-o-transform:scale(0);
	-ms-transform:scale(0);
	-webkit-transform:scale(0);
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.pub_item:hover .pub_about {
	opacity:1;
	transform:scale(1);
	-o-transform:scale(1);
	-ms-transform:scale(1);
	-webkit-transform:scale(1);
}



/* __________ Other Publications __________ */
.publications{margin-bottom:77px;}
.o_pub {
	color:#099;
text-align: left;
}

.publications_slider {
	overflow:visible;
	margin-top:23px;
	background-image:url(../img/quotes.png);
	background-repeat:no-repeat;
}
.publications_slider .publications_item {
	padding-left:70px;
}

.publications_content {
	font-size: 1.2em;
	padding-bottom:0.5em;
	color:#333;
}
.publisher {font-size:0.95em;}
.publisher b {
	font-weight:600;
	color:#099;
}

.morepub {
	padding-top:3em;

}

.adober {
	width:24px;
	height:24px;
	font-size:small;
	vertical-align:text-bottom;
}

.adober:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);	
}

/* ==================================================
   Gallery
================================================== */
#gallery {background-color: #cef;}
.gallery-title {color:#069;}

.gallery-title-description, {color:#000;}

.places {
	font-size: 125%;
	color: #069;
	margin-bottom: 30px;
	font-weight: 300;
}

#photostack {text-align: left;}

/* ==================================================
   Contact 
================================================== */
#contact {background-color: #ffc;}
.contact-title {color:#777;}
#contact-details {
	height: 100%;
	text-align: left;
	vertical-align: botom;}


/* ==================================================
   INTERESTING FACTS
================================================== */

#facts {background-color:#ccdcde;}
.fact-title {color:#000;}

.fact_item i {
	display:block;
	width:70px;
	height:70px;
	margin:0 auto 18px;
	text-align:center;
	line-height:68px;
	font-size:64px;
	color:rgba(0,0,0,0.50);
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.fact_item:hover i {color:#eef;}
.fact_item p {
	margin:0;
	line-height:30px;
	font-size:24px;
	font-weight: 600;
	color:#778;	
}
.fact_item .count {
	font-weight:800;
	line-height:91px;
	font-size:80px;
	color:#09c;
}



/* ==================================================
   Social Area
================================================== */

#social-area {
    text-align: center;
    background: #222;
    color:#eee;
}

#social-area #social ul {
	margin: 0;
	padding: 0;
}

#social-area #social ul li {
	display: inline-block;
	margin-left: 30px;
	list-style: none;
	cursor: pointer;
}

#social-area #social ul li:first-child {
	margin-left: 0;
}

#social ul li a {
	display: block;
	width: 70px;
	height: 70px;
	border: 2px solid #333;
	background: #c0c0c0;
	
	-webkit-transition: all 400ms ease-out 0s;	
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;
	
	-webkit-transform: rotateY(180deg);
	   -moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		 -o-transform: rotateY(180deg);
			transform: rotateY(180deg);
}

#social ul li a span {
	display: inline-block;
	margin: 0;
	font-size: 200%;
	line-height: 70px;
	
	opacity: 0.5;
	filter: alpha(opacity=30);
	
	-webkit-transition: all 400ms ease-out 0s;	
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;
		  
	-webkit-transform: rotateY(180deg);
	   -moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		 -o-transform: rotateY(180deg);
			transform: rotateY(180deg);
}

#social ul li a.facebook span {
	color: #3B5998;	
}

#social ul li a.linkedin span {
	color: #50A1CB;	
}

#social ul li a.google-plus span {
	color: #DD4B39;	
}

#social ul li a.tumblr span {
	color: #3c596f;	
}

#social ul li a.flickr span {
	color: #ff0066;	
}


#social ul li:hover a,
#social ul li.active a {
	background-color: #ffcc00;	
	border: 2px solid #888;
	color: #fff;

	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
		    transform: rotateY(0deg);
}

#social ul li:hover a span,
#social ul li.active a span {
	color: #fff;
	opacity: 1;
	filter: alpha(opacity=100);
	
	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
			transform: rotateY(0deg);
}

#social ul li:hover a.facebook,
#social ul li.active a.facebook {
	background-color: #3B5998;
}

#social ul li:hover a.linkedin,
#social ul li.active a.linkedin {
	background-color: #50A1CB;
}

#social ul li:hover a.google-plus,
#social ul li.active a.google-plus {
	background-color: #DD4B39;
}

#social ul li:hover a.tumblr,
#social ul li.active a.tumblr {
	background-color: #3c596f;
}

#social ul li:hover a.flickr,
#social ul li.active a.flickr {
	background-color: #ff0066;
}

.gray {color:#ccc;}

/* ==================================================
   Footer
================================================== */

footer {
	position: relative;
	width: 100%;
	height: auto;
	background: #000;
	text-align: center;
	z-index: 99;
}

footer .credits {
	color: #fff;
	font-size: small;
	margin-bottom: 0;
	padding: 20px 0;
}
.footer-logo {
	width: 48px;
	height: 15px;
	margin: 0 20px 5px;
}
.madeinarmenia {font-size: smaller;}


.pane-banner {
	font-size:1.1em;
	line-height:1.5em;
	background-color:#069;
	color:white;
	font-family:"Open Sans",sans-serif;
	font-style:italic;
	display:-moz-inline-stack;
	display:inline-block;
	vertical-align:middle;
	padding:0 0.8em;
	line-height:26.4px;
	position:absolute;
	top:-0.53846em;

}.pane-banner:before {
	content:"";
	display:block;
	position:absolute;
	width:0;
	height:0;
	border:0 solid transparent;
	border-bottom-color:#182951;
	border-width:0 0em 0.53846em 0.53846em;
	left:-0.51154em;top:0.05;
}

/* ==================================================
   Back to Top
================================================== */

.back-to-top {
position: fixed;
bottom: 15px;
right: 20px;
background: url('../img/arrows.png') left top no-repeat; 
width: 51px;
height: 51px;
opacity: 0.7;
filter: alpha(opacity=70);
}

.back-to-top a {
text-indent: -9999px;
display: block;
opacity: 0.7;
filter: alpha(opacity=70);
}

.back-to-top:hover { 
opacity: 0.4;
filter: alpha(opacity=40);
}



/* ==================================================
   Preloader
================================================== */

#jpreOverlay,
#jSplash {
	background-color: #eee;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 700;
}

#jpreSlide{
	position: absolute;
	top: 50% !important;
	left: 50% !important;
	margin: -50px 0 0 -50px;
	width: 100px;
	height: 100px;
}

#jpreLoader {
	position: relative !important;
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;	
}

#jprePercentage {
	width: 50px;
	height: 50px !important;
	line-height: 50px;
	position: absolute !important;
	text-align: center;
	left: 50%;
	top: 50%;
	margin: -25px 0 0 -25px;
	z-index: 800;
	
	font-size: 24px;
	color: #cff;	

	-webkit-animation: circle 1s infinite forwards;
	   -moz-animation: circle 1s infinite forwards;
		-ms-animation: circle 1s infinite forwards;
		 -o-animation: circle 1s infinite forwards;
			animation: circle 1s infinite forwards;
}

#circle {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 11;
	margin: -50px 0 0 -50px;
	width: 100px;
	height: 100px;
	background: #09c;
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
	opacity: 0;
	filter: alpha(opacity=0);
			
	-webkit-animation: circle 1s infinite forwards;
	   -moz-animation: circle 1s infinite forwards;
		-ms-animation: circle 1s infinite forwards;
			animation: circle 1s infinite forwards;
}

@-webkit-keyframes circle {
	0% {-webkit-transform: rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
	}
	50% {-webkit-transform: rotateY(180deg);
		-webkit-animation-timing-function: ease-out;
	}
	100% {-webkit-transform: rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
	}
}

@-moz-keyframes circle {
	0% {-moz-transform: rotateY(0deg);
	}
	50% {-moz-transform: rotateY(180deg);
		-moz-animation-timing-function: ease-out;
	}
	100% {-moz-transform: rotateY(0deg);
		-moz-animation-timing-function: ease-in;
	}
}

@-ms-keyframes circle {
	0% {-ms-transform: rotateY(0deg);
		-ms-animation-timing-function: ease-in;
	}
	50% {-ms-transform: rotateY(180deg);
		-ms-animation-timing-function: ease-out;
	}
	100% {-ms-transform: rotateY(0deg);
		-ms-animation-timing-function: ease-in;
	}
}

@-o-keyframes circle {
	0% {-o-transform: rotateY(0deg);
		-o-animation-timing-function: ease-in;
	}
	50% {-o-transform: rotateY(180deg);
		-o-animation-timing-function: ease-out;
	}
	100% {-o-transform: rotateY(0deg);
		-o-animation-timing-function: ease-in;
	}
}

@keyframes circle {
	0% {transform: rotateY(0deg);
		animation-timing-function: ease-in;
	}
	50% {transform: rotateY(180deg);
		animation-timing-function: ease-out;
	}
	100% {transform: rotateY(0deg);
		animation-timing-function: ease-in;
	}
}


/* ==================================================
   Isotope Filtering
================================================== */

/**** Isotope Filtering ****/

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

/* End: Recommended Isotope styles */



/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
          transition: none;
}


/* ==================================================
   Contact 
================================================== */
#contact {background-color: #ffc;}


#contact-form {
	margin-bottom: 0;	
}

#contact-form p {
	margin-bottom: 1px;	
}

#contact-form input,
#contact-form textarea {
    border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
    border-radius: 0;
	
    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	
	background: #567;
    color: #FFFFFF;
    height: auto;
    padding: 15px;
	margin: 0;
	
    resize: none;
}

#contact-form input {
    width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#contact-capcode input, .contact-capcode {
	width:90px;
	text-align: right;
}

#contact-form textarea {
    width: 100%;
	resize: vertical;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#contact-form textarea:focus,
#contact-form input:focus {
	outline: 0;
	box-shadow: none;
	color:#000;
	border:0;
	background-color:#ccc;
}

#contact-form .submit {
    background: #567;
    color: #3cc;
    cursor: pointer;
    display: inline-block;
    font-size: 120%;
    font-weight: 500;
    padding: 16px 40px;
    text-align: center;
    vertical-align: middle;
    width: auto;
	margin-top: 30px;
	
	-webkit-transition: background 0.1s linear 0s, color 0.1s linear 0s;	
	   -moz-transition: background 0.1s linear 0s, color 0.1s linear 0s;
		 -o-transition: background 0.1s linear 0s, color 0.1s linear 0s;
		    transition: background 0.1s linear 0s, color 0.1s linear 0s;
}

#contact-form .submit:hover {
    background: #09c;
    color: #FFFFFF;
}

#response {
	margin-top: 20px;
	color: #FFFFFF;
}
