/* =COLOR PALETTE
-----------------------------------------------
link color on Mayusha: #4c9bd0
link color on Apptimator: #2373b9
headers: #13486c
text: #484848
blue: #2384c5
lighter blue: #3498db
green: #53a54b
*/

/* =FONTS 
-----------------------------------------------*/

/*OPEN SANS*/
@font-face {
    font-family: 'open_sansbold';
    src: url('../fonts/open-sans/bold/OpenSans-Bold-webfont.eot');
    src: url('../fonts/open-sans/bold/OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/open-sans/bold/OpenSans-Bold-webfont.woff') format('woff'),
         url('../fonts/open-sans/bold/OpenSans-Bold-webfont.ttf') format('truetype'),
         url('../fonts/open-sans/bold/OpenSans-Bold-webfont.svg#open_sansbold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansitalic';
    src: url('../fonts/open-sans/italic/OpenSans-Italic-webfont.eot');
    src: url('../fonts/open-sans/italicOpenSans-Italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/open-sans/italicOpenSans-Italic-webfont.woff') format('woff'),
         url('../fonts/open-sans/italicOpenSans-Italic-webfont.ttf') format('truetype'),
         url('../fonts/open-sans/italicOpenSans-Italic-webfont.svg#open_sansitalic') format('svg');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'open_sanslight';
    src: url('../fonts/open-sans/light/OpenSans-Light-webfont.eot');
    src: url('../fonts/open-sans/light/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/open-sans/light/OpenSans-Light-webfont.woff') format('woff'),
         url('../fonts/open-sans/light/OpenSans-Light-webfont.ttf') format('truetype'),
         url('../fonts/open-sans/light/OpenSans-Light-webfont.svg#open_sanslight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansregular';
    src: url('../fonts/open-sans/regular/OpenSans-Regular-webfont.eot');
    src: url('../fonts/open-sans/regular/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/open-sans/regular/OpenSans-Regular-webfont.woff') format('woff'),
         url('../fonts/open-sans/regular/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('../fonts/open-sans/regular/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sanssemibold';
    src: url('../fonts/open-sans/semibold/OpenSans-Semibold-webfont.eot');
    src: url('../fonts/open-sans/semibold/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/open-sans/semibold/OpenSans-Semibold-webfont.woff') format('woff'),
         url('../fonts/open-sans/semibold/OpenSans-Semibold-webfont.ttf') format('truetype'),
         url('../fonts/open-sans/semibold/OpenSans-Semibold-webfont.svg#open_sanssemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*MUSEO SLAB*/
/*
 * Web Fonts from fontspring.com
 *
 * All OpenType features and all extended glyphs have been removed.
 * Fully installable fonts can be purchased at http://www.fontspring.com
 *
 * The fonts included in this stylesheet are subject to the End User License you purchased
 * from Fontspring. The fonts are protected under domestic and international trademark and 
 * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or
 * distributing this font software.
 *
 * (c) 2010-2013 Fontspring
 *
 * The fonts included are copyrighted by the vendor listed below.
 *
 * Vendor:      exljbris Font Foundry
 * License URL: http://www.fontspring.com/fflicense/exljbris
 */

@font-face {
    font-family: 'museo_slab500';
    src: url('../fonts/museo/Museo_Slab_500_2-webfont.eot');
    src: url('../fonts/museo/Museo_Slab_500_2-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/museo/Museo_Slab_500_2-webfont.woff') format('woff'),
         url('../fonts/museo/Museo_Slab_500_2-webfont.ttf') format('truetype'),
         url('../fonts/museo/Museo_Slab_500_2-webfont.svg#museo_slab500') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
	background: url('../images/pattern-bg-slashes.png') repeat;
	font-family: 'open_sansregular', Arial, Verdana, sans-serif;
	color: #484848;
}

/* =GENERAL 
-----------------------------------------------*/
h1, h2, h3, h4 {
	color: #53a54b;
	font-weight: normal;
}

h1 {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
}

h1.super-header {
	font-size: 30px;
}

h2 {
	color: #53a54b;
	font-size: 16px;
	font-weight: bold;
}

p {
	line-height: 1.65em;
}

a {
	color: #2384c5;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* =LAYOUT 
-----------------------------------------------*/

/* apply a natural box layout model to all elements */
*, *:before, *:after {
  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  box-sizing: border-box;
 }

 /**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

.main-wrap {
	width: 1200px;
	margin: 0 auto;
}

.content-container {
	width: 100%;
	min-height: 800px;
	background-color: #fff;
	padding-bottom: 50px;
	border: 1px solid #e5e5e5;
	border-bottom: 1px solid #d9d8d8;
	border-top: 0;
	/*-webkit-box-shadow:  0px 0px 0px 10px rgba(0, 0, 0, .15);
    box-shadow:  0px 0px 0px 10px rgba(0, 0, 0, .15);
    margin-top: 10px;*/
}

/* =HEADER 
-----------------------------------------------*/
.header {
	height: 110px;
	-webkit-box-shadow:  0px 1px 0px 0px rgba(0, 0, 0, .15);
    box-shadow:  0px 1px 0px 0px rgba(0, 0, 0, .15);
    border-bottom: 1px solid #d9d8d8;
    background-color: #fff;
    position: relative;
    z-index: 5;
}

.logo {
	display: block;
	width: 541px;
	height: 80px;
	float: left;
	margin: 12px 0 0 44px;
	background: url('../images/apptimatorLogo-large.png') no-repeat;
	font: 0/0 a;
    text-shadow: none;
    color: transparent;
}

/* =NAVIGATION 
-----------------------------------------------*/
ul.nav li, ul.nav ul.sub-menu li{
	list-style-type: none;
}

ul.nav {
	display: block;
	float: right;
	margin: 50px 44px 0 0;
	
}

ul.nav li {
	display: block;
	float: left;
	text-transform: uppercase;
	font-family: 'open_sanssemibold', Arial, Verdana, sans-serif;
	padding: 7px 20px;
	position: relative;
}

ul.nav li a {
	color: #484848;
	text-decoration: none;
}

ul.nav li:hover {
	background: #2373b9;
	color: #fff;
	cursor: default;
}

ul.nav li:hover a {
	color: #fff;
}

ul.nav li ul.sub-menu li {
	display: none;
}

ul.nav li:hover > ul.sub-menu li {
	display: block;
	background: #3498db;
	position: absolute;
	top: 35px;
	left: 0px;
	border-top: 2px solid #fff;
}

.sub-head {
	width: 100%;
	padding: 10px 59px 0;
	height: 46px;
	background: #f2f2f2;
	border-bottom: 1px solid #d9d8d8;
	position: relative;
	z-index: 2;
	margin-top: -2px;
}

.mayusha-tag {
	float: left;
	font-size: 14px;
	font-style: italic;
	padding-top: 4px;
}

.mayusha-tag img {
	float: left;
	margin: -5px 5px 0 0;
}

.mayusha-link {
	float: right;
	font-size: 14px;
	text-transform: uppercase;
	padding-top: 4px;
}

/* =HIGHLIGHT TEXT 
-----------------------------------------------*/
.highlight-text {
	width: 100%;
	padding: 14px 20px;
	background: #2373b9;
	color: #fff;
	font-family: 'museo_slab500', Arial, Verdana, sans-serif;
	font-size: 21px;
	margin: 25px 0;
}

.highlight-text p {
	margin: 0;
	line-height: 1.35em;
}

/* =PRODUCT WORKFLOW
-----------------------------------------------*/
.product-workflow {
	width: 1024px;
	height: auto;
	padding: 30px 0 0 30px;
}

/* =FOOTER 
-----------------------------------------------*/
.footer {
	font-family: 'open_sanssemibold', Arial, Verdana, sans-serif;
	font-size: 12px;
	color: #878787;
	text-align: right;
	padding: 10px 44px 10px 0;
}

/* =CONTENT 
-----------------------------------------------*/
.content {
	width: 1024px;
	margin: 0 auto;
	padding-top: 25px;
}

.left-col,
.right-col {
	width: 49%;
	float: left;
}

.right-col {
	margin-left: 2%;
}

/* =FEATURES
-----------------------------------------------*/

.features .left-col,
.features .right-col {
	background: #fff;
    font-size: 14px;
}

.features .left-col h1,
.features .right-col h1 {
	display: block;
	width: 100%;
	padding: 10px;
	margin: 0;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	background: #2373b9;
	text-transform: none;
    position: relative;
    z-index: 1;
	-webkit-box-shadow:  0 1px 3px 0 rgba(0, 0, 0, 0.33);
    box-shadow:  0 1px 3px 0 rgba(0, 0, 0, 0.33);
}

.stacked-content {
	background: #fff;
	-webkit-box-shadow:  0 1px 3px 0 rgba(0, 0, 0, 0.33);
    box-shadow:  0 1px 3px 0 rgba(0, 0, 0, 0.33);
	padding: 5px 20px 10px 20px;
	position: relative;
	z-index: 5;
	margin-top: 5px;
}

.features .stacked-content {
	border: 1px solid #e5e5e5;
}

.stacked-content ul li {
	padding: 5px 0;
}

.stacked-content.top {
	height: 731px;
}

.stacked-content.bottom {
	height: 718px;
}

/* =SUPPORT
-----------------------------------------------*/
ul.faq-nav {
	display: block;
	margin: 25px 0;
	padding: 0;
}

ul.faq-nav li {
	list-style-type: none;
	display: block;
	float: left;
	text-transform: uppercase;
	padding: 0 15px;
}

ul.faq-nav li:first-child {
	padding-left: 0;
}

.support .stacked-content {
	-webkit-box-shadow:  0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow:  0 0 0 0 rgba(0, 0, 0, 0);	
}

h2.faq-header {
	font-size: 24px;
	font-weight: bold;
	display: block;
	padding-bottom: 20px;
	border-bottom: 1px solid #d9d8d8;
}

p.question {
	font-weight: bold;
}

p.back-to-top {
	float: right;
}


/* =FREE TRIAL
-----------------------------------------------*/
.free-trial .left-col {
	width: 60%;
	padding-top: 25px;
}

.free-trial .left-col p {
	text-align: center;
}

.free-trial .right-col {
	width: 38%;
}

.logo-image {
	display: block;
	width: 321px;
	height: 146px;
	margin: 0 auto;
	margin-bottom: 15px;
}

.android {
	width: 300px;
	margin: 0 auto;
	color: #83a934;
	font-family: 'open_sanssemibold', Arial, Verdana, sans-serif;
	text-align: center;
}

.android img {
	margin: 0 5px -10px 0;
}

.play-store {
	margin: 25px 0;
}

.blue-link {
	display: block;
	width: 299px;
	float: right;
	background: #2384c5;
	color: #fff;
	-webkit-box-shadow:  0 1px 3px 0 rgba(0, 0, 0, 0.33);
    box-shadow:  0 1px 3px 0 rgba(0, 0, 0, 0.33);
    padding: 10px;
    text-align: center;

}

.blue-link:hover {
	cursor: pointer;
	text-decoration: none;
	background: #1f75af;
	-webkit-transition: background 0.5s linear;
    -moz-transition: background 0.5s linear;
    -ms-transition: background 0.5s linear;
    -o-transition: background 0.5s linear;
    transition: background 0.5s linear;
}

.play-link {
	display: block;
	float: right;
	margin: 25px 0;
}


