/* -------------------------------------------------------------- 
	
	typography.css
	* Sets up some sensible default typography.
	
-------------------------------------------------------------- */

/***LINKS***/
a{text-decoration:none; outline: none; color:#FEAC63;}
a:visited { color: #FEAC63; }
a:hover { text-decoration:underline;}
p {margin: 10px 15px;}

/***HEADER TAGS***/
h1, h2, h3, h4, h5, h6 { font-family: Arial, Helvetica, sans-serif; color: #FEAC63 }
h1, h2, h3, h4, h5 { font-weight: normal; display: block; margin: 10px 15px; padding: 0px;}
h1, h1 a, h2, h2 a, h3, h4, h5 { color: #FEAC63; font:  Arial, Helvetica, san-serif; text-decoration: none; }
h1 a:hover, h2 a:hover { text-decoration: underline; }
h3, h4 { font-size: 17px; }
h4 { margin: 10px 0px -4px 0px; }
h5 { margin: 10px 0px -4px 0px; font-size: 14px; font-style: italic;  }

/***HACKING***/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */

/***QUOTE & CODE***/
code{
	font: 12px/14px "Courier New", Courier, monospace;
	color: #000000;
	background: #F5F5F5;
	margin: 5px 10px;
	padding: 10px;
	display:block;
	border: 1px dashed #818141;
	width: auto;
}
.code .indent {
	padding-left: 15px;
}
blockquote {
	margin: 0px 15px 20px;
	padding: 3px 10px;
	border-left: 3px dotted #FEAC63;
	border-right: 3px dotted #FEAC63;
	border-top: 1px dotted #FEAC63;
	border-bottom: 1px dotted #FEAC63;
	line-height: 140%;
	width: auto;
}

/***GENERAL CLASSES***/
.left {float: left;}
.right {float: right;}

.clearleft {clear: left;}
.clearright {clear: right;}
.clearall {clear: all;}

strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0;font-size:.6em }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre,code    { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; } 

/***MISC CLASSES***/
.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

.important{ font-weight:bold; font-size:16px;}