/*------------------------------------------------------------------ 
[Table of contents] 

0. Utils 
1. Body 
    2. Header / #header 
        2.1. Navigation / #navbar
        2.2. Teaser / #teaser
    3. Content / #content
    	3.1. Main / #main
    		3.1.1. Post / .post
    		3.1.2. Post navigation / #postNav
    	3.2. Side bar / #sideBar
    4. Footer / #footer 

-------------------------------------------------------------------*/

/*------------------------------------------------------------------ 
[0. Utils]
*/
.btn,
#postNav .previous a,
#postNav .next a {
	display: inline-block;
	height:0;
	border:none;
	background:none;
	margin: 0px;    
	padding:0;
	outline:none;
	overflow:hidden;
	white-space:nowrap;
	vertical-align:middle;
	background-image: url(img/buttons.png);
}
.column-50 {
	width: 50%;
	float: left;
}
.clearer {
	clear:both;
}

/*------------------------------------------------------------------ 
[1. Body]
*/
html, body {
	font: normal 12px Arial;
	color: #3f3f3f;
	margin: 0;
}
body a {
	color: #0990a1;
}
body a img {
	border: none;
}

/*------------------------------------------------------------------ 
[1. Header / #header]
*/
#header {
	height: 421px;
	background-image: url(img/backgrounds.jpg);
	background-repeat: repeat-x;
}

/*------------------------------------------------------------------ 
[2.1. Navigation / #navbar]
*/
#navbar {
	height: 56px;
	width: 900px;
	margin: 0 auto;
	position: relative;
}
#search {
	position: absolute;
	top: 0;
	right: 25px;
	height:56px;
	line-height: 56px;
}
#search .txtField {
	width: 150px;
	height:12px;
	font: bold 14px Arial;
	margin-right: 7px;
}
.btn.home {
	width: 118px;
	padding-top: 56px;
}
.btn.home:hover {
	background-position: 0 -56px;
}

.btn.contact {
	width: 154px;
	padding-top: 56px;
	background-position: -118px 0;
}
.btn.contact:hover {
	background-position: -118px -56px;
}

.btn.search {
	width: 63px;
	padding-top: 25px;
	background-position: -272px 0;
}
.btn.search:hover {
	background-position: -272px -25px;
}

/*------------------------------------------------------------------ 
[2.2. Teaser / #teaser]
*/
#teaser {
	height: 365px;
}

/*------------------------------------------------------------------ 
[3. Content / #content]
*/
#content {
	width: 900px;
	margin: 0 auto;
	padding-bottom: 100px;
}

/*------------------------------------------------------------------ 
[3.1. Main / #main]
*/
#main {
	width: 450px;
	padding-right: 30px;
	border-right: 1px solid #e3e3e3;
	float:left;
}
.post a {
	color: #0990a1;
}

/*------------------------------------------------------------------ 
[3.1.1. Post / .post]
*/
.post {
	margin-bottom: 38px;
}
.post a {
	color: #0990a1;
}
.post h2 {
	font: bold 31px Arial;
	color: #00303d;
	padding: 20px 0 10px 0;
	margin: 0 0 10px 0;
	border-bottom: 1px solid #e3e3e3;
}
.post h2 a {
	color: #00303d;
	text-decoration: none;
}
.post small {
	font-size: 10px;
	color: #02bbc5;
}
.post .snap_preview {
	text-align: justify;
	margin: 20px 0 30px 0;
}
.post .postmetadata {
	font-size: 10px;
}
.post .comments {
	font-weight: bold;
	color:#000;
	font-size: 12px;
	display: block;
	text-align: right;
}
.post .comments a {
	color: #000000;
	text-decoration: none;
}

/*------------------------------------------------------------------ 
[3.1.2. Post navigation / #postNav]
*/
#postNav {
	width: 450px;
	position: relative;
}
#postNav .previous {
	position: absolute;
	top: 0;
	left: 0;
}
#postNav .next {
	position: absolute;
	top: 0;
	right: 0;
}

#postNav .previous a {
	width: 160px;
	padding-top: 37px;
	background-position: 0 -112px;
}
#postNav .previous a:hover {
	background-position: 0 -149px;
}
#postNav .next a {
	width: 142px;
	padding-top: 37px;
	background-position: -160px -112px;
}
#postNav .next a:hover {
	background-position: -160px -149px;
}

/*------------------------------------------------------------------ 
[3.2. Side bar / #sideBar]
*/
#sideBar {
	width: 373px;
	padding: 0 23px;
	margin-left: -1px;
	border-left: 1px solid #e3e3e3;
	float: left;
	text-align: justify;
}
#sideBar h2 {
	font: bold 24px Arial;
	margin: 3px 0 10px 0;
	color: #05abb7;
}
#sideBar h2.categories {
	font-size: 26px;
	margin-top: 0;
}
#sideBar h2.intro {
	font-size: 14px;
}
#sideBar ul,
#sideBar ol,
#sideBar li {
	padding: 0;
	margin: 0;
	font-weight: bold;
	text-align: left;
}
#sideBar ul li {
	list-style: none;
	background-image: url(img/buttons.png);
	background-repeat: no-repeat;
	background-position: -328px -176px;
	padding-left: 13px;
}
#sideBar ol {
	color: #05abb7;
	padding-left: 16px;
}
#sideBar li a {
	font-weight: normal;
	color: #383838;
}
#sideBar ul.categories li a {
	font-weight: bold;
}
#ourLinks {
	margin-top: 10px;
	color: #05abb7;
}
#ourLinks a {
	color: #606060;
}
#sideBar ul,
#sideBar ol,
#sideBar .block {
	margin-bottom: 47px;
}

/*------------------------------------------------------------------ 
[4. Footer / #footer]
*/
#footer {
	text-align: center;
	color: #FFFFFF;
	min-height:97px;
	height: auto !important;
	height: 97px;
	background-color: #004661;
	background-image: url(img/footer.png);
	background-position: center top;
	background-repeat: no-repeat;
	padding-top: 55px;
}
#footer a {
	color: #03bdc7
}