@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #333;
}

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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
}

::-webkit-input-placeholder {color: #ccc}
::-moz-placeholder {color: #ccc}
:-moz-placeholder {color: #ccc}
:-ms-input-placeholder {color: #ccc} 


a{
	text-decoration:none;
	color: #939393;
	transition: .3s;
}
a:hover{
	opacity: 0.7;
}
a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}
img{
	max-width: 100%;
}
p{ letter-spacing:1px; }

.red{ color:#f00; }
.blue{ color:#00f; }
.bold{ font-weight:bold; }

.block{ display:block; }

.alignleft{ text-align:left; }
.alignright{ text-align:right; }
.aligncenter{ text-align:center; }

img.alignnone{
	display:block;
	clear:both;
	margin-bottom:10px;
}
img.alignleft{
	float:left;
	margin:0 10px 10px 0;
}
img.alignright{
	float:left;
	margin:0 0 10px 10px;
}

.mt10{ margin-top:10px; }
.mt15{ margin-top:15px; }
.mt20{ margin-top:20px; }
.mt30{ margin-top:30px; }
.mt40{ margin-top:40px; }
.mt50{ margin-top:50px; }

.mb10{ margin-bottom:10px; }
.mb15{ margin-bottom:15px; }
.mb20{ margin-bottom:20px; }
.mb30{ margin-bottom:30px; }
.mb40{ margin-bottom:40px; }
.mb50{ margin-bottom:50px; }

.flex{
	display:-webkit-box;
	display:-moz-box;
	display:box;
	display:-webkit-flex;
	display:flex;

	-moz-box-orient:horizontal;
	-webkit-box-orient:horizontal;
	flex-direction:row;

	-ms-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}
.flex_bw{
	-moz-box-pack:justify;
	-ms-box-pack:justify;
	box-pack:justify;
	flex-pack:justify;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.flex_ard{
	-moz-box-pack: justify;
	-ms-box-pack: justify;
	box-pack: justify;
	flex-pack: justify;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.flex_cen{
	-moz-box-pack: center;
	-ms-box-pack: center;
	box-pack: center;
	flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.flex_st{
	-moz-box-pack: start;
	-ms-box-pack: start;
	box-pack: start;
	flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}


.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}


