@charset 'UTF-8';


/*

    Basefont

*/
html { font-size: 10px;}





/*

    Font size

*/
body { font-size: 1.6rem;}
h1 { font-size: 2.5rem;}
h2 { font-size: 2.2rem;}
h3 { font-size: 1.9rem;}





/*

    Font other styles

*/
a      { text-decoration: none; outline: none;}
strong { font-weight: bold;}
em     { font-style: italic;}





/*

    Reset default

*/
body, div,
h1, h2, h3, h4, h5, h6,
p,li,dt,dd,th,td,
form,fieldset,input,textarea,
pre,blockquote {
	margin: 0px;
	padding: 0px;
	line-height: 1.5;
}
body, div,
h1, h2, h3, h4, h5, h6,
p,li,dt,dd,th,td,
form,fieldset,
pre,blockquote,
img {
	border-width: 1px;
	border-style: none;
}
body * {
	background-repeat: no-repeat;
}





/*

    Set basics

*/

/*  Headings  */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.5;
}

/*  Paragraph  */
p {
	margin: 1em 0;
}

/*  Hr  */
hr {
	border: none;
	border-bottom: 1px #000000 solid;
}

/*  Table  */
table {
	border-collapse: collapse;
}
th, td {
	padding: 0.5em 0.75em;
	border: 1px #cccccc solid;
}
th {
	text-align: left;
	background-color: #f2f2f2;
}
table p,
table ul,
table ol,
table dl {
	padding: 0px;
	margin: 0px;
}

/*  Form  */
form input[type=text], form input[type=password], form select, form textarea {
	height: 34px;
	padding: 0;
	background-color: #ffffff;
	border: 1px #cccccc solid;
	font-size: 1.7rem;
	line-height: 1.5;
	max-width: 100%;
	box-sizing: border-box;
	border-radius: 3px;
}
form input[type=text], form input[type=password] {
	padding: 0 0.5em;
}
form textarea {
	height: auto;
	padding: 0.5em;
}
form option {
	padding: 0 0.5em;
}
form input[type=file] {
	min-height: none;
	line-height: 1;
	border: none;
}
form label {
	margin: 0 0.5em 0 0;
	font-size: 1.7rem;
}
form label input[type=checkbox],
form label input[type=radio] {
	margin: 0 0.5em 0 0;
}

/*  Image Iframe  */
body img,
body iframe {
	max-width: 100%;
}

/*  Lists  */
ul, ol, dl {
	margin: 1em 0;
	padding: 0;
}
ul li, ol li {
	margin-left: 1.25em;
	list-style-position: outside;
}
dl dt {
	font-weight: bold;
}
dl dd {
	margin-left: 1em;
}

/*  Blockquote  */
blockquote {
	position: relative;
	background-color: #eeeeee;
	padding: 1em 1.5em;
	font-style: italic;
	z-index: 1;
}
blockquote:before {
	content: "“";
	position: absolute;
	left: 0;
	top: 5px;
	font-size: 500%;
	line-height: 1em;
	color: #dddddd;
	z-index: -1;
}

/*  preformatted  */
pre {
	margin: 1em 0;
	line-height: 1.75;
	font-family: monospace;
}