/*	Less Framework 4
	http://lessframework.com
	by Joni Korpi
	License: http://opensource.org/licenses/mit-license.php	*/


/*	Resets
	------	*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, 
p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, 
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr, 
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figure, figcaption, hgroup, 
menu, footer, header, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}

article, aside, canvas, figure, figure img, figcaption, hgroup,
footer, header, nav, section, audio, video {
	display: block;
}

a img {border: 0;}

a{
	text-decoration: none;
}


/*	Typography presets
	------------------	*/

.gigantic {
	font-size: 110px;
	line-height: 120px;
	letter-spacing: -2px;
}

.huge, h1 {
	font-size: 68px;
	line-height: 72px;
	letter-spacing: -1px;
}

.large, h2 {
	font-size: 42px;
	line-height: 48px;
}

.bigger, h3 {
	font-size: 26px;
	line-height: 36px;
}

.big, h4 {
	font-size: 22px;
	line-height: 30px;
}

body {
	font: 16px/24px Georgia, serif;
}

.small, small {
	font-size: 13px;
	line-height: 18px;
}

/* Selection colours (easy to forget) */

::selection 	 	{background: rgb(255,255,158);}
::-moz-selection 	{background: rgb(255,255,158);}
img::selection 		{background: transparent;}
img::-moz-selection	{background: transparent;}
body {-webkit-tap-highlight-color: rgb(255,255,158);}



/*		Default Layout: 992px. 
		Gutters: 24px.
		Outer margins: 48px.
		Leftover space for scrollbars @1024px: 32px.
-------------------------------------------------------------------------------
cols    1     2      3      4      5      6      7      8      9      10
px      68    160    252    344    436    528    620    712    804    896    */


html{
	background: url(../img/bg.jpg);
}


body {
	width: 896px;
	padding: 50px 48px 84px;
	color: rgb(60,60,60);
	-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
	margin: 0 auto;
	font-family: "PT Sans", Helvetica, Arial, sans-serif;
}


#logo{
	margin: 0 auto;
	display: block;
	width: 172px;
	height: 37px;
	background: url(../img/logo_s1.png) no-repeat;
	text-indent: -9999px;
}

#logo a{
	display: block;
	width: 172px;
	height: 37px;
}

#apps{
	width: 840px;
	margin: 0 auto;
	padding: 50px 0;
}

#apps .app{
	width: 340px;
	height: 200px;
	padding: 30px 20px;
	float: left;
	font-size: 13px;
	margin: 0 20px;
	margin-bottom: 20px;
	
	-webkit-box-shadow: inset 0px 0px 5px 5px rgba(199, 165, 174, .2);
	-moz-box-shadow: inset 0px 0px 5px 5px rgba(199, 165, 174, .2);
	box-shadow: inset 0px 0px 5px 5px rgba(199, 165, 174, .2);
	
	background: #E5D8D5;
	background: rgba(219, 200, 196, .3);

	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}

#apps .app:hover{

	-webkit-box-shadow: inset 0px 0px 5px 5px rgba(199, 165, 174, .4);
	-moz-box-shadow: inset 0px 0px 5px 5px rgba(199, 165, 174, .4);
	box-shadow: inset 0px 0px 5px 5px rgba(199, 165, 174, .4);
 
	background: rgba(219, 200, 196, .6);
 

}



#apps .app p{
 	text-align: left;
	line-height: 1.5em;
	padding: .5em ;

}


#apps .app h3{
	text-align: center;
	padding: 10px 0;
	padding-bottom: 0;
	font-size: 19px;
	color: #660033;
	margin-top: 0;

	padding-top: 0;
	letter-spacing: 1px;
	display: inline-block;
}

.app_logo{
	float: left;
	padding-right: 10px;
}

.download_links{
	clear: both;
	text-align: center;
}

.appsite_link{
	background: #D05251;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding: 2px 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.appsite_link:hover{
 
	background: #C10202;
 	color: #fff;
}

#mailing_list{
	clear: both;
	text-align: center;
	padding: 50px 0;
}

h4{
	font-size: 15px;
	color: #666;
	border-top: 1px dotted #999;
	padding-top: 20px;
	padding-bottom: 10px;
}

a{
	color: #666;	
}

a:hover{
	color: #333;	
}

img{
	opacity: 1;
	-moz-transition : background-color .25s .1s linear, color .25s .1s linear; 
	-o-transition : background-color .25s .1s linear, color .25s .1s linear; 
	-webkit-transition : background-color .25s .1s linear, color .25s .1s linear; 
	transition : background-color .25s .1s linear, color .25s .1s linear;
}

img:hover{
	opacity: .8;
}

#mc_embed_signup{
	width: 400px;
	margin: 0 auto;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea {
	margin: 0;
	border: 1px solid #ccc;
	border-right: none;
	color: #666;
	background: #ffffff;
	background: rgba(255, 255, 255, 0.4);
	padding: .5em;
	font-size: 13px;
	font-family: "PT Sans", sans-serif;
	float: left;
	width: 200px;
}
 
input[type="submit"] {
	padding: .5em;
	margin: 0;
	border: 1px solid #666;
	font-size: 13px;
	color: #fff;
	display: block;
	float: left;
	cursor: pointer;
  	color: #fff;
	font-family: "PT Sans", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: #666;
	-moz-transition : background-color .25s .1s linear, color .25s .1s linear; 
	-o-transition : background-color .25s .1s linear, color .25s .1s linear; 
	-webkit-transition : background-color .25s .1s linear, color .25s .1s linear; 
	transition : background-color .25s .1s linear, color .25s .1s linear;
}

input[type="submit"]:hover {
	color: #fff;
 	background-color: #333;
}

#social{
	text-align: center;
}

#social img{
	margin-bottom: -8px;
	padding-left: 5px;
}

#blog_link{
	margin-top: 20px;
	font-size: 13px;
}	

#copyright{
	display: block;
	clear: both;
	text-align: center;
	font-size: 13px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px dotted #ccc;
}

#share_btns{
	width: 220px;
	float: right;
}

.fb-like{
	display: block;
	float: right;
}

.pin-it-button{
	padding-top: 2px;
	display: block;
	float: right;
	padding-left: 10px;
}


/*		Tablet Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712    */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	
	body {
		width: 712px;
		padding: 48px 28px 60px;
	}
}



/*		Mobile Layout: 320px.
		Gutters: 24px.
		Outer margins: 34px.
		Inherits styles from: Default Layout.
---------------------------------------------
cols    1     2      3
px      68    160    252    */

@media only screen and (max-width: 767px) {
	
	body {
		width: 252px;
		padding: 30px 34px 60px;
	}
	
	
	#logo, #apps, #apps .app, #apps .app h3, #mailing_list{
		float: none !important;
		width: auto !important;
		text-align: center !important;
	
	}
	
	#logo{
		width: 172px !important;
	}
	
	#apps{
		padding-top: 20px;
		padding-bottom: 10px !important;
	
	}
	
	#apps .app {
		padding-bottom: 15px;
		margin-bottom: 10px;
		height: auto ;
		text-align: center;
	}
	
	.app_logo{
		float: none;
	}
	
	#apps .app img{
		margin: 0 auto;
	}
	
	#mailing_list{
		clear: both;
		overflow: hidden;
		padding-top: 20px;
	}
	
	input[type="text"],
	input[type="number"],
	input[type="email"],
	input[type="password"],
	textarea {
		margin-bottom: 5px;
		border: 1px solid #ccc !important;
		padding: .5em;
		width: 75%;
	}
	
	img{
		opacity: 1;
	}
	
	#share_btns{
	padding: 20px;
	float: none;
	}

	
}



/*		Wide Mobile Layout: 480px.
		Gutters: 24px.
		Outer margins: 22px.
		Inherits styles from: Default Layout, Mobile Layout.
------------------------------------------------------------
cols    1     2      3      4      5
px      68    160    252    344    436    */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	body {
		width: 436px;
		padding: 36px 22px 48px;
	}
	
}


/*	Retina media query.
	Overrides styles for devices with a 
	device-pixel-ratio of 2+, such as iPhone 4.
-----------------------------------------------    */

@media 
	only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (min-device-pixel-ratio: 2) {
	
	body {
	
	}
	
}