@import "styles.css";

body,html {
	margin: 0;
	width: 100%;
	height: 100%;
}

body {
	background: rgb(229, 234, 245);
	-webkit-transform : translate3d(0,0,0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	font-family: arial, verdana, sans-serif;
	color : #444;
	font-size: 11px;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-font-smoothing: antialiased;
	min-height: 100%;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}

img {
	border: 0;
	}

.landing-page{
	padding: 10px;
}

form {
	padding: 0;
	margin: 0;
	width: 100%;
	display: table;
}

.page-wrapper {
	width: 100%;
	min-height	: 100%;
}
.main-content-area-wrapper {
	background: #fff;
	min-height: 100%;
	}

.main-content-area-wrapper:after {	
	display	: block;
	content: "";
	clear: both;
	float: none;
	}
	
.otc-container{
	-webkit-transform: translate3d(0%,0,0);
	-moz-transform : translateX(0%);
	-ms-transform : translateX(0%);
	transform : translateX(0%);

	-webkit-transition: -webkit-transform .25s ease-out; 
	-moz-transition: -moz-transform .25s ease-out; 
	-ms-transition: -ms-transform .25s ease-out; 
	transition: transform .25s ease-out; 
	width: 100%;
	height: 100%;
}

.off-the-canvas-menu-wrapper {
	position: absolute;
	width	: 50%;
	top	: 0;
	bottom : 0;
	background: #3F3C36 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGUlEQVQImWNgYGBIg2I4wBDAKZHGwMCQBgBn3AMx8BzvIQAAAABJRU5ErkJggg==');
	-webkit-box-shadow: inset -1px 0 5px 0 rgba(0,0,0,.9);
	box-shadow: -1px 0 5px 0 rgba(0,0,0,.9) inset;
}

.off-the-canvas-menu-wrapper.left{left: -50%;}
.off-the-canvas-menu-wrapper.right{left: 100%;}

body.off-the-canvas-visible-left .otc-container {
	-webkit-transform: translate3d(50%,0,0);
	-moz-transform : translateX(50%);
	-ms-transform : translateX(50%);
	transform : translateX(50%);
}

body.off-the-canvas-visible-right .otc-container {
	-webkit-transform: translate3d(-50%,0,0);
	-moz-transform : translateX(-50%);
	-ms-transform : translateX(-50%);
	transform : translateX(-50%);
}


.user-controls {
	position: relative;
}

.show-otc {
	background: #efefef;
	font-size: 14px;
	line-height: 14px;
	padding: 10px 40px 10px 10px;
	display: inline-block;
	font-weight: 100;
	margin: 5px 5px 5px 0;
	position: relative;
	cursor: pointer;
	border-radius: 2px;
	-webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.3) inset;
	box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.3) inset;
	}

.show-otc.arrow {
	padding: 10px 10px 10px 40px;
}

.show-otc:after{
	display: block;
	font-family : 'vytho';
	position: absolute;
	font-size: 28px;
	width: 20px;
	height: 20px;
	right: 10px;
	top: 10px;
	text-shadow: -1px -1px rgba(255, 255, 255, 0.9);
}

.show-otc:after {
	content: "n";
	right: 10px;
}

.show-otc.arrow:after {
	content: "m";
	left: 10px;
}



.close-button {
	margin: 0 0 0 5px;
	}

.search-container {
	padding: 20px 20px 20px 50%;
	background: -moz-linear-gradient(top,  rgba(223,242,246,0) 0%, rgba(223,242,246,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(223,242,246,0)), color-stop(100%,rgba(223,242,246,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(223,242,246,0) 0%,rgba(223,242,246,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(223,242,246,0) 0%,rgba(223,242,246,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(223,242,246,0) 0%,rgba(223,242,246,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(223,242,246,0) 0%,rgba(223,242,246,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00dff2f6', endColorstr='#dff2f6',GradientType=0 ); /* IE6-9 */
	background-image: url(/Content/images/www_logo_bg.jpg);
	background-position: right;
	height: 120px;
	position: relative;
	}

.search-container .logo {
	position: absolute;
	top: 40px;
	left: 20px;
	clip: rect(0px, 149px, 40px, 0px);
	}
	
.main-navigation-bar {
	position: relative;
	z-index: 9;
	padding: 20px;
	border-radius: 3px;
	background: rgba(0,103,132,.1);
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, .13);
	border-radius: 2px;
}
.main-navigation-bar .show-otc:nth-of-type(2) {float: right;}
.main-navigation-bar:after{
	display	: block;
	content: "";
	clear: both;
	float: none;
}






.main-navigation-bar input {
	font-size: 14px; 
	line-height: 26px;
	color: #888; 
	padding: 8px 40px 8px 10px;
	border: none; 
	border-radius: 2px;
	margin: 0 -50px 0 0;
	width: 100%;
	background: #fefefe;
	}

.main-navigation-bar input:focus {
	background: #fff;
	-webkit-box-shadow: 0 0 2px 2px rgba(00,128,200,.8),
			inset 0 0 1px 0 rgba(0,0,0,.2);
	box-shadow: 0 0 1px 2px rgba(109,198,231,.8),
				0 0 7px 3px rgba(109,198,231,.5),
			inset 0 0 1px 0 rgba(0,0,0,.1);
	}
	
	
.main-navigation-bar  button{
	appearance:normal;
	-moz-appearance:normal; 
	-webkit-appearance:normal;
	display: inline-block;
	position: relative;
	margin: 0;
	width: 40px;
	color: rgba(0, 0, 0, 0.8);
    font-size: 30px;
    line-height: 30px;
    margin: 0;
    position: relative;
    top: 7px;
	background: transparent;
	border: none;
}


.main-content-container {
	padding: 10px;
	width: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: auto;
	-ms-scroll-chaining: none;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}


.tag{
	font-size: 14px;
	line-height: 14px;
	padding: 10px 45px 10px 10px;
	display: inline-block;
	font-weight: 100;
	margin: 10px 10px 10px 0;
	position: relative;
	border-radius: 2px 2px 2px 0;
	-webkit-box-shadow: inset 0 -2px 0 0 #6dc6e7;
	box-shadow: inset 0 -2px 0 0 #6dc6e7;
	background: rgb(240,240,240);
	white-space: pre-wrap;
	cursor: pointer;
}

.tag:after {
	background: #6dc6e7;
	color: rgba(255,255,255,.9);
	display: block;
	content: "f";
	font-family : 'vytho';
	position: absolute;
	font-size: 28px;
	line-height: 40px;
	right: 0;
	top: 0px;
	bottom: 0;
	width: 30px;
	border-radius: 2px;
}

.result .tag.hit{
	-webkit-box-shadow: inset 0 -2px 0 0 #eee;
	box-shadow: inset 0 -2px 0 0 #eee;
	}
	
.result .tag.hit:after {
	background: #eee;
	color: rgba(0,0,0,.9);
	content: "f"!important;
	}

.tag.used {
    padding: 10px 5px;
	border-radius: 2px;
}
.tag.used:after {
	display: none;
}
.show-more {
	color: #333;
	display: inline-block;
	font-size: 14px;
	line-height: 14px;
	padding: 10px;
	border-radius: 5px 1px 1px 1px;
	background: #eee;
	position: absolute; 
	right: 0;
	bottom: 0;
	width: 34px;
	height: 34px;
	cursor: pointer;
}


.show-more span.icon-bottom{
       content: 'j';
}

.tag-cloud-tags {
    display: block;
}

.tag-cloud .tag{
	color: #333;
	border-radius: 2px 10px 10px 2px;
	padding: 10px 40px 10px 10px;
	box-shadow: none;
}

.tag-cloud  .tag:after{
	border-radius: 2px;
}
	

.search-results-container {
	font-size: 14px;
	}

.search-results-container .result .tag{
	margin: 0 10px 10px 0;
}
.search-results-container .result .tag:after{
	content: 'k';
	}


.search-results-container .result{
	display: block;
	margin: 10px 0;
	padding: 10px;
	-webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,.5);
	box-shadow: 0 0 1px 0 rgba(0,0,0,.5);
	position: relative;
	-webkit-user-select: text;
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	-o-user-select: text;
	user-select: text;
	}

.search-results-container .result:nth-of-type(2n) {
    background: #fefefe;
}

.search-results-container ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	color : #333;
	}

	
.search-results-container ul li:first-of-type{
	font-size: 18px;
	color : #000;
}

.search-results-container ul li {
	overflow: hidden;
    text-overflow: ellipsis;
	line-height: 30px;
	}

.fold {
	overflow: hidden;
	max-height: 999px;
	-webkit-transition: all .25s ease-out; 
	-moz-transition: all .25s ease-out; 
	-ms-transition: all .25s ease-out; 
	transition: all .25s ease-out; 
    margin: 0 -10px;
	}

.fold.hidden {
	max-height: 0;
	}

.search-results-container ol {
	list-style-type: none;
	padding: 10px 0 10px;
	font-size: 14px;
	line-height: 20px;
	display: table;
	border-top: 1px solid #eee;
	width: 100%;
	margin: 0;
	}


.search-results-container ol:nth-of-type(2n+1){
	background: rgba(0,90,128,.055);
}

.search-results-container ol:first-of-type{
	margin: 10px 0 0;
	}

.search-results-container ol li {padding: 10px;}	
.search-results-container ol li:nth-of-type(2n+1) {font-weight: bold; padding: 0 0 0 10px; line-height: 38px;}
.tag-cloud, .header-row-container {
    background: none repeat scroll 0 0 #006784;
	color:#fff; 
	font-size: 14px; 
	padding: 10px;
}

.tag-cloud {
	margin: -10px -10px 10px;
	-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3) inset;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3) inset,
				0 2px 2px 0 rgba(0, 0, 0, 0.3);
	}

.fold ol li {
		display: block;
		width: 100%;
		float: none;
		}

.filter {
	display: block;
	padding: 10px 20px;
	color: rgba(255,255,255,.8);
	text-shadow: 1px 1px rgba(0,0,0,.3);
	font-size: 14px;
	background-color: #007da5;
	-webkit-box-shadow: inset 0 -1px 0 0 rgba(0,0,0,.6);
	box-shadow: inset 0 -1px 0 0 rgba(0,0,0,.6);
	margin: 5px 0;
	border-radius: 2px;
	cursor: pointer;
}

.filter.disabled {
	background: #aaa;
	}

.result-counter {
	font-size: 14px;
	border-bottom : 1px solid #151412;
	padding: 0 0 10px;
	}

.result-pagination, .results-amount {
	display: inline-block;
	width: 50%;
	float: left;
	}

.result-pagination {
	text-align: right;
	}
 
.result-counter:after {	
	display	: block;
	content: "";
	clear: both;
	float: none;
	}

/* W8 style sort */

.sort-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.8);
	padding: 10px 5px;
}


.sort-button {
	background: #f5f5f5;
	padding: 10px;
	font-size: 18px;
	color: rgba(0,0,0,.8);
	font-weight: 100;
	text-transform: uppercase;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 20px;
	text-align: center;
	border-radius: 2px;
	margin : 5px 0;
	-webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.3) inset;
	box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.3) inset;
}

.sort-container .sort-button {
	margin: 5px;
}

.show-more span{
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: all .25s ease-out; 
	-moz-transition: all .25s ease-out; 
	-ms-transition: all .25s ease-out; 
	transition: all .25s ease-out; 
	display: block;
	}

.show-fold .show-more span {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
	}

.spinner-container {
	position: fixed;
	top	: 50%;
	left: 50%;
	z-index : 9999;
}
.spinner {
	display: inline-block;
	height: 41px; 
	width: 41px; 
	border-radius: 41px; 
	position : relative;
	background	: rgba(32,32,32,.9);
	z-index : 9999;
}

.spinner:after{
	display: block;
	width	: 27px;
	height	: 27px;
	content	: '';
	display	: block;
	background	: transparent url('../images/sprites@2x.png') no-repeat;
	position	: absolute;
	top		: 7px;
	left	: 7px;
}

.spinner {position: absolute;left: 50%;top: 50%;margin: -20px 0 0 -20px;}
.spinner:after{
	-webkit-background-size: 350px 180px;
	-moz-background-size:350px 180px;
	-o-background-size:350px 180px;
	background-size:350px 180px;
	background-position: 0 -27px;
	}
	

.spinner-animation {
    -moz-animation: spin-animation 1.5s linear infinite;
    -webkit-animation: spin-animation 1.5s linear infinite;
    -ms-animation: spin-animation 1.5s linear infinite;
    animation: spin-animation 1.5s linear infinite;
}

@-webkit-keyframes spin-animation {
    from {-webkit-transform : rotate(0)}
    to {-webkit-transform : rotate(360deg)}
	}

@-moz-keyframes spin-animation {
    from {-moz-transform : rotate(0)}
    to{-moz-transform : rotate(360deg)}
	}

@-ms-keyframes spin-animation {
    from{-ms-transform : rotate(0)}
    to{-ms-transform : rotate(360deg)}
	}

@keyframes spin-animation {
    from{transform : rotate(0)}
    to{transform : rotate(360deg)}
	}


@media only screen and (min-width : 700px) {
        .search-container .logo {
            clip: auto
        }
    }

/* desktop */
@media only screen and (min-width : 480px) {
	body, .page-wrapper {
		overflow: auto;
		}
	
	.main-content-container {
		width: 100%;
		position: static;
		float: left;
		padding: 10px 10px 0;
		overflow-y: auto;
		}
	
	.tag-cloud, .header-row-container {
		margin: 0 0 10px;
		}
	
	.off-the-canvas-menu-wrapper.left {
		width: 25%;
		float: left;
		left: auto;
		background: #fff;
		box-shadow : none;
		-webkit-box-shadow : none;
		position: relative;
		padding: 10px 0 0 10px;
		display : none;
		}
	
	.content-area-margin {
		max-width: 1000px;
		margin: 0 auto 0;
		background: #fff;
		min-height: 100%;
		padding: 0;
		box-shadow: 0 0 2px 0 rgba(0,0,0,.1);
		}
	
	form {
		max-width: 1000px;
		margin: 0 auto 0;
		padding: 0;
		}
	
	.close-button {
		display: none;
	}
	
	.search-results-container .result {
		margin: 10px 1px;
	}

	.search-results-container ol li {
		display: table-cell;
		width: 50%;
		float: left;
		}
	.search-results-container ol li:nth-of-type(2n1) {padding: 10px;}	
	.tag-cloud, .header-row-container {
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	
	
	.main-navigation-bar input {
		font-size: 22px; 
	}
}

.is-hidden, .hide-me {
	display: none;
	}

.is-visible {
	display: block;
	}


footer {
	background: #007da5;
	color: #fff;
	padding: 10px;
	margin: 30px 0 0;
}

::-moz-selection { color: #fff; background: #6dc6e7;}
::selection      { color: #fff; background: #6dc6e7;} 

a.tel {
    color: rgb(0, 103, 132);
    display: inline-block;
    padding: 5px 10px 5px 40px;
    position: relative;
	background: #eee;
	height: 33px;
    line-height: 22px;
    text-shadow: -1px -1px rgba(255, 255, 255, 0.8);
    text-decoration: none;
	}

a.tel:before {
    background: none repeat scroll 0 0 rgb(109, 198, 231);
    border-radius: 2px;
    bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    content: "e";
    display: block;
    font-family: "vytho";
    font-size: 28px;
    line-height: 38px;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    text-align: center;
    text-shadow: none;
}


nav.page-links {
    background: rgba(128,128,128,.1); 
    box-shadow: inset 0 1px 0 0 rgba(0,0,0,.1), inset 0 -1px 2px 0 rgba(0,0,0,.1);
    font-size: 0;

}

.page-link {
    background: none repeat scroll 0 0 rgb(0, 204, 255);
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    color: rgb(255, 255, 255);
    display: inline-block;
    font-size: 12px;
    height: 100%;
    margin: 0;
    padding: 10px;
    text-decoration: none;
    text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}


.language-selector {
    text-decoration: none;
    color: #08f;
    margin: 0 0 0 10px;
}

footer a {
    color: #fff;

}