/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/

/**
 *
 *
 * $A/B TEST LOGIC..........
 * $TRANSITION LOGIC........
 * $GENERAL.................
 * $GREY BOX................
 * $BUBBLE..................
 * $SIGNUP..................
 * $IMPORT..................
 * $DROP DOWN...............
 * $LOADING.................
 * $INVITE..................
 * $IMPORT..................
 * $DOWNLOAD................
 * $INSTALL.................
 * $BUTTONS.................
 * $VERSION VARIATIONS......
 *
 *
 */

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html{
	background-color: RGB(30,45,60);
}

img.bg {
	/* Set rules to fill background */
	min-height: 100%;
	min-width: 1024px;
	
	/* Set up proportionate scaling */
	width: 100%;
	height: auto;
	
	/* Set up positioning */
	position: fixed;
	top: 0;
	left: 0;
}

@media screen and (max-width: 1040px) { /* Specific to this particular image */
	img.bg {
		left: 50%;
		margin-left: -520px;   /* 50% */
	}
}

.dark-bg{
	width: 100%;
	height: 100%;
	background-color: RGBA(0,0,0,.5);
	position: absolute;
		top: 0px;
		left: 0px;
}


/*------------------------------------*\
		$A/B TEST LOGIC
\*------------------------------------*/

#a #signup.v2{
	display: none;
}
#a #invite.v2{
	display: none;
}
#a #download.v2{
	display: none;
}
#b #signup.v1{
	display: none;
}
#b #import.v1{
	display: none;
}
#b #invite.v1{
	display: none;
}
#b #download.v1{
	display: none;
}




/*------------------------------------*\
		$TRANSITION LOGIC
\*------------------------------------*/

.signup #signup{
	display: block;
}
.signup2 #signup2{
	display: block;
}
.import #import{
	display: block;
}
.invite #invite{
	display: block;
}
.invite2 #invite2 {
	display: block;
}
.download #download{
	display: block;
}
.install-chrome #install-chrome{
	display: block;
}
.install-ff #install-ff{
	display: block;
}
.install-ie #install-ie{
	display: block;
}
.install-ie8 #install-ie8{
	display: block;
}
.install-safari #install-safari{
	display: block;
}




/*------------------------------------*\
		$GENERAL
\*------------------------------------*/

body{
	font-family: helvetica;
}
h1, h2, h3 p, li{
	color: RGB(40,40,40);
}
h1{
	font-size: 1.1em;
	line-height: 1.8em;
	font-weight: bold;
}
h2{
	font-size: .9em;
	line-height: 1.6em;
}
p{
	font-size: .9em;
	line-height: 1.5em;
}
a{
	color: RGB(255,255,255);
}
a:visited{
	color: RGB(255,255,255);
}
.container{
	position: absolute;
		top: 50%;
		left: 50%;
	margin-top: -160px;
}
.empty-box{
	display: inline-block;
	vertical-align: top;
	height: 240px;
}
.skip{
	position: fixed;
		top: 50px;
		right: 50%;
		margin-right: -380px;
	font-size: 1.2em;
	color: RGB(255,255,255);
	opacity: .8;
}
.skip:hover{
	opacity: 1;
	cursor: pointer;
}




/*------------------------------------*\
		$GREY BOX
\*------------------------------------*/

.grey-box{
	position: relative;
	display: inline-block;
	width: 380px;
	padding: 20px;
	border: 1px solid RGB(221,220,220);
	border-bottom-color: RGB(200,200,200);
	border-radius: 4px;
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(222,222,221,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(222,222,221,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(222,222,221,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(222,222,221,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(222,222,221,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(222,222,221,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dededd',GradientType=0 ); /* IE6-9 */
	-webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .3);
	box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .3);
}
hr{
	width: 100%;
	height: 1px;
	background-color: RGB(230,230,230);
	border: none;
	margin-bottom: 12px;
}
label{
	font-size: .9em;
	line-height: 1.5em;
	display: inline-block;
}
input{
	display: inline-block;
	margin: 6px 0px;
	padding: 8px 7px;
	font-size: .9em;
	border: 1px solid RGB(190,190,190);
	border-radius: 3px;
}
input.correct{
	border-color: RGB(90,185,75);
	-webkit-box-shadow: 0px 0px 2px 2px RGBA(90,185,75,.15);
	box-shadow: 0px 0px 2px 2px RGBA(90,185,75,.15);
}
input.incorrect{
	border-color: RGB(40,170,225);
	-webkit-box-shadow: 0px 0px 2px 2px RGBA(90,185,75,.15);
	box-shadow: 0px 0px 2px 2px RGBA(90,185,75,.15);
}
input:focus{
	outline: none;
	-webkit-box-shadow: 0px 0px 2px 2px RGBA(40,170,225,.6);
	box-shadow: 0px 0px 2px 2px RGBA(40,170,225,.6);
	background-color: RGB(255,255,200);
}
.misc-container{
	float: left;
	margin-top: 10px;
}
.misc-container img{
	width: 40px;
	height: 40px;
}
.misc-container p{
	display: inline-block;
	vertical-align: top;
	margin-left: 5px;
	max-width: 110px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.misc-container .inviter-name{
	color: RGB(30,120,190);
}
.cloud{
	position: absolute;
		top: -66px;
		right: -3px;
	height: 70px;
	width: 100px;
	background-image:url(../images/signup/cloud.png);
}
.cloud img{
	margin: 26px 0px 0px 13px;
}




/*------------------------------------*\
		$BUBBLE
\*------------------------------------*/

.bubble{
	background-color: RGB(30,120,190);
	opacity: .8;
	padding: 13px 16px;
	margin-left: 20px;
	border: 1px solid RGB(30,90,170);
	border-radius: 4px;
}
.bubble:after{
	content:"";
	position: absolute;	
	top: 30px;
	right: 245px;
	width: 0;
	height: 0px;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-right: 13px solid RGB(30,120,190);
	opacity: .8;
}
.bubble p{
	color: RGB(255,255,255);
	opacity: .9;
	text-align: justify;
}




/*------------------------------------*\
		$SIGNUP
\*------------------------------------*/

#signup{
	display: none;
	width: 830px;
	margin-left: -415px;
}
#signup .empty-box{
	width: 470px;
	padding-right: 50px;
}
#signup .grey-box{
	width: 350px;
}
.highlighted-name{
	color: RGB(30,120,190);
}
.tagline{
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.5em;
	color: RGB(255,255,255);
	margin-top: 20px;
	text-shadow: 0px 1px 0px #000000;
	max-width: 535px;
	overflow: hidden;
	text-overflow: ellipsis; 
}
.tagline span{
	color: RGB(250,210,60);
}
.TOS{
	margin-top: 184px;
	opacity: .7;
}
.TOS:hover{
	opacity: 1;
}
.TOS a{
	text-decoration: none;
	font-weight: 200;
	color: RGB(255,255,255);	
}
p.unsubscribe{
	display: inline-block;
	width: 370px;
	color: RGB(255,255,95);
	font-size: 1.1em;
	margin-bottom: 20px;
	margin-left: 10px;
}
p.unsubscribe a {
	color: RGB(255,255,95);
}
img.unsubscribe{
	display: inline-block;
	vertical-align: top;
}


/*------------------------------------*\
		$SIGNUP2
\*------------------------------------*/

#signup2{
	display: none;
	width: 675px;
	margin-left: -355px;
	top: 45%
}
#signup2 h1, #signup2 h2{
	color: RGB(255,255,255);
	text-align: center;
}
#signup2 h1{
	font-size: 2.2em;
	line-height: 1.3em;
	margin-bottom: 15px;
}
#signup2 h2 span{
	color: RGB(250,210,60);
}
#signup2 h2{
	font-size: 1.5em;
	line-height: 1.5em;
	font-weight: bold;
}
#signup2 .button-container-center{
	display: table;
	margin: auto;
}
#signup2 .button-container{
	float: left;
	margin-top: 25px;
}
#signup2 .button{
	height: 70px;
	width: 250px;
	max-width: none;
	padding: 0px 55px 0px 68px;
	font-size: 2.0em;
}
#signup2 .button-arrow{
	width: 50px;
	top: 9px;
	margin-right: 23px;
    -webkit-animation: bounce-horizontal-large 0.8s infinite linear;
    -moz-animation: bounce-horizontal-large 0.8s infinite linear;
    -o-animation: bounce-horizontal-large 0.8s infinite linear;
    animation: bounce-horizontal-large 0.8s infinite linear;
}


/*------------------------------------*\
		$IMPORT
\*------------------------------------*/

#import{
	display: none;
	width: 650px;
	margin-left: -325px;
}
#import.container{
	margin-top: -190px;
}
#import .empty-box{
	width: 260px;
}
#import h2{
	color: RGB(160,160,160);
	font-weight: normal;
}
#import .error-message{
	display: none;
	font-size: .9em;
	color: red;
	margin-bottom: 8px;
}
#import form{
	height: 145px;
}
#import label{	
	color: RGB(30,120,190);
	width: 38%;
}
#import input[type=text], #import input[type=password]{
	width: 62%;
}
.loading-container{
	display: none;
	position: relative;
		top: 35px;
}
form .loading-container img{
	display: block;
	margin: 0 auto;
}




/*------------------------------------*\
		$DROP DOWN
\*------------------------------------*/

.dropdown {	
	position: relative;
	display: inline-block;
	width: 75%;
	height: 28px;
}
.account-container{
	height: 28px;
}
a.account {	
	color: RGB(85,85,85);
	font-size: .8em;
	line-height: 28px;    
	text-decoration: underline;
	cursor: pointer;
}
img.account{
	margin: 0px 0px 0px -5px;
	cursor: pointer;
}
.submenu {
	position: absolute;
		top: 35px;
		left: -10px;
	width: 66%;
	display: none;
	background: RGB(255,255,255);
	z-index: 100;
	margin-left: 10px;
	padding: 0px 0 5px;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.submenu:before{
	content:"";
	position: absolute;	
	top: -11px;
	right: 14px;
	width: 0;
	height: 0px;
	border-right: 11px solid transparent;
	border-left: 11px solid transparent;
	border-bottom: 12px solid RGB(185,185,185);
}
.submenu:after{
	content:"";
	position: absolute;	
	top: -10px;
	right: 15px;
	width: 0;
	height: 0px;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-bottom: 11px solid RGB(255,255,255);
}
.dropdown li {
	height: 28px;
}
.dropdown li.selected a{
	background-color: RGB(30,120,190);
	color: RGB(255,255,255);
}
.dropdown li img {
	float: left;
	margin-left: 8px;
	margin-right: 5px;
	cursor: pointer;
}
.dropdown li a {
	display: block;
	color: RGB(85,85,85);
	font-size: .7em;
	font-family: arial;
	font-weight: bold;
	padding: 6px 15px;
	cursor: pointer;
	text-decoration:none;
}
.dropdown li a:hover {
	background-color: RGB(30,120,190);
	color: RGB(255,255,255);
	text-decoration: none;
}
.root {
	list-style:none;
	margin:0px;
	padding:0px;
	padding: 11px 0 0 0px;
	border-top:1px solid #dedede;
}




/*------------------------------------*\
		$LOADING
\*------------------------------------*/

.spinner {
   height:60px;
   width:60px;
   margin:0 auto;
   position:relative;
   -webkit-animation: rotation .6s infinite linear;
   -moz-animation: rotation .6s infinite linear;
   -o-animation: rotation .6s infinite linear;
   animation: rotation .6s infinite linear;
   border:6px solid rgba(30,120,190,.15);

   border-radius:100%;
}
.spinner:before {
   content:"";
   display:block;
   position:absolute;
   left:-6px;
   top:-6px;
   height:100%;
   width:100%;
   border-top:6px solid rgba(30,120,190,.8);
   border-left:6px solid transparent;
   border-bottom:6px solid transparent;
   border-right:6px solid transparent;
   border-radius:100%;
}

@-webkit-keyframes rotation {
   from {-webkit-transform: rotate(0deg);}
   to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
   from {-moz-transform: rotate(0deg);}
   to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
   from {-o-transform: rotate(0deg);}
   to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
   from {transform: rotate(0deg);}
   to {transform: rotate(359deg);}
}




/*------------------------------------*\
		$INVITE
\*------------------------------------*/

#invite{
	display: none;
	width: 650px;
	margin-left: -350px;
}
#invite.container{
	margin-top: -190px;
}
#invite form {
	min-height: 135px;
}
#invite .empty-box{
	width: 260px;
}
#invite ul{
	width: 100%;
	height: 150px;
	margin-bottom: 10px;
	border: 1px solid RGB(215,215,215);
	border-radius: 2px;
	overflow-y: scroll;
	overflow-x: hidden; 
	clear: both;
}
#invite li{
	line-height: 26px;
	font-size: .8em;
	padding-left: 8px;
	white-space: nowrap;
}
#invite li:nth-child(even){
	background-color: RGB(255,255,255);
}
#invite li:nth-child(odd){
	background-color: RGB(245,249,253);
}
#invite input[type=checkbox]{
	margin: 0px 6px 0px 0px;
	padding: 0px;
}
#invite .clear{
	text-decoration: underline;
	cursor: pointer;
}


#invite2 {
	display: none;
}



/*------------------------------------*\
		$DOWNLOAD
\*------------------------------------*/

#download{
	display: none;
	width: 800px;
	margin-left: -400px;
}
#download h1, #download h2{
	color: RGB(255,255,255);
	text-align: center;
}
#download h1{
	font-size: 2.2em;
	line-height: 1.3em;
	margin-bottom: 15px;
}
#download h1 span{
	color: RGB(250,210,60);
}
#download h2{
	font-size: 1.1em;
	line-height: 1.5em;
	font-weight: normal;
}
#download .button-container-center{
	display: table;
	margin: auto;
}
#download .button-container{
	float: left;
	margin-top: 20px;
}
#download .button{
	height: 55px;
	width: auto;
	max-width: none;
	padding: 0px 55px 0px 18px;
	font-size: 1.2em;
}




/*------------------------------------*\
		$INSTALL
\*------------------------------------*/

.install{
	display: none;
	position: absolute;
}
.install h1{
	color: RGB(255,255,255);
	font-size: 1.2em;
	line-height: 40px;
}
.install ol{
	list-style-type: decimal;
}
#install-chrome ol{
	width: 180px;
}
#install-ff ol{
	width: 290px;
}
#install-safari ol{
	width: 240px;
}
.install li{
	color: RGB(255,255,255);
	font-size: 1.1em;
}
.install li b{
	color: RGB(250,210,60);
}
#install-chrome{
	top: 60px;
	right: 200px;
}
#install-ff{
	top: 270px;
	left: 85px;
}
#install-safari{
	top: 60px;
	right: 200px;
}
#install-ie{
	top: 120px;
	left: 200px;
}
#install-ie8{
	bottom: 120px;
	left: 200px;
}




/*------------------------------------*\
		$BUTTONS
\*------------------------------------*/

.button-container{
	float: right;
	margin-top: 10px;
	position: relative;
}
.button-container .button{
	height: 40px;
	max-width: 155px;
	font-size: 1em;
	line-height: 40px;
	font-weight: bold;
	text-align: left;
	text-shadow: 0px 1px 0px RGB(250,220,120);
	filter: dropshadow(color=RGB(250,220,120), offx=0, offy=1);
	padding: 0px 45px 0px 12px;
	margin-top: 0px;
	background-repeat: no-repeat;
	background-position: right center;
	background: rgb(250,220,100); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(250,220,100,1) 0%, rgba(249,158,30,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(250,220,100,1)), color-stop(100%,rgba(249,158,30,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(250,220,100,1) 0%,rgba(249,158,30,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(250,220,100,1) 0%,rgba(249,158,30,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(250,220,100,1) 0%,rgba(249,158,30,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(250,220,100,1) 0%,rgba(249,158,30,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fadc64', endColorstr='#f99e1e',GradientType=0 ); /* IE6-9 */	
	border: 1px solid RGB(249,158,38);
	border-radius: 4px;
	cursor: pointer;
}
.button-container:hover .button{
	background: rgb(255,225,105); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,225,105,1) 0%, rgba(255,164,35,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,225,105,1)), color-stop(100%,rgba(255,164,35,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(255,225,105,1) 0%,rgba(255,164,35,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(255,225,105,1) 0%,rgba(255,164,35,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(255,225,105,1) 0%,rgba(255,164,35,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(255,225,105,1) 0%,rgba(255,164,35,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffe169', endColorstr='#ffa423',GradientType=0 ); /* IE6-9 */
	border-color: RGB(230,140,20);
}
.button-container .button.pressed{
	-webkit-box-shadow: inset 0px 0px 9px 0px rgba(0, 0, 0, .2);
	box-shadow: inset 0px 0px 9px 0px rgba(0, 0, 0, .2);
	background: rgb(250,175,30); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(250,175,30,1) 0%, rgba(250,190,80,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(250,175,30,1)), color-stop(100%,rgba(250,190,80,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(250,175,30,1) 0%,rgba(250,190,80,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(250,175,30,1) 0%,rgba(250,190,80,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(250,175,30,1) 0%,rgba(250,190,80,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(250,175,30,1) 0%,rgba(250,190,80,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#faaf1e', endColorstr='#fabe50',GradientType=0 ); /* IE6-9 */
}
.button-container .button-arrow {
	position: absolute;
		top: 4px;
		right: 14px;
	cursor: pointer;
    -webkit-animation: bounce-horizontal 0.8s infinite linear;
    -moz-animation: bounce-horizontal 0.8s infinite linear;
    -o-animation: bounce-horizontal 0.8s infinite linear;
    animation: bounce-horizontal 0.8s infinite linear;
}

/*** Bounce-Horizontal ***/
@-webkit-keyframes bounce-horizontal {
    0% { right: 14px; }
   50% { right: 4px; }
  100% { right: 14px; }
}
@-moz-keyframes bounce-horizontal {
    0% { right: 14px; }
   50% { right: 4px; }
  100% { right: 14px; }
}
@-o-keyframes bounce-horizontal {
    0% { right: 14px; }
   50% { right: 4px; }
  100% { right: 14px; }
}
@keyframes bounce-horizontal {
	0% { right: 14px; }
   50% { right: 4px; }
  100% { right: 14px; }
}

/*** Bounce-Horizontal-Large ***/
@-webkit-keyframes bounce-horizontal-large {
    0% { right: 17px; }
   50% { right: 1px; }
  100% { right: 17px; }
}
@-moz-keyframes bounce-horizontal-large {
    0% { right: 17px; }
   50% { right: 1px; }
  100% { right: 17px; }
}
@-o-keyframes bounce-horizontal-large {
    0% { right: 17px; }
   50% { right: 1px; }
  100% { right: 17px; }
}
@keyframes bounce-horizontal-large {
	0% { right: 17px; }
   50% { right: 1px; }
  100% { right: 17px; }
}

/*** Bounce-Horizontal-Small ***/
@-webkit-keyframes bounce-horizontal-small {
    0% { right: 7px; }
   50% { right: 0px; }
  100% { right: 7px; }
}
@-moz-keyframes bounce-horizontal-small {
   0% { right: 7px; }
   50% { right: 0px; }
  100% { right: 7px; }
}
@-o-keyframes bounce-horizontal-small {
   0% { right: 7px; }
   50% { right: 0px; }
  100% { right: 7px; }
}
@keyframes bounce-horizontal-small {
	0% { right: 7px; }
   50% { right: 0px; }
  100% { right: 7px; }
}

/*** Bounce-Vertical ***/
@-webkit-keyframes bounce-vertical {
    0% { top: 5px; }
   50% { top: 15px; }
  100% { top: 5px; }
}
@-moz-keyframes bounce-vertical {
    0% { top: 5px; }
   50% { top: 15px; }
  100% { top: 5px; }
}
@-o-keyframes bounce-vertical {
    0% { top: 5px; }
   50% { top: 15px; }
  100% { top: 5px; }
}
@keyframes bounce-vertical {
    0% { top: 5px; }
   50% { top: 15px; }
  100% { top: 5px; }
}

#invite.v1 .button-container .button-arrow {
	-webkit-animation-name: bounce-horizontal-small;
    -moz-animation-name: bounce-horizontal-small;
    -o-animation-name: bounce-horizontal-small;
    animation-name: bounce-horizontal-small;
}
#download  .button-container .button-arrow {
	right: 15px;
    -webkit-animation-name: bounce-vertical;
    -moz-animation-name: bounce-vertical;
    -o-animation-name: bounce-vertical;
    animation-name: bounce-vertical;
}




/*------------------------------------*\
		$VARIATIONS
\*------------------------------------*/

/* SIGNUP V1 */
#signup.v1 input[type=text], #signup.v1 input[type=password], #signup.v1 input[type=email]{
	width: 100%;
}

/* SIGNUP V2 */
#signup.v2 label{	
	text-align: right;
	width: 22%;
	margin-right: 3%;
}
#signup.v2 input[type=text], #signup.v2 input[type=password]{
	width: 75%;
}

/* IMPORT V2 */
#import.v2 .emailProvider{
	width: 80px;
	height: 40px;
	display: inline-block;
	margin-right: 5px;
}

/* INVITE V2 */
#invite.v1 hr{
	margin-bottom: 5px;
}
#invite.v1 ul{
	margin-bottom: 0px;
}
#invite.v1 .misc-container{
	width: 190px;
}
#invite.v1 .button{
	height: 30px;
	font-size: .8em;
	line-height: 30px;
	padding-left: 9px;
	padding-right: 38px;
}
#invite.v1 .button-arrow{
	top: 0px;
	right: 8px;
}
#invite.v1 .button-arrow.left{
	right: -2px;
}

/* INVITE V2 */
#invite.v2 .emailProvider{
	position: absolute;
		top: 14px;
		right: 15px;
}

/* INSTALL V1 */
#a .install-chrome .bg{
	opacity: .2;
}
#a .install-ff .bg{
	opacity: .2;
}
#a .install-safari .bg{
	opacity: .2;
}
#a .install-ie .bg{
	opacity: .2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
}
#a .install-ie8 .bg{
	opacity: .2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
}

/* INSTALL V2 */
#b .install-chrome .bg{
	opacity: .2;
}
#b .install-ff .bg{
	opacity: .2;
}
#b .install-safari .bg{
	opacity: .2;
}
#b .install-ie .bg{
	opacity: .2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
}
#b .install-ie8 .bg{
	opacity: .2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
}

.emailTextArea{
	line-height: 135%;
	padding-left: 5px;
	font-size: 0.9em;
}


