html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	line-height: 1.5em;
	font-size: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display:block;
}

nav ul {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	text-decoration: none;
}
a:link {
	
}
a:visited {
	
}
a:active {
	
}
a:hover {
	
}
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}
/* tables still need cellspacing="0" in the markup */
table {
	border-collapse:collapse;
	border-spacing:0;
}
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #ccc;
	margin:1em 0;
	padding:0;
}
input, select {
	vertical-align:middle;
}
/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body {
	font:13px/1.231 sans-serif;
*font-size:small;
} /* hack retained to preserve specificity */
select, input, textarea, button {
	font:99% sans-serif;
}
/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp {
	font-family: monospace, sans-serif;
}
/* 
 * minimal base styles 
 */


body, select, input, textarea {
	/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444;/* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}
/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}
/* always force a scrollbar in non-IE */ 
html {
	overflow-y: scroll;
}
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
	outline: none;
}
a, a:active, a:visited {
	color: #D95B43;
	border-bottom: #D95B43 solid;
}
a:hover {
	color: #2A2829;
	border-color: #2A2829;
}
a.img, a.img:hover {
	border: none;	
}
ul, ol {
	margin-left: 1.8em;
}
ol {
	list-style-type: decimal;
}
/* Remove margins for navigation lists */
nav ul, nav li {
	margin: 0;
}
small {
	font-size: 85%;
}
strong, th {
	font-weight: bold;
}
td, td img {
	vertical-align: top;
}
sub {
	vertical-align: sub;
	font-size: smaller;
}
sup {
	vertical-align: super;
	font-size: smaller;
}
pre {
	padding: 15px;
	/* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}
textarea {
	overflow: auto;
} /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend {
	margin-left: -7px;
} /* thnx ivannikolic! */
/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
	vertical-align: text-bottom;
}
input[type="checkbox"] {
	vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
	vertical-align: baseline;
}
.ie6 input {
	vertical-align: text-bottom;
}
/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button {
	cursor: pointer;
}
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea {
	margin: 0;
}

/* colors for form validity */
input:valid, textarea:valid {
}
input:invalid, textarea:invalid {
 border-radius: 1px;
 -moz-box-shadow: 0px 0px 5px red;
 -webkit-box-shadow: 0px 0px 5px red;
 box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid {
background-color: #f0dddd;
}


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection {
background: #2A2829;
color:#fff;
text-shadow: none;
}
::selection {
background:#2A2829;
color:#fff;
text-shadow: none;
}
/*  j.mp/webkit-tap-highlight-color */
a:link {
	-webkit-tap-highlight-color: #2A2829;
}
/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
	width: auto;
	overflow: visible;
}
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
	-ms-interpolation-mode: bicubic;
}
/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir {
	display: block;
	text-indent: -999em;
	overflow: hidden;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
}
/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
	display: none;
	visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
	visibility: hidden;
}
/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	visibility: hidden;
}
.clearfix:after {
	clear: both;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
	zoom: 1;
}



 /* Primary Styles
    Author: Joshua Sortino
	
	*/
	
/* Main Styles */
body {
	background: #fdfdfd url(../images/background.gif);
	background-size: 1280px 587px;
	font-family: Georgia, "Times New Roman", Times, serif;
	min-width: 1024px;
}
.wrapper {
	width: 90%;
	padding: 0 10px;
	margin: 20px auto;
}
header {
	position: relative;	
}
#logo {
	margin-top: 0;
	width: 20%;
}
#logo img {
	max-width: 181px;
	max-height: 140px;
}
/* Login Lightbox */
#signup {
	position: fixed;
	top: 30%;
	left: 30%;
	width: 500px;
	height: 300px;
	background-color: #fff;
	border: 2px solid #000;
	padding: 25px;
	box-shadow: 0px 0px 40px 1px rgba(0,0,0,0.4);
	box-sizing: border-box;
	border-radius: 5px;
	-moz-box-shadow: 0px 0px 40px 1px rgba(0,0,0,0.4);
	-moz-box-sizing: border-box;
	-moz-border-radius: 5px;
	-webkit-box-shadow: 0px 0px 40px 1px rgba(0,0,0,0.4);
	-webkit-box-sizing: border-box;
	-webkit-border-radius: 5px;
	z-index: 9999;
}
#signup h2 {
	font-size: 21px;
	margin-bottom: 10px;
}
#signup img {
	margin-left: 6px;
	margin-top: 10px;
}
#signup a {
border: none;	
}
.facebook-login {
float: left;
width: 200px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.alternative {
	width: 50px;
	border-left: 4px solid #000;
	margin-left: 8px;
	float: left;
	height: 100%;
	font-size: 32px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: relative;
}
.alternative .or {
	position: absolute;
	top: 100px;
	left: -22px;
	height: 40px;
	width: 40px;
	background-color: #fff;
}
.dolody-login {
width: 180px;
float: left;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;	
}
.form-element {
	margin-bottom: 10px;
	width: 100%;
}
.form-element input {
	width: 96%;	
}
.form-submit {
	float: right;
}
.no-account {
	width: 100%;
	text-align: center;
	clear: both;
}
/* Navigation Styles */
#content-nav {
	background-image: url(../images/backgrounds/content-nav.png);
	width: 100%;
	margin: 0 auto;
	height: 35px;
}
.date-selector {
	font-size: 16px;
	float: left;
	padding: 5px;
	margin-left: 10%;
	text-transform: uppercase;
	font-weight: 600;
}
.date-selector span {
	padding: 0 15px;
}
.date-selector span a {
	border-width: 1px;	
}
.current-issue {
	font-weight: 900;
		border-left: 1px dotted #2a2829;
	border-right: 1px dotted #2a2829;	
}
#quick-links {
	float: right;
	width: 50%;
	text-transform: uppercase;
	padding: 5px;
	margin-right: 10%;
}
#quick-links ul {
	margin: 0;
padding: 0;
width: 100%;
float: right;
}	
#quick-links ul li {
	display: inline;
	float: right;
	font-size: 16px;
	list-style: none;
	margin-left: 3.5%;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 600;
}
#quick-links ul li a {
	border-width: 1px;
}
.secondary-nav .nav-wrapper {
	float: left;
	margin: 15px auto -35px;
	width: 100%;
	max-width: 1440px;
}
.main-nav {
	background-image: url(../images/backgrounds/primary-nav.jpg);
	background-repeat: repeat-x;
	background-position: center;
	width: 100%;
	height: 140px;
	margin: 0 auto;
	display: inline-block;
	z-index: 1;
	position: relative;
}
.main-nav .nav-wrapper {
	margin: 0 auto;
	padding: 0 8.33%;
	max-width: 1440px;
}
.main-nav ul {
	list-style: none;
	color: #2a2829;
	font-size: 21px;
	width: 100%;
}
.main-nav ul li {
	float: left;
	text-transform: uppercase;
	font-weight: light;
	text-align: center;
	width: 10%;
	height: 109px;
	margin-top: 24px;
}
.ribbon {
	height: 109px;
	width: 99px;
	background-size: 99px 109px;
	
}
.ribbon:hover {
	background-image: url("../images/backgrounds/ribbon.png");
	background-position: center bottom;
	background-repeat: no-repeat;
}
.spacer {
		padding-top: 30px;
}
.main-nav ul li a:link, .main-nav ul li a:active, .main-nav ul li a:visited {
	color: #2a2829;	
	border: none;
}
.main-nav ul li a:hover {
	color: #2a2829;
}
.main-nav ul li img {
	width: 100%;
	max-width: 181px;	
}
/* Ribbon Colors */
.main-nav .design:hover {
	background-color: #ff6b4f;	
}
.main-nav .development:hover {
	background-color: #d62e4a;	
}
.main-nav .inspiration:hover {
	background-color: #8A505E;	
}
.main-nav .showcase:hover {
	background-color: #be5165;	
}
.main-nav .interviews:hover {
	background-color: #70a1a5;	
}
.main-nav .tutorials:hover {
	background-color: #6fa988;	
}
.main-nav .comics:hover {
	background-color: #A0A479;	
}
.main-nav .miscellaneous:hover
 {
	background-color: #ccbda6;	
}
.main-nav .design-active {
	height: 109px;
	width: 99px;
	background-image: url("../images/backgrounds/ribbon.png");
	background-position: center bottom;
	background-repeat: no-repeat;	
	background-color: #ff6b4f;
}
.main-nav .development-active {
		height: 109px;
	width: 99px;
	background-image: url("../images/backgrounds/ribbon.png");
	background-position: center bottom;
	background-repeat: no-repeat;	
	background-color: #c02942;	
}
.main-nav .inspiration-active {
		height: 109px;
	width: 99px;
	background-image: url("../images/backgrounds/ribbon.png");
	background-position: center bottom;
	background-repeat: no-repeat;	
	background-color: #542437;	
}
.main-nav .showcase-active {
		height: 109px;
	width: 99px;
	background-image: url("../images/backgrounds/ribbon.png");
	background-position: center bottom;
	background-repeat: no-repeat;	
	background-color: #53777a;	
}
.main-nav .interviews-active {
		height: 109px;
	width: 99px;
	background-image: url("../images/backgrounds/ribbon.png");
	background-position: center bottom;
	background-repeat: no-repeat;	
	background-color: #797a53;	
}
.main-nav .tutorials-active {
		height: 109px;
	width: 99px;
	background-image: url("../images/backgrounds/ribbon.png");
	background-position: center bottom;
	background-repeat: no-repeat;	
	background-color: #ff6b4f;	
}
.main-nav .comics-active {
		height: 109px;
	width: 99px;
	background-image: url("../images/backgrounds/ribbon.png");
	background-position: center bottom;
	background-repeat: no-repeat;	
	background-color: #ff6b4f;	
}
.main-nav .miscellaneous-active
 {
	 	height: 109px;
	width: 99px;
	background-image: url("../images/backgrounds/ribbon.png");
	background-position: center bottom;
	background-repeat: no-repeat;	
	background-color: #ff6b4f;	
}
.secondary-nav {
	margin: 0 10%;
	z-index: 2;
	position: relative;
}
.secondary-nav ul li img {
	margin-bottom: -3px;
	margin-right: 3px;
}
.options-nav {
	margin: 0 auto;
	list-style: none;
	color: #2A2829;
	font-size: 14px;
	height: 40px;
	float: left;
}
.options-nav li {
	margin: 0 0 0 22px;
	float: left;
	font-weight: light;
}
.options-nav li img {
	margin-right: 5px;
}
.options-nav li a:link, .options-nav li a:active, .options-nav li a:visited {
	color: #2A2829;	
	border: none;
}
.options-nav li a:hover {
	color: #D95B43;
	border-bottom: 2px solid #D95B43;
}
.user-nav {
	margin: 0 auto;
	list-style: none;
	color: #2A2829;
	font-size: 14px;
	height: 40px;
	float: right;
}
.user-nav li {
	margin: 0 0 0 22px;
	float: left;
	font-weight: light;
}
.user-nav li a:link, .user-nav li a:active, .user-nav li a:visited {
	color: #2A2829;	
	border: none;
}
.user-nav li a:hover {
	color: #D95B43;
	border-bottom: 2px solid #D95B43;
}

#main {
	max-width: 1440px;
	margin: 0 auto;
}
/* Footer */
footer {
	float: none;
	padding: 25px 0;
	width: 100%;
	text-align: center;
	clear: both;
}
.footer {
	margin-top: 10px;
	background-image: url(../images/backgrounds/footer.jpg);
	width: 100%;
	border-top: 2px solid #fff;
	border-bottom:  2px solid #fff;
	box-shadow: 0 0px 0 1px rgba(42, 40, 41, 1);
	height: 365px;
}
.footer .footer-wrapper {
	margin: 0 8.33%;	
}
.footer ul {
	list-style: none;
	color: #2a2829;
	font-size: 21px;
	width: 100%;
	margin: 30px 0;
}
.footer .parent li {
	display: block;
	text-transform: uppercase;
	font-weight: light;
	text-align: left;
	width: 12.4%;
	float: left;
}
.footer ul li h1 {
	font-weight: 300;
}
.footer ul li ul {
	list-style: none;
	color: #2a2829;
	font-size: 16px;
	width: 100%;
	font-family: Georgia, "Times New Roman", Times, serif;
}
.footer ul li ul li {
	float: none;
	clear: both;
	width: 100%;
	text-transform: capitalize;
	font-weight: light;
	text-align: left;
	margin-top: 5px;
	height: 15px;
}
.footer .child li {
	display: block;
	width: 100%;
	margin-top: 18px;
}
/* Favorites Panel */
/* Collapsed (This should be the default state */
.favorites-panel  {
	z-index: 9998;
	width: 300px;
	height: 400px;
	background: #2A2829 url("../images/backgrounds/mesh.gif") repeat;
	-moz-border-radius: 0 0 5px 0;
	-webkit-border-radius: 0 0 5px 0;
	border-radius: 0 0 5px 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 2px solid #fff;
	border-left: none;
	padding: 12px;
	box-shadow: 0 0px 0 1px rgba(42, 40, 41, 1);
	-moz-box-shadow: 0 0px 0 1px rgba(42, 40, 41, 1);
	-webkit-box-shadow: 0 0px 0 1px rgba(42, 40, 41, 1);
	position: fixed;
	left: -301px;
	top: 240px;
	transition: .5s left;
	-webkit-transition: .5s left;
	-moz-transition: .5s left;
}
.favorites-panel:hover  {
	z-index: 9998;
	width: 300px;
	height: 400px;
	background: #2A2829 url("../images/backgrounds/mesh.gif") repeat;
	-moz-border-radius: 0 0 5px 0;
	-webkit-border-radius: 0 0 5px 0;
	border-radius: 0 0 5px 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 2px solid #fff;
	border-left: none;
	padding: 12px;
	box-shadow: 0 0px 0 1px rgba(42, 40, 41, 1);
	-moz-box-shadow: 0 0px 0 1px rgba(42, 40, 41, 1);
	-webkit-box-shadow: 0 0px 0 1px rgba(42, 40, 41, 1);
	position: fixed;
	left: 0px;
	top: 240px;
}
.expanded {
	position: fixed;
	left: 0;
	top: 240px;
}
.favorites-panel .tab {
	width: 40px;
	height: 75px;
	-moz-border-radius: 0 5px 5px 0;
	-webkit-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #2A2829 url("../images/backgrounds/mesh.gif") repeat;
	padding: 6px 0;
	position: absolute;
	right: -40px;
	top: -2px;
	z-index: 9999;
	border: 2px solid #fff;
	border-left: none;
	box-shadow: 1px 0 0 0 rgba(42, 40, 41, 1), 1px 1px 0 0 rgba(42, 40, 41, 1), 1px -1px 0 0 rgba(42, 40, 41, 1);
	-moz-box-shadow: 1px 0 0 0 rgba(42, 40, 41, 1), 1px 1px 0 0 rgba(42, 40, 41, 1), 1px -1px 0 0 rgba(42, 40, 41, 1);
	-webkit-box-shadow: 1px 0 0 0 rgba(42, 40, 41, 1), 1px 1px 0 0 rgba(42, 40, 41, 1), 1px -1px 0 0 rgba(42, 40, 41, 1);
}
.tab a {
	border: none;	
}
.tab a, .tab a:link, .tab a:visited, .tab a:active {
	color: #D95B43;
	font-size: 24px;
	text-align: center;
	border: none;
}
.tab a:hover {
	color: #fff;
}
.favorites-count {
	margin-left: 5px;
}
.links ul li .design a {
	color: #ff6b4f;
	border-color: #ff6b4f;	
}
.links ul li .development a {
	color: #d62e4a;
	border-color: #d62e4a;		
}
.links ul li .inspiration a {
	color: #8A505E;	
	border-color: #8A505E;	
}
.links ul li .showcase a {
	color: #be5165;	
	border-color: #be5165;
}
.links ul li .interviews a {
	color: #70a1a5;
	border-color: #70a1a5;		
}
.links ul li .tutorials a {
	color: #6fa988;	
	border-color: #6fa988;
}
.links ul li .comics a {
	color: #A0A479;
	border-color: #A0A479;	
}
.links ul li .miscellaneous a {
	color: #ccbda6;
	border-color: #ccbda6;	
}
.favorites-panel h1 {
	text-align: center;
	font-size: 21px;
	font-weight: 300;
	color: #fff;
}
.favorites-panel .tab .icon {
	width: 28px;
	height: 28px;
	margin: 0 auto;
}
.favorites-panel .tab .icon a {
	border: none;	
}
.favorites-panel .links {
	padding: 20px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.favorites-panel .links ul {
	list-style: none;
	margin-left: 0;
}
.favorites-panel .links ul li {
	height: 60px;
	clear: both;
	float: none;
}
.favorites-panel .links ul li .link a {
	border-width: 1px;	
}
.favorites-panel .links a:hover {
	color: #fff;
	border-color: #fff;
}
.favorites-panel .links ul li .link {
		float: left;
		width: 200px;
}
.favorites-panel .links ul li .trash {
	float: right;	
	width: 16px;
}
.favorites-panel .links ul li .trash a {
	border: none;
}
.favorites-panel .view-all {
	text-align: right;
}
.favorites-panel .view-all a {
	color: #fff;
	border-color: #fff;
	border-width: 1px;
}
/* Favorites Links */
.add-favorite {
	display: inline;
}

/* Box Styles */
.container {
	float: left;
}
.one-column {
	width: 23.35%;
}
.two-column {
	width: 48.7%;
}
.three-column {
	width: 74.35%;
}
.four-column {
	width: 97%;
}
.content {
	width: 74.35%;
	margin-right: 1.15%;	
}
.sidebar {
	width: 23.35%;
	margin-left: 1.15%;	
}
.left {
	margin-right: 1.15%;
}
.right {
	margin-left: 1.15%;
}
.center {
	margin: 0 1.15%;
}
.double {
	margin: 0 1.124%;
}
.bar {
	background-color: #2A2829;
	border: 5px #fff;
	height: 5px;
	width: 100%;
	float: left;
	margin-top: 20px;
}
.box-container {
	clear: both;	
}
.sub-box-small {
	width: 31.8%;
	margin: 0 1.15%;
	float: left;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.sub-box-small p {
	display: inline;
}
.container p {
	display: inline;	
}
.sub-box-small:first-child {
	margin-left: 0;	
}
.sub-box-small:last-child {
	margin-right: 0;	
}
.first {
	margin-left: 0;	
}
.last {
	margin-right: 0;	
}
.quote-large {
	font-weight: 700;
	font-style: italic;
	font-size: 24px;
	-webkit-text-shadow: 1px 1px #fff, 2px 2px #666565;
	text-shadow: 1px 1px #fff, 2px 2px #666565;
}
.quote-author {
	margin-top: 10px;
	font-weight: 700;
	float: right;
}
.comment-wrapper {
	margin: 0 0 10px 0;
	width: 100%;
	display: block;
}
.comment-wrapper:last-of-type {
	margin: 0;	
}
.comment-container {
	display: inline-block;
	width: 73%;
	margin: 0 0 10px 10px;
}
.fame-wrapper {
	margin: 0 0 10px 0;
	width: 100%;
	display: block;
}
.fame-wrapper:last-of-type {
	margin: 0;	
}
.fame-container {
	display: inline-block;
	width: 73%;
	margin: 0 0 10px 10px;
}
.fame-container h3 {
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
}

/* Downloads */
.download-wrapper {
	margin: 0 0 10px 0;
	width: 100%;
	display: block;
}
.download-wrapper p {
	display: inline;	
}
.download-container {
	display: inline-block;
	width: 73%;
	margin: 0 0 10px 10px;
}
.download-image {
	width: 100%;
	background-color: #c0c0c0;
	border: 2px solid #2a2829;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	height: 120px;
	margin: 0 0 10px 0;
	overflow: hidden;
}
.archive-wrapper {
	margin: 0 0 10px 0;
	width: 100%;
	display: block;
}
.archive-container {
	display: inline-block;
	width: 73%;
	margin: 0 0 10px 10px;
}
.archive-image {
	width: 100%;
	height: 75px;
	background-color: #c0c0c0;
	border: 2px solid #2a2829;
}
.dummy-image-small {
	width: 100%;
	height: 120px;
	background-color: #c0c0c0;
	border: 2px solid #2A2829;
	margin: 0 0 10px 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow: hidden;
}
.dummy-image-medium {
	width: 100%;
	height: 240px;
	background-color: #c0c0c0;
	border: 2px solid #2A2829;
	margin: 0 0 10px 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow: hidden;
}
.dummy-image-large {
	width: 480px;
	height: 240px;
	background-color: #c0c0c0;
	border: 2px solid #2A2829;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow: hidden;
}
.image-left {
	float: left;
	margin: 0 25px 10px -30px;	
}
.image-right{
	float: right;
	margin: 0 0px 10px 20px;	
}
.arrows {
	margin-top: 8px;
	display: inline;
	float: right;
	}
.arrows img {
	margin-left: 2px;	
}
.arrows a {
border: none;	
}
.chimin-input {
	background: url(../images/chimein-input.gif);
	width: 220px;
	height: 86px;
	margin: 15px 0 15px 0;
}
.avatar {
	width: 36px;
	height: 36px;
	background-color: #c0c0c0;
	border: 2px solid #2a2829;
	float: left;
	overflow: hidden;
}
.quick-tutorial li {
	width: 45%;
	float: left;
	margin: 15px 5% 0 0;
}
/* Secondary Pages */
.sidebar {
	float: left;	
}
.content {
	float: left;	
}

/* Article Layout */
.article .box-container {
	clear: both;
	margin-bottom: 45px;
	float: left;
}
.article-info {
		background-color: #fff;
	color: #2A2829;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #b8b8b8;
	-moz-box-shadow: 0 0 0 2px #fff inset;
	-webkit-box-shadow: 0 0 0 2px #fff inset;
	width: 100%;
	float: left;
	text-transform: uppercase;
	margin: 5px 0 25px 0;
}
.article p {
	line-height: 1.5em;
	margin-bottom: 30px;
}
.author a:link, .author a:active, .author a:visited {
	color: #D95B43;	
	border: bottom #D95B43 2px ;
}
.author a:hover {
	color: #2A2829;
	border-color: #2A2829;
}
.first-paragraph:first-letter {
	font-size: 18px;
}
.first-paragraph:first-line {
	text-transform: uppercase;
	font-weight: bold;	
}
.article-info .tags {
	float: right;
}
.article-info .author {
	float: left;	
}
.article-comment {
	background-color: #fff;
	color: #2A2829;
	padding: 10px;
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing: border-box;
	border: 1px solid #b8b8b8;
	-moz-box-shadow: 0 0 0 2px #fff inset;
	-webkit-box-shadow: 0 0 0 2px #fff inset;
	width: 100%;
	float: left;
	margin: 5px 0 20px 0;
	position: relative;
}
.content .child {
	margin: 5px 0 20px 60px;
}
.article-comment p {
	margin: 10px;	
}
.article-comment .profile-image {
	margin-right: 20px;	
}
/* Category Layout */
.category .box-container {
	margin-bottom: 45px;
	float: left;
}
.category-story {
	margin: 0 1.15% 65px 0;
	float: left;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
.category-story h1 {
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	text-transform: uppercase;
	margin: 0 0 10px 0;
}
.category-image {
	width: 300px;
	height: 150px;
	background-color: #c0c0c0;
	border: 2px solid #2A2829;
	margin: 0 15px 15px 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: left;
}
.story-info {
	background-color: #fff;
	color: #2A2829;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #b8b8b8;
	-moz-box-shadow: 0 0 0 2px #fff inset;
	-webkit-box-shadow: 0 0 0 2px #fff inset;
	width: 100%;
	float: left;
	text-transform: uppercase;
	margin: 5px 0 0 0;
}
.tags {
	float: left;
	font-size: 11px;
}
.comments {
	float: right;
	margin-top: 20px;
}
.comments a:link, .comments a:active, .comments a:visited {
	color: #2A2829;	
}
.comments a:hover {
	color: #D95B43;
	border-bottom: 2px solid #D95B43;	
}
/* Profile Page */
.profile-info {
	background-color: #fff;
	color: #2A2829;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #b8b8b8;
	-moz-box-shadow: 0 0 0 2px #fff inset;
	-webkit-box-shadow: 0 0 0 2px #fff inset;
	width: 100%;
	float: left;
	text-transform: uppercase;
	margin: 5px 0 20px 0;
	position: relative;
}
.edit {
	position: absolute;
	top: -25px;
	right: 5px;	
}
.profile-image {
	width: 73px;
	height: 73px;
	background-color: #c0c0c0;
	border: 2px solid #2A2829;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: left;
	text-transform: none;
}
.social-links {
	float: left;
	width: 80%;	
	margin-left: 50px;
	margin-top: 8px;
}
.social-links .link img {
	margin-bottom: -3px;
	margin-right: 5px;
	float: left;	
}
.social-links .twitter {
	float: left;
	width: 30%;
	margin-bottom: 20px;
}
.social-links .facebook {
	float: left;
	width: 30%;
	margin-bottom: 20px;
}
.social-links .web {
	float: left;
	width: 30%;
	margin-bottom: 20px;
}
.social-links .dribbble {
	float: left;
	width: 30%;
}
.social-links .forrst {
	float: left;
	width: 30%;
}
.social-links .lovedesign {
	float: left;
	width: 30%;
}
/* Favorites Page */
.favorites-controls {
	box-sizing: border-box;
	position: absolute;
	clear: both;
	top: 5px;
	right: 5px;
}
.favorites-controls img {
		
}
/* Fonts and Headlines */
p {
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 0;
	line-height: 1.5em;
}
.headline-container h1 {
	font-size: 21px;
	text-transform: uppercase;
	-webkit-text-shadow: 1px 1px #fff, 2px 2px #2a2829;
	text-shadow: 1px 1px #fff, 2px 2px #2a2829;
	margin-bottom: 20px;
}
h1 img {
	margin: 5px 10px -6px 0;
}
.headline-container {
	clear: both;
	margin: 0;
}
.headline {
	float: left;	
}
.sub-1 {
	font-weight: 600;
	font-style: italic;
	text-transform: uppercase;
	font-size: 14px;
	margin: 0 0 10px 0;
}
.sub-2 {
	font-weight: 600;
	font-style: italic;
	font-size: 18px;
	text-transform: uppercase;
}
.sub-3 {
	font-weight: 600;
	font-style: italic;
	font-size: 18px;
}
.sub-4 {
	font-weight: 300;
	font-style: italic;
	font-size: 14px;
}
.read-more {
	margin: 15px 0 0 0;
	font-size: 18px;
	text-transform: uppercase;
}
.read-more a:hover {
	border-bottom: 2px solid #D95B43;	
}
.black {
	background-color: #2a2829;
	color: #EAEAEA;
	border: 1px solid #2a2829;
	padding: 10px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-shadow: 0px 0px 2px #EAEAEA inset;
	-webkit-box-shadow: 0px 0px 0px 3px #EAEAEA inset;
}
.highlight,a.highlight:active,a.highlight:visited,.highlight a:active,.highlight a:visited {
	color: #D95B43;
}
a.highlight:hover,.highlight a:hover {
	color: #2a2829;
	border-color: #2a2829;
}
a.highlight:link, .highlight a:link  {
	border-bottom: 2px solid #D95B43;
}
.tk-chunk {
}
.tk-hellenic-wide {
}
.tk-crete-rounded-web {
}
.tk-sommet-slab {
}
.tk-lemonde-courrier {
}
.tk-rooney-web {
}
.tk-adelle {
}
.tk-chaparral-pro {
}
.tk-ff-prater-serif-web {
}
.tk-mitigate {
}
.tk-aurea-ultra {
}
.tk-republic-web-condensed {
}

/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here */
  
}
 @media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
/* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
* {
	background: transparent !important;
	color: #444 !important;
	text-shadow: none !important;
}
a, a:visited {
	color: #444 !important;
	text-decoration: underline;
}
a:after {
	content: " (" attr(href) ")";
}
abbr:after {
	content: " (" attr(title) ")";
}
.ir a:after {
	content: "";
}  /* Don't show links for images */
pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
}
thead {
	display: table-header-group;
} /* css-discuss.incutio.com/wiki/Printing_Tables */
tr, img {
	page-break-inside: avoid;
}
 @page {
margin: 0.5cm;
}
p, h2, h3 {
	orphans: 3;
	widows: 3;
}
h2, h3 {
	page-break-after: avoid;
}
}
