/* --------------------------------------------------------------  
   reset.css
   * Resets default browser CSS.  
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  color: #4c5966;
}

body {
	line-height: 1.5;  
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { 
	border-collapse: separate; border-spacing: 0; 
}
caption, th, td { 
	text-align: left; font-weight: normal; 
}
table, td, th { 
	vertical-align: middle; 
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { 
	content: ""; 
}
blockquote, q { 
	quotes: "" ""; 
}

/* Remove annoying border on linked images. */
a img { 
border: none; 
}

/* -------------------------------------------------------------- 
   typography   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body {
	color: #000;
	background-color: #fff;
	font: 75% "Trebuchet MS", Arial, Helvetica, sans-serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h4,h5,h6 { font-weight: normal; color: #425790; }
h2{ font-weight: normal; color: #333; }
h3{ font-weight: normal; color: #999; }

h1 a,h4 a,h5 a,h6 a, 
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover        { color: #425790; }

h1 { font-size: 1.5em; line-height: 1; margin-bottom: 0.5em;}
h2 { font-size: 1em; line-height: 1; margin-bottom: 1em; font-weight: bold;  text-decoration: none; color:#425790; }
h3 { font-size: 1.1em; line-height: 1; margin-bottom: 1em; font-weight: bold; text-transform: uppercase;}
h4 { font-size: 1.2em; line-height: 1; margin-bottom: 0.5em; font-weight: bold; text-transform: uppercase;}
h5 { font-size: 1.1em; line-height: 1; margin-bottom: 0.25em; font-weight: bold; }
h6 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; font-weight: bold; text-transform: uppercase;
	display: block;
	border-bottom: 1px solid #d5d4d4;
	padding-bottom: 9px;
	text-align: right;
	clear: both;
	}

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}

hr  {height:1px;border-width:0; background-color:#d5d4d4; color: #d5d4d4; margin-bottom: 1.75em; }

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

p           { margin: 0 0 1.75em 0; line-height: 1.35; color: #4c5966; }
p img.left  { float: left; margin: 0 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 0 0 1.5em 1.5em; }

img.header  { margin: 0 0 18px 0; padding: 0;}

a:focus, 
a:hover     { color: #425790; text-decoration: underline; }
a           { color: #425790; text-decoration: none; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin: 0 1.5em; }
ul, ol      { margin: 0 1.5em 1.5em 1.5em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

li			{ line-height: 1.35; margin-bottom: 3px; }

dl          { margin: 0 0 1.5em 0; line-height:1.5em; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


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

table       	{ margin-bottom: 1.4em; width:100%; }
th          	{ font-weight: bold; }
thead th 		{ background: #53CAFF; color: #fff; }
th,td,caption	{ padding: 4px 10px 4px 5px; }
tr.even td  	{ background: #e5ecf9; }
tfoot       	{ font-style: italic; }
caption     	{ background: #eee; }


/* Misc classes
-------------------------------------------------------------- */


.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.small      { font-size: 0.8em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #03b5fd; }
.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; }

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }


/* Form CSS moved to forms.css */


/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }
.required   { color: #ff0000; }



/* -------------------------------------------------------------- 
   site  
-------------------------------------------------------------- */
body {
	background-color: #dadee0;
}

#container {
	width: 950px;
	margin: 0px  auto 15px auto;
	background-color: #fff;
	border: 1px solid #8595a6;
}

/* Header
-------------------------------------------------------------- */

#header {
	position: relative;
	height: 248px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/header_bkg.png) no-repeat top left;
	color: #babbbd;
}
#header .getTheAppBtn {
	position: absolute;
	right: 80px;
	bottom: 140px;
}
#header .getTheAppBtn a {
	display: block;
	width:166px;
	height:37px;
	border:0;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/get_the_app_btn.png) 0 0 no-repeat;
	
}
#header .getTheAppBtn a:hover {
	background-position: -166px 0;
}

/* Navigation
-------------------------------------------------------------- */

#nav1 {
	position: absolute;
	top: 0;
	right: 0;
}
#nav1 ul {
	margin: 0;
	padding: 0;
}
#nav1 li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline;
}
#nav1 li a {
	float: left;
	height: 35px;
}

#nav1 .logIn a {
	width: 141px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/nav1_log_in.png) 0 0 no-repeat;
}
#nav1 .logIn a:hover {
	background-position: -141px 0;
}
#log-in #nav1 .logIn a {
	background-position: -282px 0;
}

#nav1 .support a {
	width: 116px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/nav1_support.png) 0 0 no-repeat;
}
#nav1 .support a:hover {
	background-position: -116px 0;
}
#support #nav1 .support a {
	background-position: -232px 0;
}

#nav1 .about a {
	width: 96px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/nav1_about.png) 0 0 no-repeat;
}
#nav1 .about a:hover {
	background-position: -96px 0;
}
#about #nav1 .about a {
	background-position: -192px 0;
}

#nav2 {
	position: absolute;
	bottom: -34px;
	left: 0;
}
#nav2 ul {
	margin: 0;
	padding: 0;
}
#nav2 li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline;
}
#nav2 li a {
	float: left;
	height: 34px;
}

#nav2 .features a {
	width: 139px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/nav2_features.png) 0 0 no-repeat;
}
#nav2 .features a:hover {
	background-position: -139px 0;
}
#features #nav2 .features a {
	background-position: -278px 0;
}

#nav2 .how a {
	width: 150px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/nav2_how.png) 0 0 no-repeat;
}
#nav2 .how a:hover {
	background-position: -150px 0;
}
#how-it-works #nav2 .how a {
	background-position: -300px 0;
}

#nav2 .screenshots a {
	width: 158px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/nav2_screenshots.png) 0 0 no-repeat;
}
#nav2 .screenshots a:hover {
	background-position: -158px 0;
}
#screenshots #nav2 .screenshots a {
	background-position: -316px 0;
}

#nav2 .reviews a {
	width: 175px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/nav2_reviews.png) 0 0 no-repeat;
}
#nav2 .reviews a:hover {
	background-position: -175px 0;
}
#reviews #nav2 .reviews a {
	background-position: -350px 0;
}

/* Main
-------------------------------------------------------------- */
#main {
}

/* Layouts
-------------------------------------------------------------- */

/* default column layout */
/* ---------------- */
.colLayout3 { 
	padding-top: 50px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/colLayout3_bg.png) 0 0 no-repeat;
	min-height: 430px;
}
/* columns */
.colLayout3 .col1 {
	float: left;
	width: 334px;
	position: relative;
}
.colLayout3 .col2 {
	float: left;
	width: 295px;
	position: relative;
}
.colLayout3 div.col3 {
	float: right;
	width: 321px;
	position: relative;
}
/* column content */
.colLayout3 .col1 .content {
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
.colLayout3 .col2 .content {
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
.colLayout3 .col3 .content {
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
/* ---------------- */


/* v2 column layout */
/* ---------------- */
.colLayout3v2 { 
	padding-top: 50px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/colLayout3v2_bg.png) 0 0 no-repeat;
	min-height: 430px;
}
/* columns */
.colLayout3v2 .col1 {
	float: left;
	width: 200px;
	position: relative;
}
.colLayout3v2 .col2 {
	float: left;
	width: 429px;
	position: relative;
}
.colLayout3v2 div.col3 {
	float: right;
	width: 321px;
	position: relative;
}
/* column content */
.colLayout3v2 .col1 .content {
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
.colLayout3v2 .col2 .content {
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
.colLayout3v2 .col3 .content {
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
/* ---------------- */



/* Footer
-------------------------------------------------------------- */
#footer {
	width: 930px;
	margin: 0 auto 15px auto;
	padding: 0 10px;
	color: #666;
	font-size: 0.9em;
}


/* Specific Pages
-------------------------------------------------------------- */
-------------------------------------------------------------- */

/* Home / Features
-------------------------------------------------------------- */
/* col 3 override */
.col3 {
	position: relative;
}
.col3 #iPhone {
	width: 272px;
	height: 433px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	top: -153px;
}

.comment {
	width: 246px;
	margin-left: 4px;
	margin-bottom: 14px;
}
.profilePhoto {
	float: left;
	margin-top: 5px;
}
.talkBubbleContainer {
	width: 176px;
	float: right;
}
.username {
	margin-left: 5px;
	margin-bottom: 1px;
	color: #1d8fff;
	font-weight: bold;
}
.talkBubbleTop {
	width: 176px;
	height: 7px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/talk_bubble_top.png) no-repeat;
}
.talkBubble {
	position: relative;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/talk_bubble_bg.png) repeat-y;
}
.tab {
	position: absolute;
	width: 13px;
	height: 9px;
	top: 10px;
	left: -10px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/talk_bubble_tab.png) no-repeat;
}
.blurb {
	min-height: 35px;
	padding: 0 15px;
	color: #757778;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/talk_bubble_bg_fade.png) bottom no-repeat;
}
.talkBubbleBottom {
	width: 176px;
	height: 7px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/talk_bubble_bottom.png) no-repeat;
}

.appStore {
}

.appStore a{
	display: block;
	margin: 30px auto 12px auto;
	width: 214px;
	height: 69px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/app_store_btn.png) no-repeat;
}

/* How it Works
-------------------------------------------------------------- */
#how-it-works .howItWorksGraphic {
	position: relative;
	width: 327px;
	height: 184px;
	left: 0;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/how_it_works.png) no-repeat;
}
#how-it-works .col2 content {
	width: 255px;
}
#how-it-works .col2 h1 {
	width: 120px;
	margin: 0px auto 15px auto;
}

.step {
	position: relative;
	width: 255px;
	margin-bottom: 14px;
}
.stepGraphic1 {
	float: left;
	width: 36px;
	height: 35px;
	margin-top: 5px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/step1.png) no-repeat;
}
.stepGraphic2 {
	float: left;
	width: 36px;
	height: 35px;
	margin-top: 5px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/step2.png) no-repeat;
}
.stepGraphic3 {
	float: left;
	width: 36px;
	height: 35px;
	margin-top: 5px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/step3.png) no-repeat;
}
.stepText {
	width: 200px;
	float: right;
	text-align: left;
}
.step1Arrow {
	position: absolute;
	z-index: 2;
	width: 150px;
	height: 62px;
	top: -15px;
	left: -20px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/step1_arrow.png) no-repeat;
}
.step2Arrow {
	position: absolute;
	z-index: 2;
	width: 162px;
	height: 66px;
	top: 60px;
	left: -20px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/step2_arrow.png) no-repeat;
}
.step3Arrow {
	position: absolute;
	z-index: 2;
	width: 132px;
	height: 60px;
	top: 205px;
	left: -20px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/step3_arrow.png) no-repeat;
}

/* Screenshots
-------------------------------------------------------------- */
#screenshots .col1 .content {
	text-align: center;
}
#screenshots .col1 .content h5 {
	position: relative;
	top: -7px;
}
#screenshots .col2 .content {
	text-align: center;
}

.audioSamples {
	margin: 35px 0 20px 0;
	width: 384px;
}
.sampleBoxTop {
	width: 384px;
	height: 7px;
	margin: 0;
	padding: 0;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/sample_box_top.png) no-repeat;
}
.sampleBox {
	position: relative;
	margin: 0;
	padding: 0;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/sample_box_bg.png) repeat-y;
}
.sampleBoxBottom {
	width: 384px;
	height: 7px;
	background: transparent url(http://media4.fjarnet.net/assets/facemic/images/sample_box_bottom.png) no-repeat;
}
.sample {
	width: 354px;
	margin: 8px 15px 12px 15px;
	padding-bottom: 12px; 
	border-bottom: 1px solid #999;
}
.sample .profilePhoto {
	float: left;
	margin-top: 0;
	padding-left: 20px;
	padding-right: 15px;
}
.sample .sampleContainer {
	width: 250px;
	float: left;
	text-align: left;
}
.sample .username {
	margin-left: 0;
	margin-bottom: 2px;
	color: #425790;
	font-weight: bold;
}
.sample .subject {
	margin-bottom: 2px;
}
.sample .audioPlayer {
	margin-top: 6px;
	margin-bottom: 4px;
}




/* Reviews
-------------------------------------------------------------- */
#reviews dt {
	margin: 0;
	font-weight: normal;
	font-size: .95em;
}
#reviews dd {
	margin: 0 0 12px 0;
	padding: 3px 0 12px 0;
	text-align: right;
	font-style: italic;
	color: #757778;
	border-bottom: 1px solid #999;
	
}

#reviews .col2 dd {
	border-bottom: none;
	
}

