/* ESysCon, Inc. 2016
------------------------------------------------
------------------------------------------------
------------------------------------------------ */
@charset "utf-8";
/* CSS 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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}
/* General
---------------------------------------------- */
body {
	color: #1d3d76;
	font: 100% "Trebuchet MS", Verdana, sans-serif;
	padding-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
	color: #b74e07;
	font-weight: bold;
}

h1 {
	font-size: 1.5em; /* 24px/16px */
	margin-bottom: .75em;
	text-transform: lowercase;
}        

h2 {
	font-size: 1.375em; /* 22px/16px */
}
h3 {
	font-size: 1.375em; /* 22px/16px */
	color: black;
}
h4 {
	font-size: 0.875em; /* 14px/16px */
	color: white;
}
h5 {
	font-size: 1.000em; /* 16px/16px */
	color: black;
}
p {
	margin: 0 0 .5em;
	padding-right: 10px;
}
/* ID's:
---------------------------------------------- */
#masthead {

}

#container {
	margin: 20px auto;
	max-width: 950px;
	width: 100%;

}

#pageline {
	border: 15px solid black;
}

.ie6 #container { /* Applied in IE6 only */
	width: 950px;
}

#overview {
	float: left;
	width: 80%;
}

#skills {
	float: left;
	width: 75%;
}

#sidelinks {
	margin-left: 80%;
}

#footer {
	clear: both;
	border: 20px solid black;
	background: black;
	text-align: center;
	width: 100%;
	bottom: 0;
	position: fixed;
}
/* Class:
---------------------------------------------- */
.skilldescription {
	margin: 0px auto;
}

.ie6 .skilldescription {
	margin: 0px auto;
}

.servicedescription {
	margin-left: 20px;
}

.ie6 .servicedescription {
	margin: 0px auto;
}
.sidebar {
	background: #f5f8fa;
	padding: 10px;
}

.specificskills {
	margin: 0 .5em 2em 0;
}

.ie6 .specificskills {
	margin-right: 0;
}

.specificskills h1 {
	font-size: 1.25em;
	line-height: 1;
}

.link ol {
	list-style: disc; /* changes list items from numbers to bullets */
	padding-left: 18px;
}

.link .continued {
	margin-top: 0;
}

.logo {
	margin: 0;
}

.logo a {
	color: #1d3d76;
	padding: 0;
}

.logo a:hover {
	background: transparent;
	color: #597dbd;
	text-decoration: none;
}

.logo span {
	color: #1d3d76;
	display: block;
	font-size: 0.3em; /* 12px/40px */
	font-style: italic;
	font-weight: normal;
	margin: 3px 0 0 1em;	
}

.overviewpara {
	float: left;
	width: 175px;
	font-size: 1.1em;
	font-weight: bold;
	background: #f5f8fa;
}

.pics {
	float: left;
	height: 75px;
	width: 100px;
}
/*Class for Modal Dialog Box:
---------------------------------------------- */
.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}
/* "Target" (href="#ID_name" go to id="ID_name")*/
.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}
/* Create Screen Centered Box*/
.modalDialog > div {
	width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
	background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999);
}
/* Puts Circle X in Top Right Corner of .modalDialog Box*/
.closemodal {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}
/* Color the background of the Circle X when curser hovers*/
.closemodal:hover { background: red; }

/* Aside:
---------------------------------------------- */
aside h2 {
	font-size: .9375em;
	margin-bottom: 3px;
}
/* Links:
---------------------------------------------- */
a {
	padding: .2em;
}

a:link {
	text-decoration: none;
	color: white;
}
a:visited {
	color: #e6cece;
}