/**
 * CSS Typography View
 *
 * A View to test sites typography
 *
 * @package		View
 * @author		Jim Wardlaw
 * @copyright	Copyright (c) 2009 - 2010, Jim Wardlaw, Inc.
 * @license		http://codeigniter.com/user_guide/license.html
 * @link		http://stucktogetherwithtape.com
 * @since		Version 1.1
 * @filesource
 *
 * Change Log
 * ----------
 * 1.1 - Added 'styled-table' class to all tables to prevent complications
 *		 with the 'inevitable' table use for layout purposes :-(
 *
 * 1.0 - First Version
 *
 */

@font-face {
	font-family: 'Bebas Regular';
	src: url('BEBAS___.eot');
	src: local('Bebas Regular'), 
		 local('Bebas'), 
			url('BEBAS___.woff') format('woff'), 
			url('BEBAS___.svg#Bebas') format('svg'), 
			url('BEBAS___.ttf') format('truetype');
}

body {
	font-family: Helvetica, Verdana, Arial, sans-serif;
	font-size: 10px;
	color: #111;
}

h1, h2, h3 {
	font-weight: normal;
}

h4, h5, h6 {
	font-weight: bold;
	margin-bottom: 10px;
}


/* Font sizes */

h1 {
	font: 45px/50px 'Bebas Regular', Helvetica, Verdana, Arial, sans-serif;
	letter-spacing: 0;
	font-weight: normal;
	margin: 15px 0;
}

h2 {
	font: 35px/40px 'Bebas Regular', Helvetica, Verdana, Arial, sans-serif;
	margin-bottom: 10px;
}

h3 {
	font: 25px/40px 'Bebas Regular', Helvetica, Verdana, Arial, sans-serif;
	margin-bottom: 10px;
}

h3 {font-size: 2.5em;}
h4 {font-size: 2em;}
h5 {font-size: 1.8em;}
h6 {font-size: 1.6em;}

p, caption, td, th, dd, dt, pre, code, address {
	font-size: 1.2em;
	line-height: 1.6em;
	margin-bottom: 10px;
}


hr {
	border: 0;
  	width: 100%;
	color: #CCC;
	background-color: #CCC;
	height: 1px;
}



/* Links */
a {color: #cf1f00;}
a:link {text-decoration: none;} 
a:visited {text-decoration: none;}
a:hover,a:focus {text-decoration: underline;}
a:active {}

/* Lists and stuff */
ul, ol {
	margin: 0 0 10px 0;
}

li {	
	font-size: 12px;	/* declared explicitly to avoid nesting bugs */
	margin: 5px 0;
	list-style-position: inside;
}

li li {margin: 5px 0 5px 15px;} /* pad nested list items */

ol.styled-list li {list-style-type: decimal;}
ul.styled-list li {list-style-type: circle;}

dt {
	font-weight: bold;
	margin: 0 0 5px 0;
}

dd {
	font-style: italic;
	padding-left: 10px;
	margin: 0 0 5px 0;
}

/* Tables */
table.styled-table {
	border:solid 1px #DEDEDE; 
	border-right-style: none;
	margin: 0 0 10px 0;		
}

.styled-table th {
	background-color: #EEE;
	border-bottom:solid 1px #DEDEDE; 
	border-right:solid 1px #DEDEDE; 
	padding: 2px 10px;
}

.styled-table td {
	border-bottom:solid 1px #DEDEDE; 
	border-right:solid 1px #DEDEDE; 
	padding: 2px 10px;
}

.styled-table caption {	
	font-style: italic;
	text-align: left;
}

/* Other blocks of content */

blockquote {
	color: #333;
	font-style: italic;
	margin: 10px;
}

code {
	color: #666;
	display: block;
	border-color: #b3b3b3;
	border-width: 1px;
	border-style: solid;
	padding: 10px;
	margin: 0 0 10px 0;
}

pre {
	color: #666;
	display: block;
	margin: 0 0 10px 0;
}

/* Misc html elements */

del {color: #999;}

ins {font-style: italic;}