/* -------------------------------------------------------------- 

   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

body {
	background-color:#ff7d27;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size:62.5%;
	line-height:1.4;
	padding:0;
	margin:0;
	color:#fff;
        overflow-x:hidden;
}

/* Headings
-------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, legend { 
	font-weight:normal; 
	padding:0;
	text-align:left;
	width:auto;
	text-transform:capitalize;
	line-height:1;
}
h1 {
	font-size:3.2em;
	text-transform:lowercase;
}
h2 {
	font-size:2.8em;
}

h3 {
	font-size:2.3em;
}
h4 {
	font-size:1.8em;
	line-height:1.5em;
}
h5 {
	font-size:1.2em;
}
h6 {
	font-size:0.8em;
	font-weight:bold;
}
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
 	margin: 0;
}
.sIFR-alternate {
	display:none;
}

/* Text elements
-------------------------------------------------------------- */

p {
	font-size: 1.266em;
	margin-bottom:5px;
	padding:0;
	text-align:left;
}

p.first {
	margin:0;
}

a:link, a:visited, a:hover, a:active {
	background-color:#FFFFFF;
	color:#000000;
	text-decoration:none;
}

blockquote  { 
	font-size: 1.166em;
	margin: 0 10px;
	color: #fff; 
	font-style: italic;
}

strong, em{ 
	font-weight: bold;
}

dfn, sup, sub {
	font-style: italic;
}

abbr, acronym { 
	border-bottom: 1px dotted #FF7D27; 
	text-transform:none;
}
address {
	font-style: italic; 
	font-size: 1.166em;
        margin-bottom:10px;
}
del { 
	color:#fff; 
}
ins {
	color:#333;
	text-decoration:none;
}
pre {
	padding:10px 0;
	font-size: 1.166em;
	white-space: pre;	
	color:#666;
	width:100%;
	overflow-x:scroll;
}
samp, code, tt {
	font-style:italic;
	color:#FFF;
}

/* Lists
-------------------------------------------------------------- */
ol, ul {
	list-style-position:inside;

}
ul li { 
	list-style-type:none;
	margin:10px 0;
	font-size: inherit;
}

ol li { 
	list-style-type:lower-roman;
	margin: 10px 0;
	list-style-position:inside;
}
ul, ol, dd, dt{
	font-size: 1.166em;
}
ul, ol, dd {
	/*margin: 0 0 0 1.5em;*/
}
dt {
	font-weight: bold;
}
ul ul {
	margin-left:10px;
	font-size: inherit;
}

/* Tables
-------------------------------------------------------------- */

table {
	width:100%;
	border:1px solid #fff;
	font-size: 1.166em;
}

th, td { 
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;
	padding:5px;
}
th {
	font-weight: bold;
}
tfoot td {
	border:none;
	text-align:center;
	font-style: italic;
}
caption {
	font-style:italic;
}


/*-------------------------------------------------------------- */
form {
    color:#fff;
    font-size:1.4em;
    border:1px solid #fff;
    float:left;
    position:relative;
    z-index:300;
    background-color:#00A287;
    padding:10px;
    width:448px;
}
label { 
}
label.checkbox, label.radio {
	display:inline;
}
legend { 
    border-bottom:1px solid #FFFFFF;
    font-size:1.2em;
    font-weight:bold;
    padding-bottom:10px;
    width:100%;
    margin-bottom:10px;
}

/* Form fields
-------------------------------------------------------------- */

input[type=text], input.text, input.title, textarea, select { 
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  background-color:#fff; 
  border:1px solid #fff;
  color:#666;
  padding:5px;
  line-height:0.7em;
}
input[type=submit], .formControl-100 input[type=submit] {
  width:auto;
}
textarea {
  font-size:inherit;
  padding:5px;
  height:100px;
  color:#666;
  line-height:inherit;
}
input[type=text]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus {  
}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }














