/*

  ===== CSS Index =====
  
    1. Reset CSS
    2. General Styling
    3. Header, Logo & Navigation
    4. Content Styling
    5. Sidebar
    6. Footer & Copyright
    7. Inner styling (caption, etc)
    8. Widget Styling
      8.1 Twitter Widget
      8.2 Flickr Widget
      8.3 Search Widget
  
*/

/* ===== 1. Reset CSS ===== */

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-weight: normal;
	text-decoration: none;
	outline: none;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
  font-size: 12px;
	line-height: 24px;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

blockquote {
  font-size: 18px;
  margin: 15px 0 15px 30px;
}

cite, address, em, var {
  font-style: italic;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

table tr th {
  text-align: left;
}

table td, table th {
  padding: 5px 0;
}

input, textarea {
  margin: 5px 0;
}

small, sup, sub {
  font-size: 10px;
}

sup, sup {
  position: relative;
  height: 0;
}

sup {
  vertical-align: text-bottom;
}

sub {
  vertical-align: text-top;
}

big {
  font-size: 16px;
}

tt, code, kbd, samp, pre {
  font-family: monospace;
}

del {
  text-decoration: line-through;
}

pre {
  padding: 20px;
  margin: 0 0 20px 0;
}

b, strong {
  font-weight: bold;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;

}
.clearfix {
  display: inline-block;
}

/* Hide from IE Mac \*/
.clearfix {
  display: block;
}
/* End hide from IE Mac */

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

/* ===== 2. General Styling ===== */

#container {
  width: 960px;
  margin: 0 auto;
}

#container p {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* ===== 3. Header, Logo & Navigation ===== */

#header {
  padding: 80px 20px;
}

#logo { 
  float: left;
}

#logo #title {
  margin-bottom: 5px;
}

#logo #subtitle {
  font-size: 20px;
}

#primary-nav {
  float: right;
  margin-top: 10px;
}

#primary-nav ul {
  list-style: none;
  line-height: 30px;
}

#primary-nav ul li {
  position: relative;
  float: left;
  margin-left: 20px;
  display: block;
}

#primary-nav ul li a {
  display: block;
}

#primary-nav ul li ul {
  position: absolute;
  top: 30px;
  left: -10px;
  display: none;
  width: 120px;
}

#primary-nav ul li ul li {
  float: none;
  margin-left: 0;
  height: 30px;
}

#primary-nav ul li ul li a {
  padding-left: 10px;
}

#primary-nav ul li ul li ul {
  left: -120px;
  top: 0;
}

/* ===== 4. Content Styling ===== */

#body {
  padding: 0 20px;
}

#content {
  width: 640px;
  overflow: hidden;
}

#content-full {
  width: 920px;
  overflow: hidden;
}

#content #query,
#content-full #query {
  margin-bottom: 20px;
}

.post {
 margin-bottom: 40px;
}

.post h3 {
  margin-bottom: 15px;
  line-height: 28px;
}

.sticky {
  padding: 20px 20px 5px 20px;
}

.post-wrap {
  margin: 0;
}

.post-thumbnail {
  margin-bottom: 10px;
}

.post-info {
  margin-bottom: 20px;
}

.post-info .wrap-text {
  margin-right: 10px;
}

.post-info .before-text {
  font-style: italic;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  margin-bottom: 20px;
}

.post-content p {
  padding: 0 0 20px 0;
}

.post-content ul,
.post-content ol,
.post-content dl {
  margin-bottom: 20px;
}

.post-content ul li,
.post-content ol li,
.post-content dl dd {
  margin-left: 30px;
}

.post-content ul li ul,
.post-content ol li ol,
.post-content dl dd dl {
  margin-bottom: 0;
}

.post-content dl dt {
}

.post-content ul li {
  list-style: square;
}

.post-content ol li {
  list-style: decimal;
}

.post-content ol li ol li {
  list-style: upper-alpha;
}

.post-content ol li ol li ol li {
  list-style: lower-roman;
}

.post-content table {
	margin: 30px 0;
}

.post-content .read-more {
  margin: 15px 0;
  display: block;
}

.post-comments {
  margin: 15px 0;
}

.post-comments #reply-title {
  margin: 40px 0 5px 0;
  font-size: 20px;
}

.post-comments textarea {
  resize: none;
  width: 620px;
  padding: 5px;
  margin: 10px 0 0 0;
}

.post-comments .comment {
  margin: 30px 0;
}

.post-comments .gravatar {
  float: right;
}

.post-comments .name {
  font-size: 14px;
  font-weight: bold;
}

.post-comments .name small {
  font-weight: normal;
}

.post-comments .comment-edit-link {
  margin-right: 5px;
}

.post-comments li .children {
  padding: 0 0 0 30px;
}

.post-comments .depth-1 {
  margin: 15px 0 30px 0;
}

.pagelinks {
  clear: both;
  font-size: 16px;
  font-weight: bold;
  word-spacing: 10px;
  padding: 20px 10px 30px 10px;
}

.pagelinks a {
  font-weight: normal;
  word-spacing: 0;
  padding: 5px 10px;
}

/* ===== 5. Sidebar ===== */

#sidebar {
  width: 240px;
  overflow: hidden;
}

#sidebar .widget {
  margin-bottom: 30px;
}

#sidebar .widget .widgettitle {
  margin-bottom: 10px;
}

/* ===== 6. Footer & Copyright ===== */

#footer {
  padding: 50px 20px;
}

#footer #copyright {
  font-style: italic;
}

/* ===== 7. Inner styling (caption, etc) ===== */

#inner {
  margin: 20px 0 100px 0;
  width: 920px;
}

#caption-title {
  font-size: 28px;
  margin-right: 15px;
  float: left;
}

#caption {
  font-size: 20px;
  margin-left: 15px;
  padding-top: 3px;
  float: left;
}

/* ===== 8. Widget Styling ===== */

/* ===== 8.1 Twitter Widget ===== */

.tweet_list li {
  margin-bottom: 15px;
}

/* ===== 8.2 Flickr Widget ===== */

.flickr_badge_image {
  float: left;
  margin: 0 5px 5px 0;
}

/* ===== 8.3 Search Widget ===== */

#searchform label {
  display: none;
}