*{
	margin:0px;
	font-family:arial;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

*:not([color]){
	color:#333333;
}

::selection{
	color: #F8F8F8;
	background: #0072e5;
}

::-moz-selection{
	color: #F8F8F8;
	background: #0072e5;
}

::-webkit-scrollbar{
	/* background: #ff00ff; */
	/* border: solid #ff00ff 1px; */
	width: 15px;
}

::-webkit-scrollbar{
	width: 15px;
}

/* Track */
::-webkit-scrollbar-track{
	background: #DDDDDD; 
	border-radius: 3px;
	/* border-radius: 0px 3px 3px 0px; */
}

/* Handle */
::-webkit-scrollbar-thumb{
	background: #AAAAAA; 
	border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover{
	background: #004c99;
}

body::-webkit-scrollbar-track, body::-webkit-scrollbar-thumb{
	border-radius: 0px;
}

a:not([color]){
	color:#004c99;
}

li a{
	text-decoration:none;
}

a:not([href]){
	cursor:default;
}

hr{
	border-width: 0px;
	height: 1px;
	background: #DDDDDD;
}

body{
	background-color:#F8F8F8;
}

pre{
	background: #f4f9ff;
	border-radius:3px;
	border:1px #DDDDDD solid;
	padding: 15px !important;
}

/* code p{
	margin: 2px;
	display: block;
} */

pre code *{
	font-family: 'lucida console', monospace;
}

.code{
	font-family: 'lucida console', monospace;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
}

.table_without_border, .table_without_border *{
	border-width:0px;
}

.table_with_padding td{
	padding:3px;
}

.input{
	border:1px #DDDDDD solid;
	border-radius:3px;
	padding:10px;
	outline: none;
	margin:5px;
	margin-top:10px;
	margin-bottom:10px;
	background-color:#FFFFFF;
	font-size:normal;

	transition: all 0.1s;
}

.input_text{
	width:150px;
	color:#333333 !important;
}

.input_number{
	width:60px;
	color:#333333 !important;
}

.input_text_double{
	width:310px;
}

.input_button{
	background:none;
	color:#004c99;
	cursor:pointer;
	font-size:medium;
	padding:10px;
	padding-left:20px;
	padding-right:20px;
}

.input_button:hover{
	background-color:#0072e5;
	color:#F8F8F8;
}

.input_button_red{
	color:#FF0000;
	border-color:#FF0000;
}

.input_button_red:hover{
	background-color:#FF0000;
	color:#F8F8F8;
}

.input_button_on_orange{
	color:#F8F8F8;
}

.input_button_on_orange:hover{
	background-color:#F8F8F8;
	color:#004c99 !important;
}

.input:focus{
	border-color:#0072e5;
}

.input_color{
	
	border:1px #DDDDDD solid;
	border-radius:3px;
	outline: none;
	margin:5px;
	height:35px;
	background-color:#FFFFFF;
}

input:not(.no_label)[type="radio"]{
	display:none;
}

input[type="radio"] + label{
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding-left: 25px;
	margin-right: 15px;
	font-size: 13px;
}

input[type="radio"] + label:before{
	content: "";
	display: inline-block;

	width: 12px;
	height: 12px;

	position: absolute;
	left: 0;

	border-radius:7px;
	border:1px #DDDDDD solid;

	box-shadow:0px 0px 0px 3px #F8F8F8 inset;

	transition:all 0.1s;
}
input[type="radio"]:checked + label:before{
	background-color: #0072e5;
	border-color:#AAAAAA;
}

select{
	background-color:#F8F8F8;
	color:#004c99;
	cursor:pointer;
	font-size:medium;
	padding:10px;
	padding-left:20px;
	padding-right:20px;
	border:1px #DDDDDD solid;
	border-radius:3px;
	outline: none;
	margin:5px;
	font-size:normal;

	transition: all 0.1s;

}

select:focus{
	color:#004c99;
}

fieldset{
	padding:10px;
	border:none;
}

legend{
	display:inline;
}

legend h2{
	color:#004c99;
}

.section{
	border:1px #DDDDDD none;
}

.section_box{
	border-style:solid;
	border-radius:3px;
}

.section_divide_top{
	border-top-style:solid;
}

.section_divide_bottom{
	border-bottom-style:solid;
}

.section_divide_left{
	border-left-style:solid;
}

.section_divide_right{
	border-right-style:solid;
}

.menu_type_1 > ul{
	list-style-type:none;
	overflow:hidden;
	padding:0px;
}
.menu_type_1 > ul > li{
	list-style:none;
}

.menu_type_1 > ul > li > a{
	display:block;
	color:#004c99;
	padding:10px;
	padding-left:20px;
	padding-right:20px;
	width:100%;

	border:1px rgba(0,0,0,0.1) solid;
	border-top:none;

	transition: all 0.1s;
}
.menu_type_1 > ul > li:hover > a{
	background-color:#0072e5;
	color:#F8F8F8;
}

.menu_type_1 > ul > li:first-child > a{
	border:1px rgba(0,0,0,0.1) solid;
	border-radius:3px 3px 0px 0px;
}

.menu_type_1 > ul > li:last-child > a{
	border-radius:0px 0px 3px 3px;
}

.menu_type_1 > ul > li > .selected{
	background-color:#0072e5;
	color:#F8F8F8;
}

.menu_type_2 > ul{
	list-style-type:none;
	overflow:hidden;
	padding:0px;
}
.menu_type_2 > ul > li{
	list-style:none;
	float:left;
}

.menu_type_2 > ul > li > a{
	display:block;
	color:#004c99;
	padding:10px;
	padding-left:20px;
	padding-right:20px;
	width:100%;
	background-color:#F8F8F8;

	border:1px rgba(0,0,0,0.1) solid;
	border-left:none;

	transition: all 0.1s;
}
.menu_type_2 > ul > li:hover > a{
	background-color:#0072e5;
	color:#F8F8F8;
}

.menu_type_2 > ul > li:first-child > a{
	border:1px rgba(0,0,0,0.1) solid;
	border-radius:3px 0px 0px 3px;
}

.menu_type_2 > ul > li:last-child > a{
	border-radius:0px 3px 3px 0px;
}

.menu_type_2 > ul > li > .selected{
	background-color:#0072e5;
	color:#F8F8F8;
}

.menu_type_3 > ul{
	list-style-type:none;
	overflow:hidden;
	padding:0px;
	display:inline-block;
}
.menu_type_3 > ul > li{
	list-style:none;
}

.menu_type_3 > ul > li > label{
	display:block;
	color:#333333;
	padding:10px;
	padding-left:20px;
	padding-right:20px;
	width:100%;
	background-color:#F8F8F8];

	border:1px rgba(0,0,0,0.1) solid;
	border-top:none;

	transition: all 0.1s;
}
.menu_type_3 > ul > li:hover > label,
.menu_type_3 > ul > li > input:checked + label{
	background-color:#0072e5;
	color:#F8F8F8;
}

.menu_type_3 > ul > li:first-child > label{
	border:1px rgba(0,0,0,0.1) solid;
	border-radius:3px 3px 0px 0px;
}

.menu_type_3 > ul > li:last-child > label{
	border-radius:0px 0px 3px 3px;
}

.menu_type_3 > ul > li > input{
	display:none;
}

.menu_type_3 > ul > li > input + label:before{
	display: none;
}

.menu_type_2_input > .input{
	border-radius:0px 0px 0px 0px;
	margin-left:0px;
	margin-right:0px;
	display: inline-block;
}

.menu_type_2_input > .input:not(:first-child){
	border-left:none;
}

.menu_type_2_input > .input:first-child{
	border-radius:3px 0px 0px 3px;
}

.menu_type_2_input > .input:last-child{
	border-radius:0px 3px 3px 0px;
}

.menu_type_4_input{
	display: inline-block;
	border:1px #DDDDDD solid;
	border-radius:3px 3px 3px 3px;

}

.menu_type_4_input *{
	color: #004c99;
}

.menu_type_4_input *:hover, .menu_type_4_input *:hover * {
	color: #F8F8F8;
}

.menu_type_4_input > *{
	padding: 10px 15px;
	border: none;
	margin: 0px;
	height: 45px;
	vertical-align: middle;
}

.dialog_behind{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;

	background: rgba(0,0,0,0.1);
}

.dialog_behind > div{
	position: absolute;

	width: 500px;
	left: calc(50% - 250px);
	right: calc(50% - 250px);

	top: 150px;

	background: #F8F8F8;
	padding: 15px;
	border-radius: 3px;

	box-shadow: 0px 0px 10px #888888;
}

@media only screen and (min-width: 100px){

	.vertical_content_container{
		width:auto;
		max-width:1200px;
		margin:auto;
	}

	.dividing_line{
		width:100%;
		height:1px;
		background-color:rgba(0,0,0,0.1);
	}
	
	.fixed{
		position:fixed;
		width:100%;
		z-index:10;
	}
	
	.hidden{
		display:none;
	}
	
	.header_background{
		width:100%;
		/* background-image: -webkit-linear-gradient(45deg,
			rgba(255, 255, 255, .2) 25%,
			transparent 25%,
			transparent 50%,
			rgba(255, 255, 255, .2) 50%,
			rgba(255, 255, 255, .2) 75%,
			transparent 75%,
			transparent);
		background-color: #0072e5; */
		background:linear-gradient(135deg, #00ace5, #0072e5, #0039e5);
	}
	
	#header{
		padding:20px;
		padding-top:10px;
		padding-bottom:10px;
		overflow:auto;
		clear:both;
	}
	#header *{
		color:#F8F8F8;
	}

	#header_website{
		float: left;
	}

	#header_website_name{
		padding-left: 16px;

		font-family: 'Consolas';
		font-size: 4ex;
		font-weight: normal;
		letter-spacing: 4px;

		text-decoration: none;
		text-transform: uppercase;
	}

	#header_website_logo{
		border-radius: 32px;
		width: 64px;
		height: 64px;
	}

	#header_login_form{
		float:right;
	}

	#header_user_form{
		float:right;
	}

	#slogan{
		float:left;
		padding:20px;
		font-size:smaller;
		display:none;
	}

	#color_selector{
		margin-left:10px;
		margin-right:10px;
	}

	#color_selector input{
		width:15px;
		height:15px;
		margin:0px;
		border-radius:3px;
		border:none;
		outline:none;
		cursor:pointer;
		overflow:hidden;
		color:rgba(0,0,0,0);
	}

	#theme_selector{
		margin-right:10px;
	}

	#theme_selector input{
		width:15px;
		height:29px;
		margin:0px;
		border-radius:3px;
		border:none;
		outline:none;
		cursor:pointer;
		overflow:hidden;
		color:rgba(0,0,0,0);
	}

	#theme_color_difference_degree_selector{
		margin-right:10px;
	}

	#theme_color_difference_degree_selector input{
		width:15px;
		height:29px;
		margin:0px;
		border-radius:3px;
		border:1px solid #CCCCCC;
		outline:none;
		cursor:pointer;
		overflow:hidden;
		color:rgba(0,0,0,0);
		background-color:rgba(0,0,0,0);
	}

	#theming_options{
		overflow:hidden;
		opacity:0.3;
		
		transition: all 0.1s;
	}
	
	#theming_options:hover{
		opacity:1
	}
	
	.navigation{
		padding-left:20px;
		padding-right:20px;
	}

	.navigation  > ul > li *{
		z-index:1;
	}

	.navigation > ul{
		list-style-type:none;
		overflow:auto;
		padding:0px;
	}

	.navigation > ul > li{
		list-style:none;
		float:left;
	}

	.navigation > ul > li > a{
		display:block;
		padding-top:15px;
		padding-bottom:10px;
		padding-left:30px;
		padding-right:30px;
		border-radius:3px 3px 0px 0px;
		color:#F8F8F8;

		transition: all 0.1s;
	}
	.navigation > ul > li:hover > a{
		background-color:#EEEEEE;
		color:#004c99;
	}

	.navigation > ul > li > ul{
		/* visibility:hidden; */
		display: none;
		position:absolute;
		overflow:visible;
		padding:0px;
		list-style-type:none;
		min-width:150px;
	}

	.navigation > ul > li:hover > ul{
		/* visibility:visible; */
		display: block;
	}

	.navigation > ul > li > ul > li{
		list-style:none;
		text-align:left;
		overflow:visible;
	}


	.navigation > ul > li > ul > li > a{
		display:inline-block;
		color:#004c99;
		padding:10px;
		padding-left:20px;
		padding-right:20px;
		width:100%;
		background-color:#EEEEEE;
		border:1px rgba(0,0,0,0.1) solid;
		border-top:none;

		transition: all 0.1s;
	}

	.navigation > ul > li > ul > li:last-child > a{
		border-radius:0px 0px 3px 3px;
	}

	.navigation > ul > li > ul > li:first-child > a{
		border:1px rgba(0,0,0,0.1) solid;
	}

	.navigation > ul > li > ul li:hover > a{
		background-color:#0072e5;
		color:#F8F8F8;
	}

	.navigation > ul > li > ul > li > ul{
		display:inline-block;
		visibility:hidden;
		position:absolute;
		overflow:visible;
		padding:0px;
		list-style-type:none;
		min-width:200px;
		margin-left:-1px;
	}

	.navigation > ul > li > ul > li:hover > ul{
		visibility:visible;
	}

	.navigation > ul > li > ul > li > ul > li{
		list-style:none;
		text-align:left;
		overflow:visible;
	}

	.navigation > ul > li > ul > li > ul > li > a{
		display:inline-block;
		color:#004c99;
		padding:10px;
		padding-left:20px;
		padding-right:20px;
		width:100%;
		background-color:#EEEEEE;
		border:1px rgba(0,0,0,0.1) solid;
		border-top:none;

		transition: all 0.1s;
	}

	.navigation > ul > li > ul > li > ul > li:last-child > a{
		border-radius:0px 0px 3px 3px;
	}

	#title_background{
		width:100%;
		background-color:#F8F8F8;
	}

	.title{
		padding:20px;
		overflow:auto;
		clear:both;
	}

	.title h1{
		float:left;
	}

	#notification_background{
		width:100%;
		background-color:#F8F8F8;
	}

	#notification_background > div{
		max-height:150px;
		transition:all 0.3s;
		overflow:hidden;
		border-bottom:1px rgba(0,0,0,0.1) solid;
	}

	#notification_background > div > div{
		padding:10px;
		overflow:auto;
	}

	#notification_background > div > div > span{
		float:left;
	}

	#notification_background > div > div > a{
		float:right;
		cursor:pointer;
	}

	#notification_background > .notification_important{
		background-color:#FF6666;
	}

	#notification_background > .notification_important > div > span, #notification_background > .notification_important > div > a{
		color:#F8F8F8;
	}

	.wide_screen_toggle{
		float:right;
		width:40px;
		height:30px;
		border-radius:3px;
		right:0px;
		background:#DDDDDD url('image/wide_screen_toggle.png');
		cursor:pointer;
	}
	
	#scroll_to_top{
		position:fixed;
		width:40px;
		height:30px;
		display:block;
		border-radius:3px 0 0 3px;
		background:#DDDDDD url('image/scroll_to_top.png');
		cursor:pointer;
		bottom:80px;
		right:0;
		visibility:hidden;
		opacity:0;
		
		transition:all 0.2s;
	}
	.scroll_to_top_shown{
		visibility:visible !important;
		opacity:1 !important;
	}

	.content_background{
		width:100%;
		background-color:#F8F8F8;
		/*background-image:url(image/texture.png);*/
	}

	#content{
		padding:0px;
		transition:all 0.1s;
		overflow:auto;
	}

	#footer_background{
		width:100%;
	}

	#footer{
		padding:20px;
		text-align:center;
		color:#888888;
		overflow:hidden
	}

}



@media only screen and (max-width: 980px){




}
