@charset "UTF-8";
/* CSS Document */

/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}

/*-------------------------------------
Auther: Ryota Yamamoto
AutherURI: https://github.com/Restoration/
-------------------------------------*/
body{
	margin: 0;
	padding: 0;
}
#container{
	display: block;
	margin: 0;
	padding: 0;
	color: #ffffff;
	background: #19436b;
	line-height: 1.3;
	font-family: 'Arimo', sans-serif;

}
ul li{
	list-style-position: inside;
	list-style-type: none;
}
.boxSizing{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.clearfix:after {
     content:".";
     display: block;
     height: 0;
     clear: both;
     visibility: hidden;
}
.clearfix {
     display: inline-block;
     min-height: 1%;
}
a:link{
	color: #ffffff;
	text-decoration: none;
}
a:active{
	color: #ffffff;
}
a:hover{
	color: #ffffff;
}
a:visited{
	color: #ffffff;
}
h1{
	display: block;
	margin: 0 auto;
	color: #ffffff;
	text-align: center;
	font-size: 34px;
	font-family: 'Orbitron', sans-serif;
	font-weight: bold;
}
h2{
	margin: 0 0 16px;
	border-bottom: solid 1px #fff;
	font-size: 20px;
}
h3{
	font-size: 16px;
}

ul li{
	list-style-type: none;
	list-style-position: inside;
}

.trigger{
	width: 130px;
}
#aboutArea .text{
	margin: 0 0 30px;
}
#sampleCode ul li{
	display: inline-block;
}
.codeBox{
	margin: 0 0 20px;
}
/*Layout
--------------------*/
#header{
	display: block;
	width: 960px;
	margin: 0 auto 20px;
	padding: 24px 0 18px;
	background: #00314b;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
   -webkit-border-bottom-left-radius: 10px;
   -webkit-border-bottom-right-radius: 10px;
   -moz-border-radius-bottom-left: 10px;
   -moz-border-radius-bottom-right: 10px;
	box-shadow: 1px 1px 5px #000;
	-moz-box-shadow: 1px 1px 5px #000;
	-webkit-box-shadow: 1px 1px 5px #000;
}
#wrapper{
	display: block;
	width: 960px;
	margin: 0 auto 40px;
	padding: 34px;
	background: #00314b;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	box-shadow: 1px 1px 5px #000;
	-moz-box-shadow: 1px 1px 5px #000;
	-webkit-box-shadow: 1px 1px 5px #000;
}
section{
	margin: 0 0 30px;
}
#licenseArea{
	line-height: 2;
}
#licenseAreaInner{
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	background: #005064;
	text-shadow: 0 0 6px 6px rgb(000,000,000);
	-webkit-box-shadow:0 0 6px 2px rgba(000,000,000,0.2) inset;
	-moz-box-shadow:0 0 6px 2px rgba(000,000,000,0.2) inset;
	box-shadow:0 0 6px 2px rgba(000,000,000,0.2) inset;
}
#footer{
	display: block;
	width: 960px;
	margin: 0 auto;
	padding: 20px 0;
	background: #00314b;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
   -webkit-border-top-left-radius: 10px;
   -webkit-border-top-right-radius: 10px;
   -moz-border-radius-top-left: 10px;
   -moz-border-radius-top-right: 10px;
	box-shadow: 1px 1px 5px #000;
	-moz-box-shadow: 1px 1px 5px #000;
	-webkit-box-shadow: 1px 1px 5px #000;

}
/*CopyRight
--------------------*/
#copyright{
	display: inline-block;
	clear: both;
	width: 96.4%;
	color: #ffffff;
	text-align: right;
}

/*MordalWindowPlugIn
--------------------*/
#overLay{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}
.modalContent{
	display: none;
	overflow:auto;
	position: absolute;
	z-index: 1000;
	padding: 20px;
	background:#C0392B;
	color: #fff;
  border-radius: 3px;
}
.closeBtn{
	position: absolute;
	top: 10px;
	right: 10px;
	color: #fff;
	cursor: pointer;
}
