/* RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

body, html {
	padding:  0px;
	margin:  0px;
	width: 100%;
	height:  100%;
}

.social-share {
	margin-top:  55px;
	margin-left: 10px;
	z-index: 50;
}

.spacer {
	clear: both;
}

.box-sizing (@type: border-box) {
	-webkit-box-sizing: @type;
	-moz-box-sizing:    @type;
	box-sizing:         @type;
}

.transition(@duration: 0.4s) {
  -webkit-transition: all @duration ease;
     -moz-transition: all @duration ease;
       -o-transition: all @duration ease;
          transition: all @duration ease;
}

@person_height: 90px;
@person_width: 280px;
@blur: 10px;

.blured {
	filter: blur(@blur)!important;
	-moz-filter: blur(@blur)!important;
	-o-filter: blur(@blur)!important;
	-webkit-filter: blur(@blur)!important;
}

.page {
	width: 100%;
	height:  100%;
	min-width: 1200px;
	min-height: 600px;

	.container {
		position: relative;
		width: 100%;
		height:  100%;
		
		.first {
			position: fixed;
			top: 0px;
			left: 0px;
			width: 100%;
			height:  100%;
			z-index: 100;
			
			.start {
				cursor: pointer;
			}
		}
		
		.comments-layer {
			display: none;
			position: fixed;
			overflow: scroll;
			top: 0px;
			left: 0px;
			width: 100%;
			height:  100%;
			z-index: 100;
			
			.back {
				position: absolute;
				top: 10px;
				left: 100%;
				margin-left: -60px;
				width: 50px;
				height: 50px;
				border: #000000 2px solid;
				text-align: center;
				cursor: pointer;
				line-height: 52px;
				font-size: 30px;
				.box-sizing;
			}
		}
	
		.action{
			width: 100%;
			height:  100%;
			.transition;
			
			.bar {
				position: absolute;
				top: 0px;
				left: 0px;
				width: @person_width;
				height: 50px;
				.transition;
				z-index: 20;
			}
			
			filter: blur(0px);
			-moz-filter: blur(0px);
			-o-filter: blur(0px);
			-webkit-filter: blur(0px);
		
			.left {
				position: absolute;
				z-index: 10;
				top: 0px;
				left: 0px;
				width: @person_width;
				height:  100%;
				background-color: #100423;
				padding-top: 50px;
				.box-sizing;
							
				.persons {
				
					.person {
						height: @person_height;
						line-height: @person_height;
						text-align: right;
						padding-right: 30px;
						color: #ffffff;
						font-family: MonoCondensed-Bold;
						font-size: 15px;
						cursor: pointer;
						.transition;
						position: relative;
						
						.face {
							opacity: 0;
							position: absolute;
							width: 50px;
							height: 50px;
							top: 50%;
							margin-top: -25px;
							left: 100%;
							margin-left: -20px;
							.transition;
						}
						
						&.active {
							cursor: default;
							color: #000000;
							
							.face {
								opacity: 1;
							}
						}
					}
					
					.comments-button {
						height: @person_height;
						line-height: @person_height;
						text-align: right;
						padding-right: 30px;
						color: #ffffff;
						font-family: MonoCondensed-Bold;
						font-size: 15px;
						cursor: pointer;
						color: #000000;
						.transition;
					}
				}
			}
			
			.right {
				width: 100%;
				height: 100%;
				padding-left: @person_width;
				padding-top: 50px;
				.box-sizing;
				position: relative;
			
				.sections {
					height: @person_height;
					width: 100%;
					position: absolute;
					z-index: 9;
					top: 50px;
					left: 0px;
					padding-left: @person_width;
					.box-sizing;
					
					.section {
						float: left;
						width: 124px;
						margin: 40px 0px 0px 60px;
						font-family: MonoCondensed-Bold;
						font-size: 15px;
						line-height: 18px;
						height: @person_height - 40px;
						.box-sizing;
						cursor: pointer;
						border-bottom: transparent 10px solid;
						.transition;
						
						&.active {
							cursor: default;
							border-bottom: #100423 10px solid;
						}
					}
				}
				
				.content {
					width: 100%;
					height:  100%;
					padding-top: @person_height;
					.box-sizing;
				
					.text {
						width: 50%;
						height:  100%;
						float: left;
						
						.inner {
							width: 460px;
							padding: 50px 0px 0px 20px;
							margin: 0 auto;
							font-family: PTSerif-Regular;
							font-size: 18px;
							line-height: 27px;
							.box-sizing;
							
							 a {
							 	color: #000000;
							 }
						}
					}
					
					.image {
						width: 50%;
						height:  100%;
						float: left;
						
						.inner {
							width: 100%;
							height: 100%;
							background-size: contain;
							background-repeat: no-repeat;
						}
					}
				}
			}
		}
	}	 
}