@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  src: url("Ubuntu/Ubuntu-Light.ttf");
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url("Ubuntu/Ubuntu-Regular.ttf");
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url("Open_Sans/OpenSans-Light.ttf");
}

@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: 400;
  src: url("Open_Sans/OpenSans-Regular.ttf");
}

@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: 700;
  src: url("Open_Sans/OpenSans-Bold.ttf");
}

html, body {
	margin:0;
	padding:0;
	height:100%;
	font-family: 'Open Sans', sans-serif;
	font-size:14px;
	background: url("images/bg_light.jpg") repeat scroll 0 0;
}

h1, h2, h3 {
    color: #222222;
    font-family: 'Ubuntu', cursive;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.6em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.6em;
}

a {
    color: #5e5e5e;
}

a:hover {
	color: #3f51b5;
}

/* Wrapper, Content */

#wrapper {
	min-height:100%;
	position:relative;
	margin:0 auto;
}

#header {
	padding:2px;
	height:115px;
	width:1000px;
	margin:0 auto;
}

.fixed-nav #header {
	margin-bottom:40px;
}

#nav-wrap {
	position:relative;
	top:0px;
	width:100%;
	z-index:15;
}

.fixed-nav #nav-wrap {
	position:fixed;
}

#nav {
	width:992px;
	margin:0 auto;
	padding-right:8px;
}

#nav ul {
    float: right;
    line-height: normal;
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

#nav li {
    float: left;
}

#nav a {
    border: medium none;
	border-radius: 8px 8px 0px 0px;
    color: #1f1f1f;
    display: block;
    font-size: 20px;
    font-weight: 300;
    line-height: 36px;
    margin-right: 2px;
    padding: 7px 20px;
	padding-bottom:0px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
	background-color:#fff;
	font-family: 'Ubuntu', cursive;
	
	border: 1px solid #e7ebed;
}

#nav a:hover, #nav .current a {
    background: rgba(0, 0, 0, 0) url("images/bg_dark.jpg") repeat scroll 0 0;
	background-color:#000;
    color: #ffffff;
	border: 1px solid #222;
}

.fixed-nav #nav a {
	border-radius: 0px 0px 8px 8px;
	padding-bottom:7px;
	padding-top:0px;
}

#banner {
    background: url("images/bg_shadow.png") no-repeat scroll left bottom;
    height: 340px;
    margin: 0 auto;
    width: 1000px;
}

#banner img {
	border-radius: 10px;
}

#innerWrap {
	width:1000px;
	margin:0 auto;
}

#content {
	padding:0;
	padding-bottom:60px;
	width:680px;
	display:inline-block;
}

/* Post */

.post {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #e7ebed;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
    padding: 25px;
	color:#3b3b3b;
}

.post h1 {
    letter-spacing: -1px;
    margin-top: -5px;
    border: medium none;
    color: #222222;
}

.post .meta {
    font-size: 16px;
	font-family: 'Ubuntu', cursive;
    font-weight: 300;
    margin-bottom: 20px;
    padding: 10px 0;
    text-align: left;
	border-bottom:1px solid #e7ebed;
}

.post .meta .date, .post .meta .posted {
	display:inline-block;
	width:50%;
}

.post .meta .posted {
	text-align:right;
}

.post .entry {
    text-align: justify;
	font-weight: 300;
}

/* Sidebar */

#sidebar {
    float: right;
    margin: 0;
    padding: 30px 0 0;
    width: 270px;
}

#sidebar ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

#sidebar li {
    margin: 0;
    padding: 0;
}

#sidebar li ul {
    margin: 0;
    padding-bottom: 30px;
}

#sidebar li li {
    border-bottom: 1px solid #e7ebed;
    border-left: medium none;
    line-height: 40px;
    margin: 0;
}

#sidebar li li a {
    background: rgba(0, 0, 0, 0) url("images/arrow.jpg") no-repeat scroll left 50%;
    padding: 0 0 0 20px;
}
#sidebar h2 {
    color: #222222;
    font-size: 1.8em;
    height: 38px;
    letter-spacing: -0.5px;
    padding: 0;
}

#sidebar a {
    border: medium none;
}

#sidebar a:hover {
    text-decoration: underline;
}

/* Footer */

#footer {
	position:absolute;
	bottom:0;
	margin: 0;
	padding-top:10px;
	padding-bottom:15px;
	width:100%;
	height:35px;
	color:#666;
	background:#050505;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: normal;
	text-align: center;
}

#footer a {
	color:#666;
}

/* Images */

.imgFL, .imgFR {
    border: 1px solid #ccc;
    border-radius: 5px;
}
.imgFL {
    float: left;
    margin-right: 8px;
}
.imgFR {
    float: right;
    margin-left: 8px;
}