/* CSS Document */

/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Raleway:400,500,600');
@import url('http://fonts.googleapis.com/css?family=Roboto:400italic,400,700');

/* End Fonts */

/* Reset */
 
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, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video, input, form{ margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
  
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

html, textarea{ overflow: auto; }
ul{ list-style: none; }
a{ text-decoration: none; outline: 0; }
table { border-collapse: collapse; border-spacing: 0; }
em, i{ font-style: italic; }
b, strong{ font-weight: bold; }
input, textarea{ margin: 0; padding: 0; border: 0; outline: 0; }
input[type=button], input[type=submit]{ cursor: pointer; }
h1, h2, h3, h4, h5, h6{ font-weight: normal; }
 
/* End Reset */

/* General Styles */

body{ font: 16px 'Roboto', Verdana, Geneva, sans-serif; color: #333; background: #fff; }
.alignleft{ float: left; }
.alignright{ float: right; }
.aligncenter{ display: block; margin: 0 auto; }
img{ max-width: 100%; height: auto; }
.clear{ clear: both; display: block; height: 0; }
a{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;	
}
.button{
    display: inline-block;
    color: #fff;
    border: 3px solid #0194D7;
    background: #0194D7;
    line-height: 19px;
    margin: 0 5px;
    padding: 10px 15px;
    letter-spacing: 0px;
    font-weight: bold;
    font-size: 13px;
    border-radius: 25px;
    text-transform: uppercase;
}
.button.submit{
	border-color: #404040;
    background: #404040;
}
.button:hover{
	background: #404040;	
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	margin-bottom: 25px;
}
h2{
	font-size: 34px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 40px;
	letter-spacing: 3px;
}
h3{
	font-size: 24px;
	border-left: 5px solid #0D9DDA;
	padding-left: 15px;
	background: #fafafa;
	padding: 10px 15px;
}
h4{
	font-size: 18px;
	font-weight: 600;
	border-left: 3px solid #B11D8A;
	padding-left: 15px; 
	margin-bottom: 20px;

}
h5{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;

}


/* End General Styles */

/* Header */

body{
	
}
#bg-header{
	display: none;
	width: 100%;
	padding: 30px 0;
	background: #00034f;
    background: -moz-radial-gradient(center, ellipse cover, #00034f 0%, #000000 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#00034f), color-stop(100%,#000000));
    background: -webkit-radial-gradient(center, ellipse cover, #00034f 0%,#000000 100%);
    background: -o-radial-gradient(center, ellipse cover, #00034f 0%,#000000 100%);
    background: -ms-radial-gradient(center, ellipse cover, #00034f 0%,#000000 100%);
    background: radial-gradient(ellipse at center, #00034f 0%,#000000 100%);
}
#bg-header div.border-top{
	width: 100%;
	height: 2px;
}
#header{ width: 800px; margin: 0 auto; }
#header .logo{
	text-align: center;
	max-width: 200px;
	margin: 0 auto;
}
#header h1 a{
	display: block;
	width: 285px;
	height: 117px;
	background: url(../images/logo2.png) no-repeat;
	text-indent: -9999px;	
}
#header h2{
	font: 16px 'Ubuntu';
	color: #fff;
	margin-top: 40px;
	float: right;	
}
#header h2 span{ display: block; text-align: right; font: 10px 'Open Sans'; color: #999; }


/* End Header */

/* Content */

div.content{
	padding-left: 390px;
	background: #fff;
	position: relative;
}
div.panes{
	max-width: 1400px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 40px;
}
.section{ padding-top: 40px; }


/* End Content */

/* Sidebar */

#sidebar{
	width: 390px;
	float: left;
	background: white;
	color: #404040;
	box-sizing: border-box;
	padding: 20px;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	bottom: 0;
	overflow: auto;
}

#sidebar .logo{ display: block; max-width: 200px; margin: 20px auto; }
#sidebar nav ul li{ margin-top: 10px; }
#sidebar nav ul li a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	color: #404040;
	opacity: .7;
	position: relative;
	z-index: 1;
}
#sidebar nav ul li.has-submenu a:after{
	content: '';
	border: solid;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(-45deg);
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -5px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;	
	color: black;
}
#sidebar nav ul li.no-submenu a:after{ display: none; transform: rotate(-45deg) !important; }
#sidebar nav ul li.opened a:after{
	transform: rotate(45deg);	
}
#sidebar nav li.opened > a,
#sidebar nav >ul > li.active a,
#sidebar nav ul li a:hover{
	background: #f1f1f1;	
	border-radius: 22px;
	color: black;
}
#sidebar nav ul li a span{
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;	
}
#sidebar nav ul li a:hover, #sidebar nav ul li.active > a{
	opacity: 1;
}
#sidebar nav ul.submenu{
	visibility: hidden;
	padding-left: 25px;
	padding-top: 5px;
	opacity: 0;
	height: 0;
	overflow: hidden;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;	
}
#sidebar nav li.opened ul.submenu{
	opacity: 1;
	visibility: visible;
	height: auto;
}
#sidebar nav ul.submenu li{ margin-top: 5px; }
#sidebar nav ul.submenu li a{ font-size: 13px; padding: 7px 15px; background: none; }
#sidebar nav ul.submenu li a:hover,
#sidebar nav ul.submenu li.active a{
	opacity: 1;
	background: none;	
}
#sidebar nav ul.submenu li a:after{ display: none; }
#sidebar div.buttons{ margin: 20px 0; }


/* End Sidebar */

/* Texts */

div.text{ line-height: 1.6; }
div.text img{ border: 1px solid #0194D7; box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.15); margin: 10px 0; }
div.text a{
	color: #0194D7;
	position: relative;
	z-index: 1;
}
div.text a:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 80%;
	border-bottom: 1px solid #0194D7;
	opacity: 0;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;	
}
div.text a:hover:before{
	opacity: 1;
	width: 100%;	
}
div.text p,
div.text ul,
div.text ol{ margin-bottom: 25px; }

div.text ul,
div.text ol{ margin-left: 20px; }
div.text ol{ margin-left: 40px; }
div.text ul li{
	list-style: inside;
	margin-bottom: 5px;
	position: relative;
	z-index: 1;
}
div.text ul li ul, div.text ul li ol{ margin: 0; padding: 5px 0 0 25px; }
div.text ul li:before{
	display: none;
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 6px;
	height: 3px;
	background: #555;
	transform: translateY(-50%);	
}
div.text ul li > ul{ margin-top: 0; }
div.text ul li em{ display: inline-block; color: #555; background: #fafafa; padding: 4px 7px; border: 1px solid #ddd; font-style: normal; }
div.text pre{
	font: 12px/1.6 Monaco, monospace;
	margin-bottom: 20px;
	background: #F7F7F9;
	color: #666;
	border: 1px solid #ddd;
	margin-bottom: 20px;
	overflow: hidden;
	white-space: normal;
}
div.text code{
	font: 12px/1.6 Monaco, monospace;
	background: #F7F7F9;
	color: #666;
	border: 1px solid #ddd;
}

/* End Texts */

/* Footer */

#footer{ margin: 80px 0; padding: 25px; padding-left: 390px; text-align: center; border-top: 1px solid #ddd; }
#footer a{ font: 20px 'Raleway'; font-weight: 500; color: #555; }
#footer a:hover{ color: #222; }

/* End Footer */

@media screen and (max-width: 1200px){
	h2{ font-size: 28px; letter-spacing: 1px; }
	#sidebar{ width: 300px; }
	div.content{ padding-left: 300px; }
	#sidebar div.buttons{ text-align: center; }
	#sidebar div.buttons .button{ margin-bottom: 15px; }
}