/*---------------------------------------------------
    LESS Elements 0.6
  ---------------------------------------------------
    A set of useful LESS mixins by Dmitry Fadeyev
    Special thanks for mixin suggestions to:
      Kris Van Herzeele,
      Benoit Adam,
      Portenart Emile-Victor,
      Ryan Faerman

    More info at: http://lesselements.com
-----------------------------------------------------*/
/*----------------------------------- 
		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,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
body {
  line-height: 1;
  color: black;
  background: white;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote, q {
  quotes: "" "";
}
/*----------------------------------- 
		LESS variables
------------------------------------*/
/*----------------------------------- 
		General
------------------------------------*/
body {
  font-family: "Droid Serif", serif;
  font-size: 16px;
  line-height: 1.5em;
  color: #222;
  background: #FFF;
  padding-bottom: 20px;
  min-width: 850px;
}
a {
  color: #2e5cab;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: underline;
}
cite {
  display: block;
  text-align: right;
  font-style: italic;
  color: #606060;
}
hr {
  border: 0;
  border-top: dashed 1px #CCC;
  padding-bottom: 20px;
  margin-top: 10px;
}
pre {
  overflow-x: auto;
  font-family: "Menlo", Courier, monospace;
  padding: 30px;
  margin-bottom: 25px;
  font-size: 15px;
  color: #F5F5F5;
  background: #444;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
code {
  font-family: "Menlo", Courier, monospace;
}
blockquote {
  padding: 35px 60px 5px 60px;
  background: url(/images/blockquote.png) no-repeat 0 30px;
  color: #444;
  min-height: 32px;
  margin: 0 0 30px 0;
}
strong, b {
  font-weight: bold;
}
em, i {
  font-style: italic;
}
p {
  margin-bottom: 25px;
}
h1 {
  font-family: "Bitter", sans-serif;
  color: #333;
  line-height: 1.3em;
  padding: 0 0 50px 0;
  font-size: 32px;
}
h2, h2 a {
  font-family: "Bitter", sans-serif;
  color: #333;
  line-height: 1.3em;
  padding: 0 0 20px 0;
  font-size: 32px;
}
h2 a:hover {
  text-decoration: none;
  border: 0;
  color: #2e5cab;
}
h3 {
  font-family: "Bitter", sans-serif;
  font-size: 21px;
  margin-bottom: 25px;
  line-height: 1.3em;
  padding-top: 25px;
  color: #000;
}
h4, h4 strong {
  font-family: "Bitter", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.1em;
  padding-top: 1em;
  font-weight: 500;
}
.overlabel, .overlabel-apply {
  position: absolute;
  top: 4px;
  left: 26px;
  width: 150px;
  z-index: 1;
  color: #AAA;
  font-size: 12px;
  cursor: text;
}
/*----------------------------------- 
		Containers
------------------------------------*/
#aside {
  width: 190px;
  margin: 60px 0;
  background: url(/images/dots_v.png) repeat-y 0 0;
  float: right;
}
#aside #logo {
  display: block;
  width: 180px;
  height: 180px;
  background: #FFD16B;
  margin-bottom: 30px;
}
#aside #intro {
  clear: both;
  font-size: 13px;
  line-height: 1.5em;
  color: #999;
  padding-left: 50px;
}
#wrapper {
  background: #FFF;
  margin: 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
#container {
  width: 810px;
  margin: 0 auto;
}
#content {
  padding: 50px 0;
  float: left;
  width: 550px;
}
#content img {
  max-width: 550px;
}
#wrapper_top {
  height: 11px;
}
#wrapper_middle {
  padding: 40px 58px 25px 54px;
}
#wrapper_bottom {
  height: 19px;
}
#sidebar {
  width: 156px;
  background: #FAFAFA;
  border-right: solid 2px #FFF;
}
/*----------------------------------- 
		Subscribe
------------------------------------*/
#subscribe {
  font-size: 13px;
  padding: 40px 40px 0 40px;
  line-height: 1.5em;
  color: #444;
}
#subscribe b {
  font-size: 26px;
  font-weight: normal;
  color: #444;
}
#subscribe span {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  color: #888;
}
#subscribe p {
  margin-bottom: 20px;
  margin-right: -40px;
}
#subscribe #subscribe_button {
  text-align: center;
  font-size: 14px;
  font-family: "Bitter", sans-serif;
  display: block;
  padding: 7px;
  color: #333;
  background: #ffd46e;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ffd46e), color-stop(1, #ffee9c));
  background: -ms-linear-gradient(bottom, #ffd46e, #ffee9c);
  background: -moz-linear-gradient(center bottom, #ffd46e 0%, #ffee9c 100%);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-bottom: solid 1px #F5E383;
  -webkit-box-shadow: #BE9144 0 2px 0;
  -moz-box-shadow: #BE9144 0 2px 0;
  box-shadow: #BE9144 0 2px 0;
  text-shadow: #FFF0AC 0 1px 0;
  font-weight: 500;
}
#subscribe #subscribe_button:hover {
  text-decoration: none;
  background: #FFFDA5;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fae67f), color-stop(1, #fdffba));
  background-image: -moz-linear-gradient(center bottom, #fae67f 0%, #fdffba 100%);
  border-bottom: solid 1px #FFF9B6;
  -webkit-box-shadow: #DCB759 0 2px 0;
  -moz-box-shadow: #DCB759 0 2px 0;
  box-shadow: #DCB759 0 2px 0;
  color: #555;
}
#subscribe #subscribe_button:active {
  position: relative;
  top: 1px;
  -webkit-box-shadow: #DCB759 0 1px 0;
  -moz-box-shadow: #DCB759 0 1px 0;
  box-shadow: #DCB759 0 1px 0;
}
/*----------------------------------- 
		Ads
------------------------------------*/
#aside_ad {
  padding: 0 0 40px 40px;
  background: url(/images/dots.png) repeat-x bottom;
}
#after_post_ad {
  background: #FAFAFA;
  padding: 30px 80px 30px 80px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#sidebar_ads {
  width: 130px;
  padding: 25px 30px 10px 30px;
  border-bottom: solid 1px #EEE;
}
/*----------------------------------- 
		Jobs
------------------------------------*/
#jobs_heading {
  padding: 7px 0 0 30px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: #CCC;
}
.nojobs {
  padding: 20px 30px 0 30px;
  font-size: 12px;
  color: #AAA;
  line-height: 1.4em;
}
#jobs .job {
  border-bottom: solid 1px #EEE;
  padding: 20px 30px;
  display: block;
  font-size: 12px;
  color: #777;
  line-height: 1.4em;
}
#jobs .job .title {
  color: #2e5cab;
  font-size: 14px;
  margin-bottom: -8px;
}
#jobs .job:hover {
  color: #333;
}
#jobs .job:hover .title {
  color: #000;
}
#jobs .job:last-child {
  border: 0;
}
#job_board a {
  border-bottom: solid 1px #EEE;
  display: block;
  padding: 6px 0 9px 30px;
  font-size: 12px;
}
/*----------------------------------- 
		Header
------------------------------------*/
#pre_header {
  border-bottom: dashed 1px #EEE;
  background: #2e5cab;
  height: 8px;
}
#header_wrapper {
  border-top: solid 6px #ffdb70;
}
#header {
  background: url(/images/dots.png) repeat-x bottom;
  position: relative;
  width: 810px;
  margin: 0 auto;
  color: #333;
}
#sub_header {
  padding: 35px 0;
  background: url(/images/dots.png) repeat-x bottom #fdfdfd;
}
#logo {
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  float: left;
  display: block;
  height: 70px;
  width: 70px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  z-index: 3;
  background: #2e5cab;
}
#logo:hover {
  background: #FFF;
}
/*----------------------------------- 
		Navigation
------------------------------------*/
#title {
  -webkit-font-smoothing: antialiased;
  letter-spacing: -1px;
  text-align: center;
  font-family: "Bitter", sans-serif;
  font-size: 23px;
  color: #555;
  height: 70px;
  line-height: 70px;
}
#title:hover {
  color: #000;
  text-decoration: none;
}
#nav {
  float: right;
  line-height: 1em;
}
#nav a {
  font-family: Georgia, serif;
  font-style: italic;
  display: block;
  float: left;
  color: #AAA;
  border: 0;
  text-decoration: none;
  font-size: 14px;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
}
#nav a span {
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: "Bitter", sans-serif;
  font-style: normal;
  text-transform: uppercase;
  color: #777;
  font-size: 13px;
  word-spacing: 2px;
}
#nav a:hover {
  color: #555;
  margin-top: -6px;
  border-top: solid 6px #E1C153;
}
#nav a:hover span {
  color: #000;
}
#nav a.active {
  margin-top: -6px;
  border-top: solid 6px #444;
}
/*----------------------------------- 
		Search
------------------------------------*/
#search_form {
  position: relative;
}
#search_form input {
  padding: 0 5px 0 25px;
  font-size: 13px;
  width: 158px;
  height: 26px;
}
/*----------------------------------- 
		Home Page Posts
------------------------------------*/
#recent_links a {
  display: block;
  position: relative;
  padding: 10px 0 10px 60px;
  background: url(/images/dots.png) repeat-x top;
}
#recent_links a .recent_date {
  position: absolute;
  top: 12px;
  left: 0;
  color: #AAA;
  font-size: 11px;
  text-transform: uppercase;
}
#recent_links a:hover {
  text-decoration: none;
}
#see_the_archives {
  padding: 10px 0 0 60px;
  background: url(/images/dots.png) repeat-x top;
}
#intro_quote {
  padding: 25px;
  background: #333;
  margin-bottom: 2px;
}
#intro_quote blockquote, #intro_quote cite {
  padding: 0;
  background: 0;
}
#metro_links {
  width: 620px;
}
.metro_link, .metro_link_top {
  font-family: "Bitter", sans-serif;
  float: left;
  width: 214px;
  height: 70px;
  padding: 30px;
  display: block;
  line-height: 1.2em;
  margin: 0 1px 1px 0;
  color: #333;
  font-size: 16px;
  line-height: 1.3em;
}
.metro_link:hover, .metro_link_top:hover {
  background: #EEE;
  color: #000;
  text-decoration: none;
}
.metro_link_top {
  width: 550px;
  font-size: 21px;
}
#see_the_archive {
  text-align: center;
  padding: 30px 0 10px 0;
}
.list_link {
  clear: both;
  padding-left: 65px;
  margin-bottom: 3px;
  position: relative;
  border-bottom: 0;
}
.list_date {
  position: absolute;
  top: 1px;
  left: 0;
  width: 50px;
  float: left;
  color: #CCC;
  font-size: 12px;
  text-align: right;
}
#post_previews {
  margin-left: -60px;
}
.post_preview img, .post_preview blockquote {
  display: none;
}
#post_previews .showquote {
  display: block;
}
#preview_posts_list {
  float: left;
  width: 400px;
  padding-right: 45px;
}
#preview_posts_list ul {
  margin-left: 15px;
  list-style-type: square;
  color: #DDD;
}
#preview_posts_list ul li {
  margin-bottom: 9px;
}
#preview_posts_list p {
  padding: 15px 0 0 15px;
}
#preview_books {
  width: 400px;
  float: left;
}
#want_more {
  clear: both;
  padding: 25px 0 15px 64px;
}
/*----------------------------------- 
		Post Formatting
------------------------------------*/
.date {
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-right: solid 1px #DDD;
  position: absolute;
  top: 0;
  left: -116px;
  width: 55px;
  background: #2e5cab;
  color: #FFF;
  text-align: center;
  padding: 10px 0;
  line-height: 1.2em;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.date .day {
  font-size: 20px;
  font-weight: 300;
}
.date .month {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  color: #BBB;
}
.comments_link_wrapper {
  text-align: center;
  margin-top: -35px;
  margin-bottom: 35px;
}
.comments_link {
  font-size: 11px;
  color: #AAA;
}
.post {
  position: relative;
}
.post ul, .post ol {
  padding-bottom: 20px;
}
.post .caption {
  text-align: center;
  color: #999;
  font-style: italic;
  margin-bottom: 15px;
}
.post .excerpt {
  font-size: 14px;
  margin: -10px 0 50px 0;
}
.post .excerpt p {
  padding-top: 5px;
  margin-bottom: 1.2em;
}
.post .excerpt img {
  display: none;
}
.post img {
  margin: 6px 0;
}
.alignleft {
  float: left;
}
.alignright {
  float: right;
}
.meta {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #AAA;
  padding-bottom: 12px;
  font-size: 12px;
}
.meta .author {
  float: right;
}
.meta span {
  letter-spacing: 0;
  font-style: italic;
  text-transform: none;
}
.comments_count {
  font-size: 14px;
  float: right;
}
.post ul, .comment ul {
  list-style-type: disc;
  margin-left: 18px;
  margin-bottom: 18px;
}
.post ol, .comment ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 18px;
}
.navigation a {
  display: block;
  float: left;
  font-size: 14px;
  background: #A64141;
  color: #FFF;
  height: 38px;
  line-height: 38px;
  cursor: pointer;
  padding: 0 12px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-top: 10px;
}
.navigation a:hover {
  background-color: #333;
  text-decoration: none;
}
.guest_author_box {
  padding: 25px;
  margin: 0 0 30px 0;
  background: #FAFAFA;
  border-left: solid 5px #EEE;
}
.guest_author_name {
  padding-bottom: 25px;
}
/*----------------------------------- 
		After Post Box
------------------------------------*/
.after_post {
  padding: 12px 0 5px 0;
}
.next_actions {
  position: relative;
  float: left;
  width: 250px;
  padding: 0 50px 0 0;
}
.after_post_subscribe {
  width: 250px;
  float: left;
}
.after_post h4 {
  font-size: 18px;
  margin-bottom: 0.6em;
}
.after_post .share_button {
  position: absolute;
  top: 82px;
  left: 70px;
}
/* FireFox */
.after_post .share_button, x:-moz-any-link, x:default {
  top: 84px;
}
/*----------------------------------- 
		Books
------------------------------------*/
.book {
  clear: both;
  position: relative;
  padding: 0 0 60px 110px;
  min-height: 125px;
}
.book h2, .book h2 a {
  letter-spacing: 0;
  margin-bottom: 0.5em;
  padding: 0;
  text-align: left;
  background: 0;
  margin: 0;
  font-size: 22px !important;
  text-transform: none;
}
.book h2:hover, .book h2 a:hover {
  text-decoration: none;
}
.book img {
  position: absolute;
  top: 0;
  left: 0;
}
.book .comments_count {
  top: 10px;
}
#content .book h2 a {
  font-size: 26px;
  letter-spacing: 0;
}
#content .book h2 a:hover {
  text-decoration: none;
}
.book_excerpt {
  color: #999;
  margin-bottom: 10px;
}
.book_excerpt a {
  padding: 8px 10px 8px 28px;
  border-top: solid 1px #EAEAEA;
  border-left: solid 1px #D6D6D6;
  border-right: solid 1px #D6D6D6;
  border-bottom: solid 1px #C0C0C0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/amazon.png) no-repeat 8px 11px;
  text-transform: none;
  letter-spacing: 0;
}
.book_excerpt .isbn {
  padding-top: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.book_preview img {
  display: none;
}
.book_preview p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5em;
}
.amazon_link {
  padding-left: 17px;
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/amazon.png) no-repeat 0 0;
}
/*----------------------------------- 
		Comments
------------------------------------*/
#show_comments {
  display: block;
  width: 250px;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
  color: #2e5cab;
}
#show_comments:hover {
  color: #000;
  text-decoration: underline;
}
#show_comments:hover a {
  color: #000;
  text-decoration: underline;
}
#show_comments_link {
  position: absolute;
  width: 250px;
  height: 20px;
  z-index: 5;
}
#comments h3 {
  margin-top: 0;
  padding-top: 0;
}
#comments_heading {
  border-top: solid 1px #EEE;
  font-size: 22px;
  padding-bottom: 6px;
  margin-bottom: 30px;
}
.comment {
  position: relative;
  padding: 20px 35px 10px 82px;
  border-bottom: solid 1px #E3E3E3;
  margin-right: -35px;
}
.comment_avatar {
  position: absolute;
  left: 0;
  top: 17px;
  width: 64px;
  height: 67px;
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/avatar.png) no-repeat;
  padding: 6px 0 0 7px;
}
.comment_author {
  font-size: 18px;
}
.comment_date {
  font-size: 13px;
  color: #999;
  margin: 2px 0 12px 0;
}
.comment p {
  margin-bottom: 1.5em;
}
.vip_comment {
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/vip_bg.png) no-repeat 0 0;
}
.vip_comment .comment_avatar {
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/vip_avatar.png) no-repeat 2px 2px;
}
.vip_comment .comment_avatar img {
  display: none;
}
.comments_closed {
  font-size: 18px;
  color: #B9B9B9;
  padding: 30px 82px;
}
/*----------------------------------- 
		Comment Form
------------------------------------*/
#comment_form {
  padding: 20px 0 0 0;
}
#comment_form input, #comment_textarea, #search_input {
  padding: 6px;
  font-size: 13px;
  border-top: solid 1px #656565;
  border-left: solid 1px #999;
  border-right: solid 1px #AFAFAF;
  border-bottom: solid 1px #C3C3C3;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 7px;
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/input_bg.png) repeat-x top #ffffff;
}
#search_input {
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/search_input.png) 0 -1px;
}
#comment_textarea {
  width: 538px;
  height: 130px;
}
#comment_form label {
  font-size: 14px;
  margin: 0;
  padding: 0 0 0 1px;
}
#comment_form_header {
  font-size: 18px;
  padding: 0 0 4px 1px;
}
#comment_form #submit_comment {
  font-size: 13px;
  border-top: solid 1px #4A6E2E;
  border-left: solid 1px #43632A;
  border-right: solid 1px #43632A;
  border-bottom: solid 1px #3A5624;
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/button.png) repeat-x top #45793e;
  color: #FFF;
  height: 38px;
  line-height: 36px;
  cursor: pointer;
  padding: 0 12px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-top: 10px;
  -webkit-box-shadow: #999 0 1px 2px;
  -moz-box-shadow: #999 0 1px 2px;
  box-shadow: #999 0 1px 2px;
}
#comment_form #submit_comment:hover, #comment_form #submit_comment:focus {
  border-top: solid 1px #448B39;
  border-left: solid 1px #3A7531;
  border-right: solid 1px #3A7531;
  border-bottom: solid 1px #32662A;
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/button.png) repeat-x top #449837;
}
#comment_form #submit_comment:active {
  border-top: solid 1px #142712;
  border-left: solid 1px #2D5329;
  border-right: solid 1px #2D5329;
  border-bottom: solid 1px #345F30;
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/button.png) repeat-x 0 -38px #3c6d38;
  line-height: 38px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#gravatar_info {
  width: 240px;
  float: right;
  top: 0;
  right: 0;
  font-size: 13px;
  color: #777;
  padding: 21px 15px 0 80px;
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/gravatar.png) no-repeat 0 18px;
  line-height: 1.4em;
}
#gravatar_info h4 {
  font-size: 15px;
  color: #222;
  padding-bottom: 0.7em;
}
/*----------------------------------- 
		Archives
------------------------------------*/
.archive_set {
  clear: both;
  position: relative;
  padding-left: 70px;
  overflow: auto;
  background: url(/images/dots.png) repeat-x top;
}
.archive_set .archive_article:last-child {
  background: none;
}
.archive_year {
  font-family: "Bitter", sans-serif;
  color: #555;
  font-size: 14px;
  position: absolute;
  top: 11px;
  left: 0;
}
.archive_article {
  font-family: "Bitter", sans-serif;
  font-size: 16px;
  display: block;
  padding: 12px 0 12px 75px;
  background: url(/images/dots.png) repeat-x bottom;
  line-height: 1.4em;
  color: #444;
  position: relative;
  border-bottom: 0;
}
.archive_article:hover {
  color: #2e5cab;
  text-decoration: none;
  border-bottom: 0;
  background: url(/images/dots.png) repeat-x bottom;
}
.archive_article .archive_article_date {
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 11px;
  text-transform: uppercase;
  color: #CCC;
}
/*----------------------------------- 
		Recent Posts
------------------------------------*/
#recent_posts ul {
  color: #DDD;
  border-top: solid 1px #EEE;
}
#recent_posts ul li {
  border-bottom: solid 1px #EEE;
}
#recent_posts ul li a {
  line-height: 1.4em;
  text-decoration: none;
  display: block;
  padding: 12px 0 30px 0;
  position: relative;
  z-index: 2;
}
#recent_posts ul li a:hover {
  color: #000;
}
#recent_posts ul li:hover {
  background: #FDFDFD;
}
.recent_post_meta {
  position: absolute;
  bottom: 12px;
  left: 0;
  font-size: 12px;
  color: #AAA;
  z-index: 1;
}
#recent_posts ul li:hover .recent_post_meta {
  color: #888;
}
/*----------------------------------- 
		a
------------------------------------*/
.isbn {
  color: #999;
  margin-top: -14px;
}
.book_title {
  font-size: 16px;
  display: block;
  padding-bottom: 0;
}
#write_for_up {
  padding: 22px 0 30px 0;
}
#write_for_up p {
  background: url(http://img.usabilitypost.com.s3.amazonaws.com/assets/icons/write_for_up.png) no-repeat 0 8px;
  font-size: 14px;
  color: #777;
  line-height: 1.4em;
  padding: 5px 0 0 78px;
}
/*----------------------------------- 
		Smashing Network
------------------------------------*/
#smashing_network {
  width: 500px;
}
.smashingwidget h3 {
  font-size: 21px;
  padding: 0 0 20px 0;
}
.smashingwidget h3 a {
  color: #222;
}
.smashingwidget h3 a img {
  display: none;
}
.smashingwidget h3 a:hover {
  text-decoration: none;
}
.smashingwidget ol li {
  position: relative;
}
.smashingwidget ol li a {
  position: relative;
  display: block;
  line-height: 1.3em;
  padding: 5px 0;
  text-decoration: none;
  padding: 12px 0 31px 0;
  z-index: 2;
  font-size: 14px;
}
.sw-source {
  position: absolute;
  bottom: 12px;
  left: 0;
  font-size: 13px;
  color: #AAA;
  z-index: 1;
}
/*----------------------------------- 
		Footer
------------------------------------*/
#footer_wrapper {
  clear: both;
  border-top: solid 1px #EEE;
}
#footer {
  background: url(/images/dots.png) repeat-x top;
  width: 720px;
  margin: 0 auto;
  font-size: 13px;
  clear: both;
  position: relative;
  color: #888;
  padding: 40px 0 40px 90px;
  height: 70px;
  line-height: 1.5em;
  font-weight: 500;
}
#footer a {
  color: #444;
}
#footer a:hover {
  color: #000;
}
body #smashing_network_link {
  position: absolute;
  left: 0;
  top: 35px;
  border: 0;
  display: block;
  width: 66px;
  height: 63px;
  background: url(/images/smashingnetwork.png) no-repeat 0 0;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
#smashing_network_link:hover {
  background: url(/images/smashingnetwork.png) no-repeat 0 -63px;
}
#credits {
  text-align: center;
  width: 904px;
  padding: 10px 0;
  margin: 0 auto;
  color: #B9B9B9;
  font-size: 11px;
}
#credits a {
  color: #A2A2A2;
}
#copyright_wrapper {
  background: #2e5cab;
  border-top: dashed 1px #EEE;
}
#copyright {
  position: relative;
  width: 300px;
  margin: 0 auto;
  padding: 15px 0 15px 200px;
  font-size: 11px;
  line-height: 1.2em;
  color: #8ba8da;
}
#copyright a {
  color: #FFF;
}
/*----------------------------------- 
		Yattery ad
------------------------------------*/
#yattery_ad {
  padding: 35px 35px 10px 145px;
  background: #FFFCED;
  line-height: 1.35em;
  margin-bottom: 35px;
  position: relative;
  color: #444;
  border-top: solid 1px #F9F2DB;
}
#yattery_ad img {
  position: absolute;
  top: 35px;
  left: 45px;
}
#yattery_ad h4 {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 21px;
  line-height: 1.2em;
  color: #000;
}
/*----------------------------------- 
		Usaura
------------------------------------*/
#usaura {
  color: #444;
  padding: 30px 0;
  margin-bottom: 30px;
}
#usaura b {
  color: #000;
}
#usaura h3 {
  font-size: 22px;
}
#usaura ul {
  font-style: italic;
  list-style-type: disc;
  margin: 0 0 22px 18px;
}
#usaura #usaura_pic {
  margin-right: 35px;
  width: 154px;
  height: 128px;
  float: left;
  background: url(/images/usaura_logo.png) no-repeat 0 0;
}
/*----------------------------------- 
		Disqus
------------------------------------*/
#dsq-footer,
.dsq-avatar,
.dsq-trackback-url,
#dsq-global-toolbar,
#dsq-sort-select,
#dsq-reply h3,
#dsq-content h3 {
  display: none !important;
}
.dsq-comment {
  background: #F4F6FB !important;
  padding: 20px !important;
  margin-bottom: 10px !important;
}
.dsq-comment-header {
  background: 0 !important;
  border: 0 !important;
  padding-left: 0 !important;
}
.dsq-commenter-name {
  font-family: "Bitter", sans-serif;
  font-weight: normal !important;
  font-size: 17px !important;
  color: #111 !important;
}
.dsq-comment-body {
  padding: 5px 10px 5px 15px !important;
  color: #444 !important;
}
.dsq-comment-footer {
  font-size: 13px !important;
  color: #72797E !important;
}
.dsq-textarea {
  margin-left: 0 !important;
}
.dsq-moderator {
  background: #FFFADB !important;
}
/*----------------------------------- 
		BuySellAds
------------------------------------*/
body .adpacks {
  background: #fff;
  padding: 0;
  margin: 0 0 0;
  border: 3px solid #eee;
}
body .one .bsa_it_ad {
  background: transparent;
  border: none;
  font-family: inherit;
  padding: 0;
  margin: 0;
}
body .one .bsa_it_ad .bsa_it_i {
  padding-right: 0;
  margin: 0 0 10px 0;
}
body .one .bsa_it_ad .bsa_it_i img {
  padding: 0;
  margin: 0;
  border: none;
}
body .one .bsa_it_ad .bsa_it_t {
  font-family: "Bitter", sans-serif;
  font-weight: normal;
  padding: 10px 0 0 0;
  clear: both;
  font-size: 14px;
  line-height: 1.3em;
}
body .one .bsa_it_ad .bsa_it_d {
  color: #888;
  font-size: 13px;
  line-height: 1.55em !important;
  padding-top: 15px;
  line-height: 1.5em;
}
body .one .bsa_it_p {
  display: none;
}
body #bsap_aplink, body #bsap_aplink:hover {
  display: block;
  font-size: 14px;
  margin: 12px 0 0;
}

