/* 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%;
	background:  #f4f4f4;
}

.social-share {
	margin-top:  55px;
	margin-left: 20px;
}

@pointSize: 70px;
@roundSize: 1000px;

@green: #91e2a2;
@pink: #b74873;
@blue: #0fb6db;
@strange: #ffe9e3;
@transition: 0.3s;

.transition {
	-webkit-transition: all @transition ease;
	-moz-transition: all @transition ease;
	-ms-transition: all @transition ease;
	-o-transition: all @transition ease;
	transition: all @transition ease;
}

.spacer {
	clear:  both;
}

#page {
	margin:  0 auto;
	padding-top:  50px;
	
	#title {
		width:  1000px;
		margin:  0 auto;
		padding-bottom:  50px;
	}
	
	.sup {
		.unit {
			width: 1000px;
			padding: 50px 0px;
			margin:  0 auto;
			height:  120px;
			
			.question {
				font-family:  MonoCondensed-Bold;
				font-size:  20px;
				line-height:  25px;
				float:  left;
				width:  500px;
			}
			
			.answero {
				font-family:  Gothic725BlkBT;
				font-size:  20px;
				line-height:  76px;
				float:  left;
				width:  200px;
			
				.point{
					width: @pointSize;
					height: @pointSize;
					float:  left;
					cursor:  pointer;
					margin-left:  20px;
					border:  #000000 3px solid;
					text-align:  center;
					background:  #ffffff;
					
					&:hover {
						border-color: @pink;
						color: @pink;
					}
					
					&:first-child {
						margin-left:  28px;
						
						&:hover {
							border-color: @green;
							color: @green;
						}
					}
					
					-moz-border-radius: @roundSize;
					-webkit-border-radius: @roundSize;
					border-radius: @roundSize;
					-khtml-border-radius: @roundSize;
				}
			}
			
			.result {
				display:  none;
				width:  200px;
				position:  absolute;
				margin-left:  500px;
				font-family:  Gothic725BlkBT;
				font-size:  20px;
				line-height:  76px;
				
				.point{
					width: @pointSize;
					height: @pointSize;
					float:  left;
					margin-left:  20px;
					border:  @pink 3px solid;
					text-align:  center;
					color: @pink;
					background:  #ffffff;
					
					&:first-child {
						margin-left:  28px;
						color: @green;
						border-color:  @green;
					}
					
					-moz-border-radius: @roundSize;
					-webkit-border-radius: @roundSize;
					border-radius: @roundSize;
					-khtml-border-radius: @roundSize;
				}
			}
			
			.sideShare {
				float: left;
				width:  300px;
				text-align: right;
				display:  none;
				color:  @blue;
				text-decoration: underline;
				font-style: italic;
				margin-left:  200px;
				
				-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
				filter: alpha(opacity=100);
				-moz-opacity: 0;
				-khtml-opacity: 0;
				opacity: 0;
				
				.socialImg {
					cursor:  pointer;
					margin:  0px;
					padding:  0px;
				}
			}
		}
		
		&:hover {
			background: @strange;
			
			.sideShare {
				-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
				filter: alpha(opacity=0);
				-moz-opacity: 1;
				-khtml-opacity: 1;
				opacity: 1;
			}
		}
	}
}