/*
-----------------------------------------------
makephotoshopfaster.com stylesheet
author: dan rubin
edited: 2010-08-27
----------------------------------------------- */

/* reset all styles, aka The Meyer Effect(tm) */
@import url("reset.css");

/* math: it's what's for dinner */
body { font-size:100%;font-family:"helvetica neue",helvetica,arial,sans-serif; }
h1 { font-size:2.25em;  /* 16x2.25=36 */ }
h2 { font-size:1.5em;   /* 16x1.5=24 */ }
h3 { font-size:1em; /* 16x1.125=18 */ }
h4 { font-size:0.875em; /* 16x0.875=14 */ }
p,ul { font-size:0.75em;  /* 16x0.75=12 */ }


a, p, span, button {
	outline:none;
}


/* layout */
body {
	background:#0f2746 url(images/bg-body.jpg) no-repeat center top;
	min-width:960px;
}

#wrapper {
	position:relative;
	width:940px;
	margin:0 auto;
}

h1 {
	background:url(images/bg-title.png) no-repeat;
	height:392px;
	width:960px;
	margin-left:-10px;
	margin-bottom:20px;
	text-indent:-9999px;
}

#marble {
	position:absolute;
	z-index:1;
	right:-28px;
	top:246px;
	background:url(images/bg-marble.png) no-repeat;
	width:403px;
	height:159px;
}

#social a,
dt, dd,
#testimonial,
#wallpaper {
	background-color:black;
	background-color:rgba(0,0,0,.4);
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}

#social {
	position:absolute;
	right:0;
	top:12px;
}

#social a {
	position:relative;
	display:block;
	background-color:black;
	background-color:rgba(0,0,0,.35);
	background-repeat:no-repeat;
	background-position:6px;
	color:white;
	color:rgba(255,255,255,.85);
	margin-bottom:2px;
	padding:8px 6px 9px 28px;
	font-size:11px;
	font-weight:bold;
	text-decoration:none;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}
#social a:hover {
	background-color:rgba(0,0,0,.5);
	color:rgba(255,255,255,1);
}
#twitter {
	background-image:url(images/icon-twitter.png);
}
#digg {
	background-image:url(images/icon-digg.png);
}
#donate {
	margin-bottom:0;
	background-image:url(images/icon-paypal.png);
}

dl {
	position:relative;
	width:940px;
	margin-bottom:30px;
}

dt {
	background-repeat:no-repeat;
	background-position:9px;
	width:460px;
	height:28px;
	margin-bottom:2px;
	text-indent:-9999px;
}

dt.pref1 {
	background-image:url(images/title-preference1.png);
}
dt.pref2 {
	background-image:url(images/title-preference2.png);
}

dt.pref2,
dd.pref2 {
	position:absolute;
	top:0;
	right:0;
}
dd.pref2 { top:30px; }

dd {
	width:460px;
	height:190px;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}
dd p {
	background-repeat:no-repeat;
	width:450px;
	height:180px;
	position:relative;
	left:5px;
	top:5px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}
dd p span {
	display:block;
	text-indent:-9999px;
	background-repeat:no-repeat;
	opacity:0;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}
dd p span:hover {
	opacity:1;
}
dd.pref1 p {
	background-image:url(images/static-preference1.png);
}
dd.pref1 p span {
	background-image:url(images/static-preference1-hover.png);
}
dd.pref2 p {
	background-image:url(images/static-preference2.png);
}
dd.pref2 p span {
	background-image:url(images/static-preference2-hover.png);
}

/* set text color and text-shadow for the content that need it */
#testimonial,
#wallpaper {
	color:white;
	text-shadow:rgba(0,0,0,.4) 1px 1px 0;
}


#testimonial {
	position:relative;
	height:160px;
	font-family:georgia,"times new roman",serif;
}
#testimonial h2 {
	background:url(images/bg-testimonial-title.png) no-repeat 0 9px;
	margin-left:9px;
	text-indent:-9999px;
}

/* avatars */
#avatar-simmy {
	position:absolute;
	left:6px;/* equals 9px when added to the padding below */
	top:27px;/* should be 30px, but had to offset to get the text to align. pfft. */
	padding:1px 5px 2px 3px;
	font-size:24px;
}
#avatar-simmy a {
	display:block;
	padding-left:58px;
	background:url(images/avatar-simmy.png) no-repeat 0 2px;
}
#avatar-simmy em {
	display:block;
	margin-top:1px;
	font-size:11px;
	line-height:13px;
}
#avatar-danrubin {
	position:absolute;
	left:6px;
	top:18px;/* should be 30px, but had to offset 2px above to get the text to align, PLUS account for 10px at the top. double-pfft. */
	padding:1px 5px 2px 3px;
	font-size:24px;
}
#avatar-danrubin a {
	display:block;
	padding-left:58px;
	background:url(images/avatar-danrubin.png) no-repeat 0 2px;
}
#avatar-danrubin em {
	display:block;
	margin-top:1px;
	font-size:11px;
	line-height:13px;
}
#avatar-simmy,
#avatar-danrubin {
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	background-color:rgba(0,0,0,.0);
}
#avatar-simmy:hover,
#avatar-danrubin:hover {
	background-color:rgba(0,0,0,.2);
	cursor:pointer;
}
#avatar-simmy a,
#avatar-danrubin a {
	color:#fff;
	text-decoration:none;
}

#testimonial blockquote {
	width:450px;
	margin-left:220px;
	font-style:italic;
	font-size:24px;
	line-height:28px;
}
#testimonial blockquote:first-letter {
	margin-left:-.4em;
}

#promotional {
	position:absolute;
	right:5px;
	top:10px;
	width:200px;
	height:140px;
	padding-left:9px;
	border-left:2px solid rgba(255,255,255,.2);
}

#tweetit {
	background:url(images/title-tweetit.png) no-repeat;
	text-indent:-9999px;
}

#donation {
	background:url(images/title-donation.png) no-repeat;
	margin-top:75px;
	text-indent:-9999px;
}

#promotional button {
	background:url(images/bg-button.png) no-repeat;
	width:198px;
	height:36px;
	margin-top:2px;
	margin-left:-2px;
	border:0;
	text-indent:-9999px;
	opacity:.8;
	cursor:pointer;
}
#promotional button:hover {
	opacity:1;
}


#wallpaper {
	position:relative;
	background-image:url(images/bg-wallpaper.png);
	background-repeat:no-repeat;
	background-position:9px 30px;
	height:130px;
	margin:10px 0 20px;
	line-height:18px;
}
#wallpaper-withtext {
	position:absolute;
	left:0;
	bottom:19px;
	width:670px;/* plus 270px padding below equals 940px */
	height:60px;
	padding-top:1px;
	padding-left:270px;
	background:url(images/bg-wallpaper-anim.gif) no-repeat 40px 0;
}
#wallpaper-sanstext {
	position:absolute;
	left:415px;
	bottom:20px;
}
#wallpaper-ipad {
	position:absolute;
	left:695px;
	bottom:20px;
}
#wallpaper-iphone {
	position:absolute;
	left:825px;
	bottom:20px;
}
#wallpaper h2 {
	background:url(images/bg-wallpaper-title.png) no-repeat 0 9px;
	margin-left:9px;
	height:20px;
	text-indent:-9999px;
}
#wallpaper h3 {
	line-height:23px;
}
#wallpaper a {
	color:white;
	color:rgba(255,255,255,.7);
	text-decoration:none;
}
#wallpaper a:hover {
	color:rgba(255,255,255,1);
}


#footer {
	height:60px;
}
#footer p {
	position:relative;
	font-size:10px;
	font-weight:bold;
	text-transform:uppercase;
	color:black;
	color:rgba(0,0,0,.6);
}
#footer p span {
	position:absolute;
	top:16px;
	left:0;
	line-height:28px;
	font-family:georgia,"times new roman",serif;
	font-size:12px;
	font-style:italic;
	font-weight:normal;
	text-transform:none;
	white-space:nowrap;
}
#footer p span.amp {
	position:relative;
	font-family:"hoefler text";
	font-size:18px;
	/*vertical-align:-2px;*/
	top:3px;
	left:32px;
}
#footer p span em {
	position:relative;
	left:70px;
}
#footer p a {
	opacity:.7;
	text-indent:-9999px;
}
#footer p a:hover {
	opacity:.9;
}

#mt {
	float:left;
}
#mt a {
	position:absolute;
	left:0;
	top:16px;
	background:url(images/mt.png) no-repeat;
	width:250px;
	height:21px;
}
#adobe {
	float:left;
	margin-left:100px;
	text-align:center;
}
#adobe a {
	position:absolute;
	left:50%;
	top:16px;
	background:url(images/adobe.png) no-repeat;
	width:23px;
	height:31px;
}
#apps {
	float:right;
}
#ps, #ai {
	position:absolute;
	width:27px;
	height:37px;
	background-repeat:no-repeat;
	opacity:.8;/* this could be better */
}
#ps {
	background-image:url(images/icon-ps.png);
}
#ai {
	background-image:url(images/icon-ai.png);
	left:52px;
}


/* big ol' arrow overlay */
#arrow {
	display:none;
	position:absolute;
	top:330px;
	right:200px;
	background:url(images/arrow-overlay.png) no-repeat;
	width:620px;
	height:658px;
	z-index:1000;
}

/* transitions */

/* links and the button */
a, p, span, button {
	-moz-transition-property:opacity, color, background-color;
	-moz-transition-duration:150ms;
	-moz-transition-timing-function:ease-in;
	
	-o-transition-property:opacity, color, background-color;
	-o-transition-duration:150ms;
	-o-transition-timing-function:ease-in;
	
	-webkit-transition-property:opacity, color, background-color;
	-webkit-transition-duration:150ms;
	-webkit-transition-timing-function:ease-in;
}

/* tip screenshots */
dd p span {
	-moz-transition-property:opacity;
	-moz-transition-duration:250ms;
	-moz-transition-timing-function:ease-in;
	
	-o-transition-property:opacity;
	-o-transition-duration:250ms;
	-o-transition-timing-function:ease-in;
	
	-webkit-transition-property:opacity;
	-webkit-transition-duration:250ms;
	-webkit-transition-timing-function:ease-in;
}