 @charset "utf-8";
 
/**********
** Global
**********/

body {
	font-family: Georgia, serif;
/* 	font-size: 10px; */
	padding: 10px;
}

h2 {
	margin-bottom: 0.7em;
}

h3 {
	margin-top: 0.7em;
	margin-bottom: 0.5em;
}

ul {
	margin-left: 1.5em;
}

.section>ul {
	margin-bottom: 0.5em;
}

.section>ul>li>p, .section>ul>li>ul {
	margin-top: 0.3em;
	margin-bottom: 0.3em;
}

.section>ul>li:hover {
	background-color: #f7f7ff;
}

a {
	color: #0B2D54;
	text-decoration: underline;
}

@media print {
	a {
		text-decoration: none !important;
	}
}


/*********
** Layout
*********/
#header h1 {
	font-size: 1.4em;
	font-weight: bold;
	font-variant: small-caps;
	
	display: block;
	padding: 10px 12px;
	background-color: #001022;
	color: #ffffff;
	
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
}

#subheader {
	margin-top: 5px;
}

#subheader address {
	float: left;
}

#subheader div {	/*anything other than the address*/
	float: right;
	
	margin-bottom: 5px;
	clear: right;
}

#subheader .phone:before {
	content: "Phone: ";
	font-weight: bold;
}

#subheader .email:before {
	content: "Email: ";
	font-weight: bold;
}

#subheader .github:before {
	content: "Github: ";
	font-weight: bold;
}

#header:after { /*Clear after*/
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
}

#header {
	margin-bottom: 10px;
}

.section {
	margin-bottom: 20px;
}

.section > ul > li {
	page-break-inside: avoid;
}

.section > h2 {
	font-size: 1.3em;
	font-weight: bold;
	font-variant: small-caps;
	color: #001022;
	
	display: block;
	padding: 5px 5px;
/* 	background-color: #D2DFF0; */
	
	border-left: 10px solid #08121F;
	border-top: 3px solid #001022;
	border-bottom: 1px dotted #001022;
}

.offline {
	visibility: hidden;
}
@media print {
	.offline {
		visibility: visible !important;
	}
}


