/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*our demo styles*/

html,
body {
	background: #29282e;
}

.wrapper {
	width: 90%;
	max-width: 960px;
	margin: 70px auto;
}

.col {
	width: 27%;
	padding: 0 3%;
	float: left;
}

figure img {
	max-width: 100%;
	position: relative;
	z-index: 900;
}

figure a {
	position: relative;
	display: block;
	line-height: 0px;
	text-decoration: none;
}

figure a:hover img {
	opacity: 0.4; 
	filter: alpha(opacity=40); /* IE6-IE8 */
}

figure a:before {
	content: "+";
	display: block;
	font-size: 40px;
	line-height: 1em;
	height: 1em;
	width: 1em;
	text-align: center;
	
	color: #fff;
	font-weight: bold;
	
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 100;
	
	margin: -0.5em 0 0 -0.5em;
}

p {
	color: #fff;
	opacity: 0.8; 
	filter: alpha(opacity=80); /* IE6-IE8 */
	font-size: 18px;
	line-height: 1.5em;
	padding: 60px 40px;
	clear: both;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

a {
	color: #f46e3b;
}

a:hover  {
	text-decoration: none;
}

/*apply the websymbols font to all anchor with class "icon"
and give them a nice transition too*/
.lovely-jubbly figure {
	background: rgba(0,0,0,0.2);
	border-radius: 3px;
	padding: 7px;
}

.lovely-jubbly figcaption {
	padding: 17px 0 10px 0;
	text-align: center;
	font-size: 14px;
	line-height: 1.5em;
	font-family: Georgia, serif;
	font-style: italic;
	
	color: #fff;
	opacity: 0.7; 
	filter: alpha(opacity=70); /* IE6-IE8 */
}

.icon {
	font-family: "WebSymbolsRegular";
}

.icon img {
	-webkit-transition: opacity 0.2s ease-out;  /* Saf3.2+, Chrome */
	-moz-transition: opacity 0.2s ease-out;  /* FF4+ */
	-ms-transition: opacity 0.2s ease-out;  /* IE10 */
	-o-transition: opacity 0.2s ease-out;  /* Opera 10.5+ */
	transition: opacity 0.2s ease-out;
}


a.enlarge:before {
	content: "+";
}

a.like:before {
	content: "N";
}

a.fullscreen:before {
	content: "&";
}

/*smaller icon*/
a.mini:before {
	font-size: 10px;
	text-shadow: 0px 0px 5px rgba(255,255,255,0.7);
}


