/*******************************************************
BASE LAYOUT Page/Single/Archive
*******************************************************/

/****SET UP****/
@colorL: #00C8D7;
@colorMG: rgba(0, 219, 181, 1);
@colorMP: rgba(0, 219, 181 ,1);
@colorS: #1F323F;
	
.mixBoxShadow (@x: 0, @y: 0, @z: 3px, @blur: 0, @color: rgba(0, 0, 0, 0.4)) {
	box-shadow: @arguments;
	-moz-box-shadow: @arguments;
	-webkit-box-shadow: @arguments;
}

.mixRoundCorner (@radius: 3px) {
	border-radius: @radius;
	-moz-border-radius: @radius;
	-webkit-border-radius: @radius;
	-ms-border-radius: @radius;
	-o-border-radius: @radius;
}

.mixBoxSizing (@type: border-box) {
	-webkit-box-sizing: @type;
	-moz-box-sizing:    @type;
	box-sizing:         @type;
}


/****BASE FREAM****/
	article#fixPage{
		width: 980px;
		margin: 0 auto;
		padding: 10px;
		position: relative;
			h1{
				padding: 0 0 0 5px;
				background: @colorS;
				color: #FFF;
				font-size: 24px;
				#postData{ font-size: 15px;}
			}
			div{
				padding: 10px;
				background: #FFF;
			}
	}
	
