﻿/*html5 semantics tags */
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {
	display: block;
}

/* =universals
These rules are applied to all elements unless otherwise specified below. */
* { margin : 0; padding : 0; }

body {
        color: #000305;
        font-size: 87.5%; /* Base font size: 14px */
        font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        line-height: 1.429;
        margin: 0;
        padding: 0;
        text-align: left;
    }

h2, h3, h4, h5, p, ul, ol {
	margin : 0 20px; padding : .5em 0;
}

img {
	border: 0px;
}

/* Anchors */
a {outline: 0;}
a img {border: 0px; text-decoration: none;}
a:link, a:visited {
	color: #ffffff;
	padding: 0 1px;
	text-decoration: none;
}
a:hover, a:active {
	color: #ffffff;
	text-decoration: none;
	text-shadow: none;
}

/* =page level container */
#pageContainer {
	margin: 0px auto 0px auto;
	width: 1000px;
	display: table;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	background-color: #003399;
}

#pageHeader {
	margin: 0px auto 0px auto;
	width: 960px;
	height: 100px;
	position: relative;
	text-align: center;
}

#contentContainer {
	margin: 0px;
	min-height: 500px;
}

#pageNav {
	margin: 0px;
	width: 200px;
	padding-top: 20px;
	padding-bottom: 20px;
	min-height: 400px;
	display: table-cell;
	background-color: #003399;
}

#pageNav nav a:link, #pageNav nav a:visited {
	color: #ffffff;
	display: inline-block;
	height: 30px;
	width: 200px;
	padding: 5px 1.5em;
	text-decoration: none;
}

#pageNav nav a:hover,
#pageNav nav a:active,
#pageNav nav .active a:link,
#pageNav nav .active a:visited {
	background: #C74451;
	color: #ffffff;
	text-shadow: none;
}

.clsMenu {
	background: #000000;
	display: block;
	height: 30px;
	width: 180px;
	padding: 5px 1.5em;
	text-decoration: none;
}

.clsMenu:hover {
	background: #C74451;
	text-shadow: none;
}

#pageSection {
	margin: 0px;
	width: 560px;
	padding-top: 20px;
	padding-bottom: 20px;
	/* min-height: 400px; */
	display: table-cell;
	background-color: red;
}

.clsSection {
	margin: 0px;
	width: 560px;
	padding-top: 20px;
	padding-bottom: 20px;
	min-height: 80px;
	background-color: white;
}

#idSectionArticle a:link,
#idSectionArticle a:visited {
	color: blue;
	padding: 0 1px;
	text-decoration: underline;
}

#idSectionArticle a:hover,
#idSectionArticle a:active {
	color: red;
	text-decoration: none;
	text-shadow: none;
}

.clsSectionArticle {
	margin: 0px;
	width: 560px;
	padding-top: 20px;
	padding-bottom: 20px;
	min-height: 200px;
	background-color: white;
}

#pageAside {
	margin: 0px;
	width: 200px;
	padding-top: 20px;
	padding-bottom: 20px;
	min-height: 400px;
	display: table-cell;
	background-color: #003399;
}

#pageFooter {
	margin: 0px auto 0px auto;
	width: 960px;
	height: 100px;
	position: relative;
	text-align: center;
}