/*=================================*/
/* Fribbble
/* April 2012
/* By: Gilbert Pellegrom
/* http://dev7studios.com
/*=================================*/

/*====================*/
/*=== Reset Styles ===*/
/*====================*/

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
/* HTML5 tags */
header, section, footer,
aside, nav, article, figure {
	display: block;
}

/*===================*/
/*=== Main Styles ===*/
/*===================*/

body {
	font: 14px/22px "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
	background: #fff;
	color: #414141;
}

a, a:visited {
	color: #ea4c89;
	text-decoration: none;
}
a:hover, a:active {
	color: #000;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	margin-bottom: 0.6em;
}
h1 {
	font-size: 2.2em;
}
h2 {
	font-size: 1.9em;
}
h3 {
	font-size: 1.7em;
	margin-top: 2em;
}
h4 {
	font-size: 1.5em;
}
h5 {
	font-size: 1.3em;
}
h6 {
	font-size: 1.2em;
}
p {
	margin-bottom: 1em;
}

ol, ul {
	padding-left: 30px;
	margin-bottom: 1em;
}

b, strong {
	font-weight: bold;
}
i, em {
	font-style: italic;
}
u {
	text-decoration: underline;
}
abbr, acronym {
	cursor: help;
	border-bottom: .1em dotted;
}
td, td img { vertical-align: top; }
sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

code {
	font-family: Courier,"Courier New",Monaco,Tahoma;
	background: #eee;
	color: #000;
	padding: 0px 2px;
}
pre {
	background: #eee;
	padding: 20px;
	margin-bottom: 1em;
}
blockquote {
	font-style: italic;
	margin: 0 0 1em 15px;
	padding-left: 10px;
	border-left: 5px solid #000;
}

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
/* make buttons play nice in IE:
    www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/*========================*/
/*=== Structure Styles ===*/
/*========================*/

#wrapper {
	width: 960px;
	margin: 0 auto;
}

header {
	width: 940px;
	margin: 30px auto 0 auto;
	padding: 30px 0;
	border-bottom: 1px solid #e3e3e8;
	position: relative;
}
header h1 {
	font-weight: bold;
	margin-bottom: 10px;
}
header h1 a,
header h1 a:visited { color: #414141; }
header h1 a:hover { color: #ea4c89; }
#tagline {
	float: left;
	width: 45%;
	margin: 0;
}

.pull-right {
	float: right;
}

header .sortby {
	list-style: none;
	padding: 0;
	margin: 0 0 0 -215px;
	position: absolute;
	bottom: -11px;
	left: 35%;
}
header .sortby li { display: inline; }
header .sortby a {
    background: #fff;
    padding: 0 10px;
    margin: 0 5px;
}
header .sortby a.active { color: #666; }
header .search {
	float: right;
	width: 45%;
}
header .search input {
	font: 14px/22px "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
	width: 100%;
	border: 1px solid #e3e3e8;
	padding: 4px 10px;
	outline: none;
	color: #999;
	margin: 0;
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
header form input:focus {
	border-color: #ea4c89;
	color: #333;
}

#content { margin: 40px 0 100px 0; }
#content.single {
	width: 940px;
	margin: 30px auto;
}

footer {
	width: 940px;
	margin: 0 auto;
	padding: 30px 0;
	border-top: 1px solid #e3e3e8;
	font-size: 12px;
	color: #666;
	display: none;
}
.page-shot footer { display: block; }
footer .divider {
	color: #ccc;
	margin: 0 3px;
}

footer .pull-right a {
	display: inline-block;
	background: url(images/icons.png) no-repeat 0 0;
	width: 21px;
	height: 16px;
	text-indent: -9999px;
	margin-left: 5px;
	opacity: 0.5;
	-moz-opacity: 0.5;
	filter:alpha(opacity=5);
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
footer .pull-right a:hover {
	opacity: 0.8;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
}
footer .pull-right a.facebook { background-position: 0 -30px; }
footer .pull-right a.dribbble { background-position: 0 -59px; }

#shots {
	list-style: none;
	margin: 0;
	padding: 0;
}
#shots li {
	width: 300px;
	margin: 0 10px 30px 10px;
	float: left;
}
#shots li a {
	display: block;
	background: #F8F9F9;
	position: relative;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
#shots li a .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 225px;
	background: url(images/overlay.png) no-repeat;
	cursor: pointer;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-ms-transition: all .15s linear;
	-o-transition: all .15s linear;
	transition: all .15s linear;
}
#shots li a:hover .overlay {
	opacity: 1;
	-moz-opacity: 1;
	filter:alpha(opacity=1);
}
#shots li a .image {
	width: 100%;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
#shots li a .title {
	display: block;
	padding: 5px 15px 0 15px;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-ms-transition: all .15s linear;
	-o-transition: all .15s linear;
	transition: all .15s linear;
}
#shots li a:hover .title { color: #ea4c89; }
#shots li a .author {
	display: block;
	font-size: 13px;
	padding: 5px 15px 15px 15px;
	line-height: 20px;
	color: #666;
}
#shots li a .author img {
	display: block;
	float: left;
	width: 20px;
	height: 20px;
	margin-right: 7px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
#shots .mightydeals {
	background: #F8F9F9;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
#shots .mightydeals #md-large-widget {
	max-width: 250px;
	margin: 0 auto;
}
#shots .mightydeals .title {
	display: block;
	padding: 5px 15px 0 15px;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-ms-transition: all .15s linear;
	-o-transition: all .15s linear;
	transition: all .15s linear;
}
#shots .mightydeals .title a { color: #333; }
#shots .mightydeals .title a:hover { color: #ea4c89; }
#shots .mightydeals .author {
	display: block;
	font-size: 13px;
	padding: 0px 15px 15px 15px;
	line-height: 20px;
	color: #666;
}

#shot-full { margin-bottom: 30px; }
#shot-full .left {
	float: left;
	width: 400px;
}
#shot-full .right {
	float: right;
	width: 500px;
}
#shot-full img {
    max-width: 400px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
#shot-full .author {
	font-weight: bold;
	font-size: 16px;
	line-height: 25px;
}
#shot-full .author img {
	display: block;
	float: left;
	width: 25px;
	height: 25px;
	margin-right: 7px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
#shot-full .view-on-dribbble {
	display: inline-block;
	background: #5CB85C;
	color: #fff;
	padding: 12px 15px;
	border-radius: 3px;
	margin-top: 1em;
}
#shot-full .view-on-dribbble:hover { background: #47A447; }
#shot-full .shot-meta {
	font-size: 12px;
	color: #999;
}
#shot-full .shot-meta .divider {
	color: #ddd;
	margin: 0 3px;
}

.pagination {
	width: 940px;
	margin: 0 auto;
}
.pagination .next { float: right; }

.addthis_floating_style.addthis_counter_style {
    top: 160px !important;
    left: 10px !important;
}

#shots li .bsap {
    width: 300px;
    height: 225px;
    text-align: center;
    line-height: 225px;
    margin-bottom: 6px;
    -webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
#shots li .bsap a {
    background: #eee;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
#shots li .bsap img {
    -webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.scrollup {
	width: 40px;
    height: 40px;
    position: fixed;
    bottom: 40px;
    right: 50px;
    background: #F8F9F9;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    border-radius: 3px;
    display: none;
}
.scrollup:hover {
	background: #EA4C89;
	color: #fff;
}

/*====================*/
/*=== Other Styles ===*/
/*====================*/

/* Clearfix */
.cf:before,
.cf:after {
    content:"";
    display:table;
}
.cf:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
    zoom:1;
}

/* Sharper Thumbnails */
img {
	-ms-interpolation-mode: bicubic;
}

#carbonads-container .carbonad {
	border: 0;
	background: #f5f5f5;
}
#carbonads-container .carbonad-tag { text-align: left; }

/*=====================*/
/*=== Mobile Styles ===*/
/*=====================*/

@media all and (max-width: 1050px) {

	#wrapper,
	footer,
	.page-shot header { width: 640px; }
	header { width: 620px; }
	#tagline,
	header .search,
	#content.single { width: 100%; }

	#tagline { margin-bottom: 20px; }

	#shots {
		width: 640px;
		margin: 0 auto;
	}
	#shot-full .left {
		float: none;
		width: 100%;
		background: #f5f5f5;
		padding: 30px 0;
		margin-bottom: 30px;
		border-radius: 3px;
	}
	#shot-full .right {
		float: none;
		width: 100%;
	}
	#shot-full img {
		display: block;
		margin: 0 auto;
	}
	#shot-full h2 { margin-bottom: 20px; }

	#shot-full .shot-meta,
	#carbonads-container,
	.addthis_toolbox { display: none; }

}

@media all and (max-width: 750px) {

	#wrapper,
	#shots { width: 320px; }
	footer,
	.page-shot header,
	header,
	#content.single { width: 300px; }

	header {
		text-align: center;
		margin-top: 0;
	}
	#shot-full .left {
		background: transparent;
		padding: 0;
	}
	#shot-full img {
		width: 100%;
		height: auto;
	}

}
