/* ----- typography ----- */
body {
	background: transparent;
	color: #666;
	font-family: 'open sans', 'apple sd gothic neo', 'lucida sans unicode';
	font-size: 14px;
}
/* phone landscape and smaller */
@media (max-width: 767px) {
	body {
		word-wrap: break-word;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-weight: 400;
	line-height: 1;
	margin-bottom: 20px;
}
h1 {
	font-size: 48px;
	letter-spacing: -1px;	
}
h1.xlarge {
	font-size: 72px;
	letter-spacing: -1px;
}
h1.large {
	font-size: 60px; 
	letter-spacing: -1px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 14px;
}
h6 small,
.h6 small {
	font-size: 90%;
}

p {
	line-height: 1.6;
	margin-bottom: 10px;
}
p:last-of-type {
	margin-bottom: 0;
}
/* quotes */
blockquote,
cite
em,
q {
	font-style: italic;
}
blockquote {
	border-left: 4px solid #ddd;
	padding-left: 20px;
	font-size: 18px;
}
blockquote small {
	color: #bbb;
	display: block;
	padding-bottom: 5px;
}
/* link */
a {
	color: #c65032;  /* main color */
	text-decoration: none;
}
a:hover,
a:focus {
	text-decoration: underline;
}
a:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
ins,
mark {
	background: #ffffaa;
	color: #444;
	text-decoration: none;
}
::-moz-selection,
::selection { 
	background: #3399ff;
	color: #fff;
	text-shadow: none;
}
small,
sub,
sup {
	color: #bbb;
}
abbr[title],
dfn[title] {
	cursor: help;
}
dfn[title] {
	border-bottom: 1px dotted;
	font-style: normal;
}
/* code - pre  - kbd */
code {
	background: #f9f2f4;
	border-radius: 4px;
	color: #d05;
	font-size: 90%;
	padding: 2px 4px;
	white-space: nowrap;
}
pre {
	background: #f8f8f8;
	border: 1px solid #ddd;
	border-radius: 4px;
	display: block;
	font-size: 90%;
	line-height: 1.4;
	padding: 10px;
	-moz-tab-size: 4;
	tab-size: 4;
	word-break: break-all;
	word-wrap: break-word;
}
pre code {
	background: transparent;
	color: inherit;
	padding: 0;
	white-space: pre-wrap;
}
kbd {
	background: #f5f5f5;
	border: 1px solid #ddd;
	display: inline-block;
	line-height: 1;
	padding: 2px 4px;
} 
/* address */
address {
	margin-bottom: 1em;
}
address:last-of-type {
	margin-bottom: 0
}
/* list */
ul,
ol {
	margin: 0;
	padding-left: 20px;
}
li {
	line-height: 1.6;
}
ol ol li {
	list-style-type: lower-alpha;
}
ol ol ol li {
	list-style-type: lower-roman;
}
.list-unstyled {
	padding-left: 0;
}
.list-unstyled li {
	list-style: none;
}
.list-inline {
	margin-left: -5px;
	padding-left: 0;
	list-style: none;
}
.list-inline > li {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}
/* dd - dt - dd */
dt,
dd {
	line-height: 1.6;
}
dt {
	font-weight: 700;
}
dd {
	margin-bottom: 10px;
}
dd:last-of-type {
	margin-bottom: 0;
}
@media (min-width: 640px) {
	.dl-horizontal dt {
		clear: both;		
		float: left;
		overflow: hidden;
		text-align: right;
		text-overflow: ellipsis;
		white-space: nowrap;
		width: 160px;
	}
	.dl-horizontal dd {
		margin-left: 180px;
	}
}
hr {
	display: block;
	border-top: 1px solid #eee;
}
/* etc */
.text-inverse,
.text-inverse a {
	color: #fff;
}