@charset "utf-8";
/*----------------------------------------------------------------------------------------------------*/
@baseColor_00: #fff;
@baseColor_01: #F2F2F2;
@baseColor_02: #D9D9D9;
@baseColor_03: #A4A6A6;
@baseColor_04: #262626;
@baseColor_05: #F7891E;
@baseColor_06: #ad6015;
@baseColor_07: #eaeaea;

@clientHeight: `$(window).height()`;
@coverImageNumber: `Math.floor((Math.random() * 4) + 1)`;
/*@coverImageNumber: `Math.floor((Math.random() * 2) + 1)`;*/
/*@coverImageURL: "../imgs/cover-0@{coverImageNumber}.jpg";*/
@coverImageURL: "../imgs/cover-01.jpg";
/*----------------------------------------------------------------------------------------------------*/

.trans(@seconds:.1s){
	-moz-transition: all @seconds ease-in; /* Firefox */
	-webkit-transition: all @seconds ease-in; /* WebKit */
	-o-transition: all @seconds ease-in; /* Opera */
	transition: all @seconds ease-in; /* Standard */}
	
.gFont01(@fontWeight:300){
	font-weight:@fontWeight;
	font-family:'Roboto Condensed',sans-serif;
}

.gFont02(@fontWeight:400){
	font-weight:@fontWeight;
	font-family: 'Playball', cursive;
}

.rotate(@deg:180){
	-moz-transform:rotate(@deg);
	-ms-transform: rotate(@deg); /* IE 9 */
	-webkit-transform: rotate(@deg); /* Chrome, Safari, Opera */
	transform: rotate(@deg);
}

.roundedCorners(@topleft:0;@topright:0;@bottomright:0;@bottomleft:0){
	border-top-left-radius:@topleft;
	border-top-right-radius:@topright;
	border-bottom-right-radius:@bottomright;
	border-bottom-left-radius:@bottomleft;
	
	-moz-border-radius-topleft:@topleft;
	-moz-border-radius-topright:@topright;
	-moz-border-radius-bottomright:@bottomright;
	-moz-border-radius-bottomleft:@bottomleft;
	
	-webkit-border-top-left-radius:@topleft;
	-webkit-border-top-right-radius:@topright;
	-webkit-border-bottom-right-radius:@bottomright;
	-webkit-border-bottom-left-radius:@bottomleft;
}

.sep(@margin:1px){
	margin:0 @margin 0 @margin;
}







::-moz-selection { /* Code for Firefox */
    color: @baseColor_06;
    background: @baseColor_04;
}

::selection {
    color: @baseColor_06;
    background: @baseColor_04;
}






body{background:@baseColor_01;.gFont01();}

a{color:#000;text-decoration:none;}

hr{
	height:0;
	box-sizing:content-box;
	-moz-box-sizing:content-box;
	-moz-border-bottom-colors:none;
	-moz-border-left-colors:none;
	-moz-border-right-colors:none;
	-moz-border-top-colors:none;
	border-color:#D9D9D9;
	border-style:solid none none;	
	border-width:1px 0 0;
}

.no-lst{list-style-type:none;}
.no-mp{margin:0;padding:0;}
.fl(@width:auto;@padding:0;){
	float:left;
	width:@width;
	padding:@padding;
}
.fr(@width:auto;@padding:0;){
	float:right;
	width:@width;
	padding:@padding;
}
.w{
	position:relative;
	max-width:920px;
	margin:0 auto;
	padding:20px 30px 45px 30px;
}

.tbl(@width:100%;){
	display:table;
  width:@width;
}
.tbl-r(){
	display:table-row;
}
.tbl-c(@width:100%;){
	display:table-cell;
	width:@width;
}
/*.tbl .tbl-c:nth-of-type(1){}
.tbl .tbl-c:nth-of-type(2){}*/

.sm-dn{display:block;}

.clearfix:after{content: ".";
								display: block;
								height: 0;
								clear: both;
								font-size: 0;
								visibility: hidden;}
.clearfix{display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix{display: block;zoom: 1;}
/* End hide from IE-mac */
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
header{
	position:fixed;
	width:100%;
	height:50px;	
	background-color:#444;
	z-index:100;
	top:-50px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;    
	transition: all 0.5s ease-in-out;
}
header.visible{
	top:0;
}
header nav{display:table;height:inherit;}
header nav .gNav{display:table-row;height:inherit;}
header nav .gNav-dn{}
header nav .ham{
	cursor:pointer;
	.trans(.2s);
	white-space:nowrap;
	font-weight:700;
	display:none;
	height:inherit;
	color:@baseColor_01;
	vertical-align:middle;
	padding:0 15px;
	border-left:solid 1px @baseColor_03;
}
header nav .ham .ico{
	.trans(.2s);
	display:inline-block;
	font-size:28px;
	line-height:13px;
	font-weight:bold;
	color:@baseColor_01;
	margin-right:10px;
	position:relative;
	top:3px;
	transform:scale(2,1); /* W3C */
	-webkit-transform:scale(2,1); /* Safari and Chrome */
	-moz-transform:scale(2,1); /* Firefox */
	-ms-transform:scale(2,1); /* IE 9 */
	-o-transform:scale(2,1); /* Opera */
}
header nav .ham .title{
	.trans(.2s);
}
header nav .ham:hover .ico,
header nav .ham:hover .title{
	color:@baseColor_06;
	text-shadow:0px 1px 0px #222;
}
header nav a:first-of-type{border:none;}
header nav a{
	.trans(.2s);
	font-weight:700;
	display:table-cell;
	height:inherit;
	color:@baseColor_01;
	vertical-align:middle;
	padding:0 15px;
	border-left:solid 1px @baseColor_03;
}
header nav a:hover{
	color:@baseColor_06;
	text-shadow:0px 1px 0px #222;
}

main{border-bottom:solid 5px #000;}
/*----------------------------------------------------------------------------------------------------*/
footer{
	background-color:#000;
	color:@baseColor_03;
	height:0;
	overflow:hidden;
	.trans(1s);
}
footer.expanded{
	height:250px;
}
/*----------------------------------------------------------------------------------------------------*/
#btn4hf{position:absolute;bottom:0;right:50px;padding:5px 10px;background-color:#000;color:@baseColor_01;.roundedCorners(50px;50px;0;0;);cursor:pointer;}
#btn4hf span{display:block;color:@baseColor_02;.rotate(180deg);position:relative;
	animation:scrollDownActivebtn4hf 1s;
	-moz-animation:scrollDownActivebtn4hf 1s infinite; /* Firefox */
	-webkit-animation:scrollDownActivebtn4hf 1s infinite; /* Safari and Chrome */
}
/*----------------------------------------------------------------------------------------------------*/
.w h2{text-align:center;color:@baseColor_06;font-size:32px;text-shadow:0px 1px 0px #777;}
.w h4{margin-bottom:1px;}
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/





/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
.w-cover{
	height: 0px + @clientHeight;
	opacity: 0.5; filter:alpha(opacity=50);
	
	-webkit-background-size: cover; 
	-moz-background-size: cover; 
	-o-background-size: cover; 
	background-size: cover;
		
	background-repeat:no-repeat;
	/*background-image:url(../imgs/cover-01.jpg);*/
	background-image:url(@coverImageURL);
	
	background-position:center top;
	background-attachment:scroll;
	display:table;
	width:100%;
}
.w-greeting{
	height:inherit;
	display:table-cell;
	width:inherit;
	vertical-align:middle;
	text-align:center;
}
.w-greeting h1{
	margin:10px;
	display:inline-block;
	background-color:#000;
	opacity:0.8;filter:alpha(opacity=80);
	color:@baseColor_00;
	padding:5px 15px;
	font-size:36px;
}
.w-greeting .w-scroll-down{
	position:absolute;
	bottom:40px;
	width:100%;
}
.w-greeting .w-scroll-down .scroll-down{
	.roundedCorners(10px;10px;10px;10px;);
	color:@baseColor_00;
	background-color:#000;
	opacity:0.8;filter:alpha(opacity=80);
	padding:5px 10px;
	animation:scrollDownActive 10s;
	-moz-animation:scrollDownActive 10s infinite; /* Firefox */
	-webkit-animation:scrollDownActive 10s infinite; /* Safari and Chrome */
}
.w-greeting .w-scroll-down .scrollDownActive{
	color:#000;
}
.ico-btm{}
/*----------------------------------------------------------------------------------------------------*/
.w-profile{
	background-color:#fff;
}
.w-profile .w-inner{
	width:100%;	
	min-height:250px;
}
.w-profile .w-inner div{
	width:30%;
}
.w-profile .w-inner .w-profile-img{margin:0 35%;text-align:center;width:25%;position:absolute;.trans(.5s);}
.w-profile .w-inner .w-profile-about{float:left;.trans(.5s);}
.w-profile .w-inner .w-profile-details{float:right;}
.profile-img{
	.roundedCorners(150px;150px;150px;150px;);
	border: solid 1px @baseColor_06;
	padding:8px;
	position:relative;
	top:-18px;
	left:-8px;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.profile-img{
		padding:0px;
	}
}
/*----------------------------------------------------------------------------------------------------*/
.w-abilities{.gFont01();}
.w-abilities ul{}
.w-abilities ul li{.fl(49.6%);padding:2px 0.2%;}
.w-abilities ul li div{
	.trans(0.2s);
	.tbl(96%);
	height:inherit;
	padding:3px 8px;
	background-color:@baseColor_07;
	.roundedCorners(8px;8px;8px;8px;);
}
.w-abilities ul li div:hover{
	.skill-name(@baseColor_06);
	background-color:#fff;
}
.w-abilities ul li div > span{
	.tbl-c(auto);
	vertical-align:middle;
}
.w-abilities ul li div > span:nth-of-type(2){
	text-align:right;
	white-space:nowrap;
}
.star-x16(){
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background-image:url(../imgs/star-01.png);background-position:center;background-repeat:no-repeat;position:relative;width:18px;height:16px;display:inline-block;
}
.star-x16-active{
	.star-x16();
	background-image:url(../imgs/star-00.png);
}
.star-x16-hovered(){
	margin-right:1px;	
}
.w-abilities ul li div .star-x16{.star-x16();}
.w-abilities ul li div:hover .star-x16,
.w-abilities ul li div:hover .star-x16-active{
	.star-x16-hovered();
}
.skill-name(@color:#000){
	color:@color;
}
/*----------------------------------------------------------------------------------------------------*/
.w-career{background-color:@baseColor_03;}
.w-career h4{color:@baseColor_00;text-shadow:0px 1px 2px #666;}
.w-career ul{}
.w-career ul li{.tbl();}
.w-career ul li div:nth-of-type(1){.tbl-c(40%);}
.w-career ul li div:nth-of-type(2){.tbl-c(60%);}

.w-career .w-date{color:@baseColor_07;text-shadow:0px 1px 0px #777;}
.w-career .job-title{display:block;color:@baseColor_00;text-shadow:0px 1px 2px #666;font-size:17px;}
.w-career .job-title .sep{.sep(6px);font-size:110%;}
.w-career .job-description{display:block;}
.w-career .job-location{display:inline-block;padding-top:5px;font-style:italic;color:@baseColor_06;}
/*----------------------------------------------------------------------------------------------------*/
.w-education{}
.w-education h4{color:@baseColor_04;text-shadow:0px 1px 2px @baseColor_03;}
.w-education ul{}
.w-education ul li{.tbl();}
.w-education ul li div:nth-of-type(1){.tbl-c(40%);}
.w-education ul li div:nth-of-type(2){.tbl-c(60%);}

.w-education .w-date{color:@baseColor_03;text-shadow:0px 1px 0px #fff;}
.w-education .w-title{display:block;color:@baseColor_04;text-shadow:0px 1px 2px #666;font-size:17px;}
.w-education .w-title .sep{.sep(6px);font-size:110%;}
.w-education .w-description{display:block;}
.w-education .w-location{display:inline-block;padding-top:5px;font-style:italic;color:@baseColor_06;}
/*----------------------------------------------------------------------------------------------------*/
.w-languages{
	background-color:@baseColor_03;
}
.w-languages h4{color:@baseColor_00;text-shadow:0px 1px 2px #666;}
.w-languages .w-date{color:@baseColor_07;text-shadow:0px 1px 0px #777;}
.w-languages ul{.tbl();}
.w-languages ul li{.tbl-c(33%);text-align:center}
.w-languages ul li:nth-of-type(2){.tbl-c(34%);}
/*----------------------------------------------------------------------------------------------------*/
/*.w-interests{}
.w-interests ul{display:table;width:100%;}
.w-interests li{display:table-cell;width:25%;text-align:center;padding:0 20px;border-left:solid 1px @baseColor_02;}
.w-interests li:nth-of-type(1){border:none;}
.w-interests li h3{margin:15px 0;padding:0;}
.w-judith{
	background-color:@baseColor_06;
}*/
.w-interests{.tbl();}
.w-interests .hdn-in-big{display:none;}
.interests > div{.tbl-r();}
.interests > div > div{
	.tbl-c(50%);
	text-align:center;
	vertical-align:middle;
	padding:40px 90px;	
}
.interests > div:nth-of-type(1) > div:nth-of-type(1){border-bottom:solid 1px @baseColor_02;border-right:solid 1px @baseColor_02;}
.interests > div:nth-of-type(1) > div:nth-of-type(2){border-bottom:solid 1px @baseColor_02;}
.interests > div:nth-of-type(2) > div:nth-of-type(1){border-right:solid 1px @baseColor_02;}
.interests > div:nth-of-type(2) > div:nth-of-type(2){}
.interests .w-c{
	display:block;
	width:60px;
	height:60px;
	background-color:@baseColor_00;
	float:left;
	position:absolute;
	left:50%;
	margin-top:-30px;
	margin-left:-30px;
	
	.roundedCorners(50px;50px;50px;50px;);
	
	-webkit-box-shadow: 0px 0px 0px 10px rgba(200, 200, 200, 0.5),0px 0px 0px 20px rgba(200, 200, 200, 0.3),0px 0px 0px 30px rgba(200, 200, 200, 0.10);
	-moz-box-shadow:    0px 0px 0px 10px rgba(200, 200, 200, 0.5),0px 0px 0px 20px rgba(200, 200, 200, 0.3),0px 0px 0px 30px rgba(200, 200, 200, 0.10);
	box-shadow:         0px 0px 0px 10px rgba(200, 200, 200, 0.5),0px 0px 0px 20px rgba(200, 200, 200, 0.3),0px 0px 0px 30px rgba(200, 200, 200, 0.10);
	
	animation:wc 12s;
	-moz-animation:wc 12s infinite; /* Firefox */
	-webkit-animation:wc 12s infinite; /* Safari and Chrome */
}
.interests .w-c .w-i{
	position:absolute;
	top:10px;
	.gFont02();
	width:100px;
	top:-3px;
	margin-left:-23px;
	font-size:28px;
	white-space:nowrap;
	text-align:center;
	color:@baseColor_06;
	text-shadow:0px 1px 0px #666;
}


.w-judith .w{}
.w-judith .img-judith{display:block;width:150px;height:150px;
	background-image:url(../imgs/judith-02.jpg);
	background-position:right top;
	background-size:150px;
	.roundedCorners(150px;150px;150px;150px;);
	border: solid 1px @baseColor_00;

}
/*----------------------------------------------------------------------------------------------------*/
.w-contact{
	min-height:400px;
	background-color:@baseColor_04;
}
/*----------------------------------------------------------------------------------------------------*/
.w-date{font-style:italic;.gFont01(300);font-size:90%;}
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/





/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
.form-contact{
	color:@baseColor_03;
	width:60%;
	.trans();
	margin:0 auto;
}
.form-contact .ff{
	margin-top:33px;
	height:35px;
	outline:0;
	.trans(0.2s);
	width:100%;
	padding:6px 6px;	
	color:@baseColor_06;
	background-color:@baseColor_04;
	border:none;
	border-bottom:solid 2px #ccc;
	.roundedCorners(2px;2px;2px;2px;);
	font-size:17px;
	box-sizing: border-box;
}
.form-contact .ff:focus{
	.trans(0.2s);
	border-color:#fff;
	color:@baseColor_01;
	font-size:18px;
}
.form-contact .ff-warning{color:#f00;}
.form-contact textarea.ff{min-height:24px;}
.form-contact textarea.autosize{overflow:hidden;resize:none;}

.form-contact .w-captcha{.tbl(100%);}
.form-contact .w-captcha .r{.tbl-r();}
.form-contact .w-captcha .r .c{.tbl-c(45%);vertical-align:middle;}
.form-contact .w-captcha .r .c:nth-of-type(2){vertical-align:bottom;text-align:center;position:relative;}
.form-contact .w-captcha #captcha-img {
	position:relative;
	left:10px;
	top:10px;
	/*padding-left:20px;*/
}
.form-contact .w-captcha #ico-refresh-captcha{position:absolute;bottom:10px;right:-10px;cursor:pointer;z-index:100;}
.form-contact .w-captcha #ico-refresh-captcha:hover{color:@baseColor_06;}

.form-contact .w-t{}
.form-contact .w-t > div {display:inline-block;}
.form-contact .w-t .w-cf-msg {display:none;margin-left:10px;}
.form-contact .w-t .w-cf-msg-active{display:inline-block;}
.form-contact .w-t .w-cf-msg i{position:relative;top:5px;display:none;}
.form-contact .w-t .w-cf-msg-active i.active{display:inline-block;}
.form-contact .w-t .w-cf-msg-active .msg{display:none;}
.form-contact .w-t .w-cf-msg-active .msg-active{display:inline-block;}

.form-contact .btm-submit{
	font-weight:700;
	letter-spacing:1px;
	border:solid 2px #ccc;
	background: transparent;
	padding:10px 16px;
	.trans(.2s);
}
.form-contact .btm-submit:hover{
	border:solid 2px #fff;
	color:#fff;
	background: #333;
	padding:10px 26px;
}
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/





/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1000px){

}
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 900px){
	header{display:table-cell;text-align:center;}
	header nav{display:inline-block;}

	.w-profile .w-inner{
		min-height:250px;
	}
	.w-profile .w-inner div{
		width:30%;
	}
	.w-profile .w-inner .w-profile-img{margin:0 4% 0 0;text-align:center;width:30%;
		-ms-transform: rotate(-360deg); /* IE 9 */
    -webkit-transform: rotate(-360deg); /* Chrome, Safari, Opera */
    transform: rotate(-360deg);
	}
	.w-profile .w-inner .w-profile-about{float:right;margin:0 4% 0 30%;.trans(0s);}
	.w-profile .w-inner .w-profile-details{float:right;}

}
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 800px){
	.w-profile .w-inner{
		min-height:180px;
	}
	
	.w-abilities ul li{float:none;width:100%;padding:2px 0.2%;}

	.w-career ul li{display:block;width:auto;}
	.w-career ul li div:nth-of-type(1){display:block;width:auto;}
	.w-career ul li div:nth-of-type(2){display:block;width:auto;margin-bottom:50px;}
	.w-career ul li p{margin-top:0;}
	
	.w-education ul li{display:block;width:auto;}
	.w-education ul li div:nth-of-type(1){display:block;width:auto;}
	.w-education ul li div:nth-of-type(2){display:block;width:auto;margin-bottom:50px;}
	.w-education ul li p{margin-top:0;}
	
	.w-languages ul{display:block;}
	.w-languages ul li{display:block;width:100%;text-align:center;}
	.w-languages ul li:nth-of-type(2){display:block;width:100%;}
	.w-languages ul li > div{margin-bottom:15px;}
}
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 600px){
	.sm-dn{display:none;}
	
	.w-greeting .w-scroll-down{display:none;}

	header{position:relative;display:block;top:0;height:auto;}
	header nav{display:block;height:auto;}
	header nav .ham{display:table-cell;height:50px;}
	header nav .gNav{display:block;height:auto;}
	header nav .gNav-dn{display:none;}
	
	header nav a{
		display:block;
		padding:9px 15px 10px 15px;
		border-top:solid 1px #999;
		font-size:18px;
	}
	header nav a:first-of-type{border-top:solid 1px #999;}
	
	
	
	
	
	.w-profile .w-inner div{
		width:30%;
	}
	.w-profile .w-inner .w-profile-img{margin:0 4% 0 0;text-align:center;position:relative;width:50%;margin:0 auto;.trans(.3s);
		/*-ms-transform: rotate(360deg); 
    -webkit-transform: rotate(360deg); 
    transform: rotate(360deg);*/
	}
	.w-profile .w-inner .w-profile-about{float:none;margin:0%;width:100%;}
	.w-profile .w-inner .w-profile-details{float:none;width:100%;}





	.w-interests{display:block;padding-bottom:120px;}
	.w-interests .hdn-in-big{display:block;}
	.interests > div{display:block;}
	.interests > div > div{
		display:block;
		width:auto;	
		border-bottom:solid 1px @baseColor_02;
	}
	.interests > div:nth-of-type(1) > div:nth-of-type(1),
	.interests > div:nth-of-type(2) > div:nth-of-type(1){border-right:none;}
	.interests .w-c{
		bottom:-65px;
	}
	.interests .w-c .w-i{
		position:absolute;
		top:10px;
		.gFont02();
		width:100px;
		top:-3px;
		margin-left:-23px;
		font-size:28px;
		white-space:nowrap;
		text-align:center;
		color:@baseColor_06;
		text-shadow:0px 1px 0px #666;
	}
	
	
	
	.interests > div > div{
		padding:20px 40px;
	}
	
	.form-contact{width:100%;}
	
	.footer *{font-size:14px;}
}
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 450px){
	.interests > div > div{
		padding:20px 30px;
	}
	
	.form-contact .w-captcha{display:block;}
	.form-contact .w-captcha .r{display:block;}
	.form-contact .w-captcha .r .c{display:block;width:100%;}
	.form-contact .w-captcha .r .c:first-of-type{float:none;}
	.form-contact .w-captcha .r .c:first-of-type{float:none;}
	.form-contact .w-captcha #ico-refresh-captcha{right:0;}
	.form-contact .w-t > div {display:block;}
	.form-contact .w-t .w-cf-msg {display:none;margin:20px 0 0 0;min-height:35px;}
	.form-contact .w-t .w-cf-msg-active {display:block;}
	.form-contact .btm-submit{width:100%}
	
	.footer *{font-size:13px;}
}
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 350px){
	.form-contact textarea.ff{height:60px;}
}
/*----------------------------------------------------------------------------------------------------*/

