/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

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

article, aside, figure, footer, header, 
hgroup, nav, section { display:block; }

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are three custom edits:
 * remove arial, helvetica from explicit font stack
 * make the line-height relative and unit-less
 * remove the pre, code styles
*/
body { font: 13px sans-serif; *font-size:small; *font:x-small; line-height:1.22; }

table { font-size:inherit; font: 100%; }

select, input, textarea { font: 99% sans-serif; }


/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 


/* 
 * minimal base styles 
 */


/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
body, select, input, textarea { color: #444; }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
 
/* www.aestheticallyloyal.com/public/optimize-legibility/ */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; text-rendering: optimizeLegibility; }

html { 
  /* maxvoltar.com/archive/-webkit-font-smoothing */ 
  -webkit-font-smoothing: antialiased; 
  /* always force a scrollbar in non-IE */ 
  /* overflow-y: scroll; */
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden
}

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul { margin-left: 30px; }
ol { margin-left: 30px; list-style-type: decimal; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #333; color:#fff; text-shadow: none; }
::selection { background:#333; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }

 /* Primary Styles
    Author: Daniel Erickson
 */

body {
  font-family: "Museo Sans", "Helvetica", sans-serif;
  font-size: 62.5%;
  background: #000 url(../../../../../public/templates/slideshow/img/bg.gif);
  overflow: hidden;
}
a {color:#0074B7;text-decoration:none;}

#title, #bottom {
	display: none;
}

#title {
	width: 100%;
	height: 58px;
	background: #000;
	background: -moz-linear-gradient(top, #333 0%, #000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333), color-stop(100%,#000));
	background: -webkit-linear-gradient(top, #333 0%,#000 100%);
	background: -o-linear-gradient(top, #333 0%,#000 100%);
	background: -ms-linear-gradient(top, #333 0%,#000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#000',GradientType=0 );
	background: linear-gradient(top, #333 0%,#000 100%);
	border-bottom:1px solid #393939;
}

#title .user {
	overflow: hidden;
	float: left;
}

#title .avatar {
	padding: 5px;
	display: block;
	float: left;
}
#title .avatar img {
	width: 48px;
	height: 48px;
	vertical-align: -15px;
}

#title .permalink {
	display: block;
	float: left;
	font-size: 2.4em;
	line-height: 58px;
	padding: 0 15px 0 10px;
	color: #999;
}
#title .permalink:hover {
	color: #CCC;
}

#title .title {
	display: block;
	float: left;
	line-height: 58px;
	font-size: 2.4em;
	font-style: normal;
	color: #CCC;
	white-space: nowrap;
	overflow: hidden;
	border-left: 1px solid #333;
}
#title .title a {
	display: block;
  color: #CCC;
	padding: 0 15px;
}

#title a:hover {
  color: #FFF;
}

#bottom {
  border-top:1px solid #393939;
  position: absolute;
  bottom: 0px;
  width: 100%;
  z-index:999;
}

#toolbar {
	height: 40px;
	position: relative;
	background: #000;
	background: #161616;
}
#toolbar .pager {
	font-size: 1.6em;
	line-height: 40px;
	color: #CCC;
	text-align: center;
}
#toolbar .previous, #toolbar .next, #toolbar .fullscreen, #toolbar .play, #toolbar .pause, #toolbar .replay, #toolbar .loop {
	display: block;
	text-indent: -9999px;
	position: absolute;
	outline: none;
}
#toolbar .previous, #toolbar .next {
	width: 20px;
	height: 18px;
	top: 11px;
	left: 50%;
}
#toolbar .play, #toolbar .pause {
	width: 16px;
	height: 18px;
	top: 11px;
	left: 16px;
}
#toolbar .previous {
	background: url(../../../../../public/templates/slideshow/img/sprites.png) 0 -487px;
	margin-left: -60px;
}
#toolbar .next {
	background: url(../../../../../public/templates/slideshow/img/sprites.png) 0 -355px;;
	margin-left: 40px;
}
#toolbar .fullscreen {
	background: url(../../../../../public/templates/slideshow/img/sprites.png) 0 -305px;
	width: 24px;
	height: 24px;
	top: 8px;
	right: 16px;
	display: none;
}
#toolbar .play {
	background: url(../../../../../public/templates/slideshow/img/sprites.png) 0 -443px;
}
#toolbar .pause {
	background: url(../../../../../public/templates/slideshow/img/sprites.png) 0 -399px;
	display: none;
}

#toolbar .replay {
	width: 18px;
	height: 18px;
	top: 11px;
	right: 16px;
	display: none;
	background: url(../../../../../public/templates/slideshow/img/sprites.png) 0 -794px;
}
#toolbar .replay_embed {
	right: 56px;
}
#toolbar .loop {
	width: 34px;
	height: 18px;
	top: 11px;
	left: 16px;
	display: none;
	background: url(../../../../../public/templates/slideshow/img/sprites.png) 0 -828px;
}

#poweredBy {
	height: 29px;
	line-height: 24px;
	background: #333;
	text-align: right;
	padding-right: 10px;
	font-size: 1.1em;
	color: #999;
}

#poweredBy a {
	display: block;
	float: right;
	width: 132px;
	height: 19px;
	margin-left: 4px;
  margin-top: 7px;
  background: url('../../../../../public/templates/img/livefyre-embed-footer.png') no-repeat;
  background-position: 0 -20px;
}
#poweredBy a:hover {
	background-position: 0 0;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  #poweredBy a {
    background-image: url('../../../../../public/templates/img/livefyre-embed-footer-2x.png');
    background-size: 134px auto;
  }
}

#loading {
	display: block;
	width: 58px;
	height: 58px;
	background: #303030 url(../../../../../public/templates/slideshow/img/loading.gif) 5px 5px no-repeat;
	text-indent: -9999px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -29px 0 0 -29px;
	-webkit-border-radius: 29px;
	-moz-border-radius: 29px;
	border-radius: 29px;
}

#branding {z-index:9000; position: relative; width:700px; height: 40px; margin: 0 auto;}
#branding img {margin: 10px 20px;}
#branding a	{color: #fff;}
#branding h2 {margin: -35px 0 0 555px; color: #fff; text-shadow:0 0px 5px rgba(0,0,0,1);}
#twitterShow {/*display:none;*/position:relative;top: 0px;}
.slideWrapper {
  width:100% !important;
  height: 100%;
  margin: 0px auto;
  padding:0px;
  background: none;
  background-repeat: no-repeat;
}	

.slideWrapper .inner {
  padding:35px 15px;
}

.slideWrapper:hover .actions {
  display: inline-block;
}

.quote {
	position: absolute;
	background: #fff;
	overflow:hidden;
	width:600px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
	clear: both;
	-webkit-box-shadow: 10px 10px 30px 0px #000;
	-moz-box-shadow: 10px 10px 30px 0px #000;
	box-shadow: 10px 10px 30px 0px #000;
	background: -moz-linear-gradient(top, #fff 0%, #e4e4e4 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#e4e4e4));
	background: -webkit-linear-gradient(top, #fff 0%,#e4e4e4 100%);
	background: -o-linear-gradient(top, #fff 0%,#e4e4e4 100%);
	background: -ms-linear-gradient(top, #fff 0%,#e4e4e4 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e4e4e4',GradientType=0 );
	background: linear-gradient(top, #fff 0%,#e4e4e4 100%);
}
.quote_container, .quote_container_inner {
	width: 100%;
	height: 100%;
}
.quote_container_inner {
	background: url(../../../../../public/templates/slideshow/img/bg.png);
}
.quote p {
	font-family: "Georgia", serif;
	font-size: 3em;
	line-height: 1.2em;
	height: 152px;
	overflow: auto;
	padding: 24px;
}
.twitterElement .quote p {
	/*background: url(../../../../../public/templates/slideshow/img/twitter_bg.png) 370px 90px no-repeat;*/
}
.facebook-element{
	width: 500px;
	height: 100%;
	margin: 0 auto;
	overflow-y: auto;
}
.quote p .arrow {
	display: block;
	position: absolute;
	left: 41px;
	top: 200px;
	background: url(../../../../../public/templates/slideshow/img/arrow_tweet.gif);
	width: 20px;
	height: 11px;
}
.quote aside {
	padding: 18px 24px 0px 24px;
	height: 54px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
}
.quote aside .avatar_container {
	padding: 2px;
	border: 1px solid #9E9E9E;
	float: left;
	background: #FFF;
}
.quote aside img {
	display: block;
	width: 48px;
	height: 48px;
}
.quote aside .username_container {
	float: left;
	padding: 10px 0 0 10px;
}
.quoteElement .quote aside .username_container, .linkElement .quote aside .username_container {
	padding: 0;
}
.quote aside .username {
	font-size: 1.8em;
	line-height: 1em;
}
.twitterElement .quote aside .username {
  font-size: 1.3em;
}
.quote aside .name {
	font-size: 1.8em;
	color: #999;
}
.quote .date_actions {
	padding: 0px 24px 18px 24px;
}
.quote .date {
	font-size: 1.2em;
	color: #999;
	padding: 4px 0;
	display: inline-block;
}
.quote .date a {
	color: #999;
	display: inline-block;
	height: 1.3em;
	text-shadow: 0px 1px 0px white;
  vertical-align: middle;
  padding: 8px 0 0 5px;
}

.twitterElement .quote .twitter-logo {
	background: url('../../../../../public/templates/slideshow/img/twitter.png') no-repeat -1px 0px;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: bottom;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  .twitterElement .quote .twitter-logo {
    background-image: url('../../../../../public/templates/slideshow/img/twitter-hi.png');
    background-size: 19px 15px;
  }
}

.quote .date a:hover {
	color: #666;
}
.actions {
	font-size: 1.2em;
	display: none;
	float: right;
}
.quote .actions {
  padding: 4px 0;
}
.actions a {
	display: inline-block;
	padding-left: 5px;
	line-height: 15px;
	text-shadow: 0px 1px 0px white;
}
.quote .actions a {
  padding: 8px 0 0 5px;
}
.actions a i {
	display: block;
	float: left;
	width: 15px;
	height: 15px;
	background: #000;
	margin: -1px 3px 0 0;
	background: url(../../../../../public/templates/slideshow/img/sprite-icons.png);
}
.actions a.reply i {
	background-position: 0 0;
}
.actions a.retweet i {
	background-position: -176px 0;	
}
.actions a.favorite i {
	background-position: -32px 0;
}
.actions a.reply:hover i {
	background-position: -16px 0;
}
.actions a.retweet:hover i {
	background-position: -192px 0;	
}
.actions a.favorite:hover i {
	background-position: -48px 0;
}

.quoteElement .quote p, .linkElement .quote p {
	background: none;
	font-size: 2.4em;
}
.quoteElement .quote aside .website, .linkElement .quote aside .website {
	height: 16px;
	margin-bottom: 5px;
}
.quoteElement .quote aside .website img, .linkElement .quote aside .website img {
	width: 16px;
	height: 16px;
	float: left;
}
.quoteElement .quote aside .website a, .linkElement .quote aside .website a {
	padding-left: 5px;
	font-size: 1.4em;
	line-height: 16px;
}
.quoteElement .quote aside .title, .linkElement .quote aside .title {
	font-size: 1.6em;
	font-weight: bold;
}


.link {
	position: absolute;
	background: #fff;
	overflow:hidden;
	width:600px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
	clear: both;
	-webkit-box-shadow: 10px 10px 30px 0px #000;
	-moz-box-shadow: 10px 10px 30px 0px #000;
	box-shadow: 10px 10px 30px 0px #000;
	background: -moz-linear-gradient(top, #fff 0%, #e4e4e4 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#e4e4e4));
	background: -webkit-linear-gradient(top, #fff 0%,#e4e4e4 100%);
	background: -o-linear-gradient(top, #fff 0%,#e4e4e4 100%);
	background: -ms-linear-gradient(top, #fff 0%,#e4e4e4 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e4e4e4',GradientType=0 );
	background: linear-gradient(top, #fff 0%,#e4e4e4 100%);
}
.link_container, .link_container_inner {
	width: 100%;
	height: 100%;
}
.link_container_inner {
	background: url(../../../../../public/templates/slideshow/img/bg.png);
}
.link p {
	font-family: "Georgia", serif;
	font-size: 3em;
	line-height: 1.2em;
  text-overflow: ellipsis;
	overflow: hidden;
	padding: 24px;
}

.link p img {
	margin: 0px 15px 10px 0px;
  max-width: 200px;
  float: left;
}
.link aside {
	padding: 18px 24px 0px 24px;
	height: 54px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
}
.link aside .avatar_container {
	padding: 2px;
	border: 1px solid #9E9E9E;
	float: left;
	background: #FFF;
}
.link aside img {
	display: block;
	width: 48px;
	height: 48px;
}
.link aside .username_container {
	float: left;
	padding: 0px 10px 0 0px;
}
.linkElement .quote aside .username_container {
	padding: 0;
}
.link aside .username {
	font-size: 1.8em;
	line-height: 1em;
}
.link aside .name {
	font-size: 1.3em;
	color: #999;
}
.link .date_actions {
	padding: 0px 24px 18px 24px;
}
.link .date {
	font-size: 1.2em;
	color: #999;
	padding: 4px 0;
	display: inline-block;
}
.link .date a {
	color: #999;
	display: inline-block;
	height: 1.3em;
	text-shadow: 0px 1px 0px white;
}
.link .date a:hover {
	color: #666;
}
.link .actions {
	font-size: 1.2em;
	display: inline-block;
	float: right;
}
.link .actions a {
	display: inline-block;
	padding-left: 5px;
	line-height: 15px;
	text-shadow: 0px 1px 0px white;
}

.attribution {		
	background: rgba(0, 0, 0, 0.75);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#BF000000,endColorstr=#BF000000)"; /* IE8 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#BF000000,endColorstr=#BF000000);   /* IE6 & 7 */
  zoom: 1;
	position: absolute;
	top: -130px;
	width: 100%;
	z-index: 888;
	color: #FFF;
	font-size: 2em;
	line-height: 1.2em;	
  -webkit-transition:all 0.5s ease;
  -moz-transition:all 0.5s ease;
}

.imageElement:hover .attribution,
.videoElement:hover .attribution,
.videoElement.hover .attribution { /* needed for IE 8 */
  top: 0px;
}

.attribution p {
	padding: 10px 10px 10px 10px;
}
.attribution p i {
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	width: 32px;
	height: 32px;
	background: url(../../../../../public/templates/slideshow/img/sprites.png) 0 0;
}
.attribution p.flickr i {
	background: url(../../../../../public/templates/slideshow/img/sprites.png) 0 -268px;
}
.attribution p span {
	font-size: 0.8em;
}
.attribution .avatar, .attribution .avatar img {
	display: block;
	width: 32px;
	height: 32px;
}
.attribution .avatar {
	position: absolute;
	top: 10px;
	left: 15px;
}
.twitter-image aside {
	font-size: 1.6em;
//xd:	padding-bottom: 10px;
}
.twitter-image .user-block {
	margin: 10px 0px 10px 15px;
}
.twitter-image aside .avatar img {
	position: absolute;
	top:5px;
	left:8px;
}
.twitter-image aside .handle {
	display: block;
	margin: 0px 0px 0px 55px;
	font-size: 0.88em;
	color: #0094ff;
}
.twitter-image aside .full-name .handle {
  font-size: 1em;
  margin: 14px 0px 0px 55px;
}
.twitter-image .content {
	margin: 0px 20px 5px 20px;
	color: #ccc;
}
.twitter-image .content a {
	color: #0094ff;
}

.twitter-image a:hover {
  text-decoration: underline;
}

.twitter-image .attribution {
	padding-left: 0px;
}

.twitter-image .attribution .meta {
	color: #aaa;
	font-size: 0.8em;
  margin-top: 4px;
  line-height: 20px;
}

.twitter-image .attribution .twitter-logo {
	background: url('../../../../../public/templates/slideshow/img/twitter.png') 0px 5px no-repeat;
  float: left;
  display: block;
  width: 24px;
  height: 20px;
  margin-top: -2px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  .twitter-image .attribution .twitter-logo {
    background-image: url('../../../../../public/templates/slideshow/img/twitter-hi.png');
    background-size: 19px 15px;
  }
}

.twitter-image .actions {
  margin-left: 5px;
  float: none;
}

.twitter-image .actions a {
  color: #ccc;
	font-size: 0.8em;
  text-shadow: none;
}


.photoSlide {
	display: block;
	height: 100%;
	margin: 0 auto;
	-webkit-box-shadow: 10px 10px 30px 0px #000;
	-moz-box-shadow: 10px 10px 30px 0px #000;
	box-shadow: 10px 10px 30px 0px #000;
}

.videoElement iframe, .videoElement object, .videoElement embed {
  display: block;
  width: 100%;
  height: 100%;
}

.videoElement iframe[src*="vine.co"] + .attribution {
  left: 70px;
  right: 0;
  width: auto;
}

.image {
	border:1px solid #fff;
	margin:2px;
	margin:0 auto;
	width:550px;
	line-height:1;
	overflow:hidden;
	text-align:center;
	max-height:400px;
}

.image img {
	max-width:100%;
	max-height:100%;
	margin:2px;
	overflow:hidden;
	border:1px solid #fff;
}

.photoContainer {
  position: absolute;
  background: #fff;
  max-width:600px;
  text-align:center;
  padding: 0 0 10px 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.photoContainer > img {
	max-height:450px;
	text-align:center;
	
}
.photoContainer .legend {
	text-align:left;
  background: url("http://static.storify.com/img/photoTweetBackgroundWhite.gif") no-repeat scroll 0 0 transparent;
  position: relative;
  margin-top: -24px;
  max-height: 62px;
  min-height: 45px;
  padding: 30px 5px 0 17px;}
.photoContainer .author {
  font-size: 8pt !important;}
.photoContainer a {
  font-size: 8pt !important;}
.photoContainer .text {
  font-size: 16pt !important;
  line-height: 1.1;}
.photoContainer .photoTweet {
  font-size: 8.5pt;
  margin-left: 1px;}
.photoContainer .photoTweet .avatar {
  margin-right: 15px;
float:left;}
.photoContainer .photoTweet .content {
  line-height: 0.5;
  background: none;
  padding: 0 0 0 0px;
  width: auto;}
.photoContainer .photoTweet .text {
  line-height: 1.25;
display:block;
padding-left:65px;}
.photoContainer .photoTweet .timestamp {
  	clear:left;
	color:#939393 !important;
	display:block;
	float:left;
	font-size:12pt !important;
	margin:5px 0 5px 65px;}
.photoContainer .photoTweet .timestamp a {
  color: #939393 !important;}


.slideWrapper.photoElement {
	padding: 0;
}

.slideWrapper.textElement {
  padding: 0;text-align: center;
}
.slideWrapper.textElement p, .slideWrapper.textElement div {
	font-family: "Georgia", serif;
	font-size: 3.6em;
	line-height: 1.2em;
	color: #FFF;
	text-shadow: 0px -1px 0px #000000;
	filter: dropshadow(color=#000000, offx=0, offy=-1);
	text-align: center;
	position: absolute;
	width: 100%;
	max-height: 100%;
	overflow: auto;
}
.slideWrapper.textElement p span {
	display: block;
	padding: 40px 100px;
}
.slideWrapper.textElement p span a {
	color: #CCC;
	text-decoration: underline;
}
.slideWrapper.textElement p span a:hover {
	text-decoration: none;
}
.slideWrapper.textElement div {
  margin-top:10px;
  margin-bottom:10px;
}

.lastElementInner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 320px;
	margin-left: -300px;
	margin-top: -160px;
	text-align: center;
}
.lastElementInner h2 {
	font-family: "Georgia", serif;
	font-size: 3em;
	color: #FFF;
	font-weight: normal;
	text-shadow: 0 -1px #000;
	margin-bottom: 20px;
}
.lastElementInner .buttons {
	height: 96px;
	margin-bottom: 30px;
	padding-left: 192px;
}

.lastElementInner .buttons a, .lastElementInner .buttons a span {
	display: block;
	width: 96px;
	height: 96px;
}
.lastElementInner .buttons a {
	float: left;
	padding-right: 24px;
}
.lastElementInner .buttons a span {
	text-indent: -9999px;
}
.lastElementInner .buttons a.facebook span {
	background-image: url(../../../../../public/templates/slideshow/img/sprites.png);
	background-position: 0 -167px;
}
.lastElementInner .buttons a.twitter span {
	background-image: url(../../../../../public/templates/slideshow/img/twitter_96.png);
}
.lastElementInner .field {
	margin-bottom: 30px;
	height: 30px;
	padding-left: 60px;
}
.lastElementInner .field input {
	display: block;
	height: 30px;
	width: 395px;
	border: 0;
	line-height: 30px;
	font-family: "Monaco", "Courier", monospace;
	font-size: 1.4em;
	float: left;
	padding: 0 0 0 5px;
	outline: none;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	-webkit-border-radius: 10px 0px 0px 10px;
	border-radius: 10px 0px 0px 10px;
}
.lastElementInner .field a {
	display: block;
	float: left;
	text-transform: uppercase;
	font-size: 1.6em;
	width: 80px;
	height: 30px;
	line-height: 30px;
	font-weight: bold;
	background: #CCC;
	color: #333;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-bottomright: 10px;
	-webkit-border-radius: 0px 10px 10px 0px;
	border-radius: 0px 10px 10px 0px;
}
.lastElementInner .field a.hover {
	background: #999;
}
.lastElementInner .field .copied {
	display: none;
	font-size: 1.2em;
	float: left;
	padding-left: 8px;
	line-height: 30px;
	color: #CCC;
} 
.lastElementInner h3 {
	font-family: "Georgia", serif;
	font-size: 2em;
	color: #FFF;
	font-weight: normal;
	text-shadow: 0 -1px #000;
}
.lastElementInner h3 a {
	color: #CCC;
	text-decoration: underline;
}
.lastElementInner h3 a:hover {
	text-decoration: none;
}