@CHARSET "UTF-8";

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,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

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

* {
    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
 	-webkit-box-sizing: border-box;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
img,
audio,
video,
embed {
	border: 0;
	vertical-align: bottom; /* because of the 'mysterious' 3px bottom-margin */
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

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

html {
	width: 100%;
	height: 100%;
}

body, input, textarea, select {
	font-family: 'Roboto',"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}


html {
	background: none repeat scroll 0 0 #F0F0F0;
}

body {
	color: #444;
}

h1 {
	font-size: 30px;
	font-weight: bold;
	color: #535353;
	text-shadow: 0 1px 0 #FFFFFF;
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	margin-bottom: 4px;
}

h2 {
	font-size: 19px;
	font-weight: normal;
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	color: #ccc;
	text-shadow: 0 1px 0 #FAFAFA;
}

h3 {
	font-size: 18px;
	font-weight: normal;
	color: #b3b3b3;
	text-shadow: 0 1px 0 #FAFAFA;
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
}

p {
	line-height: 17px;
}

a {
	color: #3399CC;
}

a:hover {
	text-decoration: underline;
}

img {
    max-width: 100%;
}





table {
	border: 1px solid #999;
}

table thead {
	
}

table thead th {
	border: 1px solid #aaa;
	padding: 5px;
	background: #f0f0f0;
	color: #888;
}

table tbody {
	
}

table tbody td {
	border: 1px solid #aaa;
	padding: 5px;
}




input[type="text"], select, input[type="password"], textarea {
	padding: 5px 8px;
	font-size: 12px;
	border: none;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	
	box-shadow: 0 1px 0 #FFFFFF, 0 1px 1px rgba(0, 0, 0, 0.14) inset;
	border: 1px solid #CCCCCC;
}

input[type="text"]:focus, select:focus, input[type="password"]:focus, textarea:focus {
	border: 1px solid #65C1F6;
	box-shadow: 0 0 7px #99CCEE, 0 1px 1px rgba(0, 0, 0, 0.14) inset;
}

.btn {
	display: inline-block;

	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;

	box-shadow: 1px 1px 0 0 #f4f4f4 inset, 1px 1px 0 0 #FFFFFF;
	
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8f8f8),to(#EDEDED) );
	background: -moz-linear-gradient(100% 100% 90deg, #EDEDED, #f8f8f8);
	background: -o-linear-gradient(top,#f8f8f8,#EDEDED);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8', EndColorStr='#EDEDED');

	border: 1px solid #cecece;
}

.btn:hover {
	text-decoration: none;
}

.btn.icon-only span {
	background-position: 7px center;
	background-repeat: no-repeat;
	width: 30px;
}

.btn.icon span {
	padding-left: 34px;
	background-position: 12px center;
	background-repeat: no-repeat;
}

.btn.icon-heart span {
	background-image: url(http://static.mobypicture.com/layout/mobypicture/icons/icon-heart.png);
}

.btn.icon-zoom span {
	background-image: url(http://static.mobypicture.com/layout/mobypicture/icons/icon-zoom.png);
}

.btn.icon-flag span {
	background-image: url(http://static.mobypicture.com/layout/mobypicture/icons/icon-flag.png);
}

.btn.icon-delete span {
	background-image: url(http://static.mobypicture.com/layout/mobypicture/icons/icon-delete.png);
}

.btn.icon-visibility span {
	background-image: url(http://static.mobypicture.com/layout/mobypicture/icons/icon-views.png);
}

.btn span {
	display: block;
	text-align: center;
	padding: 7px 12px;

	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	
	color: #777;
	text-shadow: 0px 1px 0px #fcfcfc;
	font-weight: normal;
	font-size: 13px;
}

.btn.toggle.toggle-on {
		background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#dddddd),to(#e5e5e5) );
		background: -moz-linear-gradient(100% 100% 90deg, #e5e5e5, #dddddd);
		background: -o-linear-gradient(top,#dddddd,#e5e5e5);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dddddd', EndColorStr='#e5e5e5');
	box-shadow: 1px 1px 0 0 #ddd inset, 1px 1px 0 0 #FFFFFF;
}

.btn:hover {
	-moz-transition-duration: 0.3s;
	-moz-transition-timing:ease-out;

	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f0f0f0),to(#e1e1e1) );
	background: -moz-linear-gradient(100% 100% 90deg, #e1e1e1, #f0f0f0);
	background: -o-linear-gradient(top,#f0f0f0,#e9e9e9);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f0f0f0', EndColorStr='#e1e1e1');
	
	color: #09c;
}

.btn.round {
	display: inline-block;
	text-align: center;

	-moz-border-radius: 26px;
	-webkit-border-radius: 26px;
	border-radius: 26px;
	
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#cecece),to(#969696) );
	background: -moz-linear-gradient(100% 100% 90deg, #969696, #cecece);
	background: -o-linear-gradient(top,#cecece,#969696);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#cecece', EndColorStr='#969696');
	
	color: #666;
}

.btn.round span {
	display: block;
	padding: 7px 18px;
	-moz-border-radius: 24px;
	-webkit-border-radius: 24px;
	border-radius: 24px;
	margin: 1px;
	
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f7f7f7),to(#D5D5D5) );
	background: -moz-linear-gradient(100% 100% 90deg, #D5D5D5, #f7f7f7);
	background: -o-linear-gradient(top,#f7f7f7,#D5D5D5);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f7f7f7', EndColorStr='#D5D5D5');
	
	color: #666;
	text-shadow: 0px 1px 0px #fafafa;

	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) inset;
	webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) inset;
}

.btn-special {
        border: 1px solid  #93ba29;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
        
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#acde15),to(#7fa706) );
        background: -moz-linear-gradient(100% 100% 90deg, #7fa706, #acde15);
        background: -o-linear-gradient(top,#acde15,#7fa706);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#acde15', EndColorStr='#7fa706');
        
        box-shadow: 0px 1px 0 0 rgba(255,255,255,0.4) inset, 1px 1px 0 0 rgba(255,255,255,0.8);
}

.btn-special span {
        
        padding: 6px 20px;

	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 30, 0, 0.5), 0 1px 0 rgba(20, 30, 20, 0.3);
	font-weight: bold;
}

.btn-special:hover span {
	
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b6e724),to(#89b01a) );
	background: -moz-linear-gradient(100% 100% 90deg, #89b01a, #b6e724);
	background: -o-linear-gradient(top,#b6e724,#89b01a);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b6e724', EndColorStr='#89b01a');
	
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) inset, 0 0 8px 0 rgba(153, 204, 0, 0.5);
	webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) inset, 0 0 8px 0 rgba(153, 204, 0, 0.5);
}
/*
.btn-special span:hover {
	
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b6e724),to(#89b01a) );
	background: -moz-linear-gradient(100% 100% 90deg, #89b01a, #b6e724);
	background: -o-linear-gradient(top,#b6e724,#89b01a);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b6e724', EndColorStr='#89b01a');
	
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) inset, 0 0 8px 0 rgba(153, 204, 0, 0.5);
	webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) inset, 0 0 8px 0 rgba(153, 204, 0, 0.5);
}*/

.btn-big {
	/*-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;*/
}

.btn-big span {
	padding: 8px 30px;
	font-size: 14px;
	
	/*-moz-border-radius: 48px;
	-webkit-border-radius: 48px;
	border-radius: 48px;*/
}














#page {
	text-align: center;
}


#page > header {
	background-image: linear-gradient(bottom, #E5E5E5 0%, #F8F8F8 100%);
	background-image: -o-linear-gradient(bottom, #E5E5E5 0%, #F8F8F8 100%);
	background-image: -moz-linear-gradient(bottom, #E5E5E5 0%, #F8F8F8 100%);
	background-image: -webkit-linear-gradient(bottom, #E5E5E5 0%, #F8F8F8 100%);
	background-image: -ms-linear-gradient(bottom, #E5E5E5 0%, #F8F8F8 100%);
	
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, #E5E5E5),
		color-stop(1, #F8F8F8)
	);

	border-bottom: 1px solid #dbdbdb;
}

#page > header nav {
    position: absolute;
    top: 80px;
    left: 0;
}
   
#page > header nav:after {
    content: ' ';
    clear: both;
    display: block;
}
   
    #page > header nav li {
        display: inline-block;
        border-right: 1px solid #e1e1e1;
        margin-bottom: 8px;
        
        /*margin: 0px 0 3px 0;*/
    }
   
    #page > header nav li.extended {
        display: none;
    }
       
    #page > header nav li:last-child {
        border-right: none;
    }
       
    #page > header nav li:nth-last-child(2)  {
        border-right: none;
    }
    
    #page > header nav li a {
        display: inline-block;
        padding: 3px 10px;
        color: #777;
        font-size: 13px;
    	text-shadow: 0 1px 0 #F3F3F3;
    }
    
    #page > header nav li:first-child a {
    	padding-left: 0;
	}
        
    #page > header nav li a:hover,
    #page > header nav li a.special:hover {
    	text-decoration: none;
	}
    
    #page > header nav li a.special {
        padding: 0;
        
        border: 1px solid  #93ba29;
	        
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	        
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#acde15),to(#7fa706) );
        background: -moz-linear-gradient(100% 100% 90deg, #7fa706, #acde15);
        background: -o-linear-gradient(top,#acde15,#7fa706);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#acde15', EndColorStr='#7fa706');
        
        box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset, 1px 1px 0 0 rgba(255, 255, 255, 0.5);
	
		text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
    }

    #page > header nav li a.special span {

        padding: 6px 13px;

        display: block;
        color: white;
        font-weight: bold;
    }
    
    #page > header nav li a:hover {
        color: #09c;
    }


.page.settings-sources ul {
	margin-bottom: 28px;
}

.page.settings-sources h1 {
	margin-bottom: 30px;
}

.page.settings-sources h2 {
	margin-bottom: 20px;
}

.page.settings-sources ul:last-child {
	margin-bottom: 0;
}


.page.settings-sources ul.add-sources:after {
	display: block;
	content: ' ';
	clear: both;
}


	.page.settings-sources ul.add-sources li {
		display: block;
		width: 185px;
		margin-bottom: 6px;
		margin-right: 6px;
		float: left;
	}	

	.page.settings-sources ul.add-sources li:nth-child(4n) {
		margin-right: 0px;
	}	

		.page.settings-sources ul.add-sources li a {
			display: block;
			color: #6f6f6f;
			font-size: 12px;
			font-weight: bold;
			height: 34px;
			line-height: 34px;
			padding-left: 33px;
		}

		.page.settings-sources .add-sources a.instagram {
			background: url(http://layout.mobypicture.com/v2/logo/logo_instagram_18px.png) no-repeat 9px center;
		}
		
	.page.settings-sources .sources li {
		border-top: 1px solid #e6e6e6;
		line-height: 38px;
	}	
	
	.page.settings-sources .sources li:after {
		content: ' ';
		clear: both;
		display: block;
	}	
	
	.page.settings-sources .sources li:last-child {
		border-bottom: 1px solid #e6e6e6;
	}	
	
	
	
		.page.settings-sources .sources li .source {
			display: block;
			padding-left: 36px;
			height: 38px;
			color: #6F6F6F;
			font-weight: bold;
			float: left;
		}	
		
		.page.settings-sources .sources li .source span {
			color: #9F9F9F;
			font-weight: normal;
		}	
		
		.page.settings-sources .sources li .delete-source {
			float: right;
			width: 34px;
			height: 34px;
			line-height: 36px;
			margin: 1px;
			padding: 1px;
			display: block;
			text-align: center;
			font-size: 16px;
			color: #ccc;
		}	
			
		.page.settings-sources .sources li .delete-source:hover {
			border: 1px solid #eee;
			border-radius: 3px;
			height: 36px;
			width: 36px;
			padding: 0px;
			line-height: 36px;
			color: #999;
		}	

		.page.settings-sources .instagram {
			background: url(http://layout.mobypicture.com/v2/logo/logo_instagram_18px.png) no-repeat 9px center;
		}

		

#page > header .header-inlay {
	max-width: 960px;
	margin: 0px auto;
	text-align: left;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	position: relative;
	padding-top: 10px;
	height: 120px;
}

	#page > header:after {
		content: ' ';
		clear: both;
		display: block;
	}
	
	#page > header a#logo {
		background: url('http://static.mobypicture.com/layout/mobypicture/mobypicture-logo-200px.png') no-repeat;
		width: 200px;
		height: 59px;
		display: block;
		text-indent: -9999px;
		overflow: hidden;
		margin-bottom: 15px;
	}
	
	#page > header ul#navigation {
		
		float: left;
	
		background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#dddddd),to(#bbbbbb) );
		background: -moz-linear-gradient(100% 100% 90deg, #bbbbbb, #dddddd);
		background: -o-linear-gradient(top,#dddddd,#bbbbbb);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dddddd', EndColorStr='#bbbbbb');
	
		border-top-left-radius: 4px;
		border-bottom-left-radius: 4px;
		-moz-border-radius-topleft: 4px;
		-moz-border-radius-bottomleft: 4px;
		-webkit-border-bottom-left-radius: 4px;
		-webkit-border-top-left-radius: 4px;

		padding: 1px 0 1px 1px;
	}
	
	#page > header ul#promotion {
	
		float: left;
	
		background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#94bb29),to(#93b430) );
		background: -moz-linear-gradient(100% 100% 90deg, #93b430, #94bb29);
		background: -o-linear-gradient(top,#94bb29,#93b430);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#94bb29', EndColorStr='#93b430');

		padding: 1px 1px 1px 0px;
	
		border-top-right-radius: 4px;
		border-bottom-right-radius: 4px;
		-moz-border-radius-topright: 4px;
		-moz-border-radius-bottomright: 4px;
		-webkit-border-bottom-right-radius: 4px;
		-webkit-border-top-right-radius: 4px;
	}
	
	#page > header ul#navigation li,
	#page > header ul#promotion li {
		display: block;
		float: left;
	
		border-style: solid;
		border-width: 0 1px 0 1px;
		border-color: transparent #cbcbcb transparent #f3f3f3;
	}
	
	#page > header ul#navigation li:first-child {
		border-style: solid;
		border-width: 0 1px 0 0;
		border-color: transparent #cbcbcb transparent transparent;
	}
	
	#page > header ul#navigation li:first-child a 
	{
		border-top-left-radius: 4px;
		border-bottom-left-radius: 4px;
		-moz-border-radius-topleft: 4px;
		-moz-border-radius-bottomleft: 4px;
		-webkit-border-bottom-left-radius: 4px;
		-webkit-border-top-left-radius: 4px;
	}
	
	#page > header ul#navigation li:last-child {
		border-style: solid;
		border-width: 0 1px 0 1px;
		border-color: transparent #cbcbcb transparent #f3f3f3	;
	}
	
	#page > header ul#navigation li a,
	#page > header ul#promotion li a {
		display: inline-block;
	}
	
	
	#page > header ul#navigation li a {
		padding: 6px 12px;
		
		color: #707070;
		text-shadow: 0px 1px 0px #fafafa;

		background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fcfcfc),to(#e1e1e1) );
		background: -moz-linear-gradient(100% 100% 90deg, #e1e1e1, #fcfcfc);
		background: -o-linear-gradient(top,#fcfcfc,#e1e1e1);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fcfcfc', EndColorStr='#e1e1e1');
	}
	
	#page > header ul#promotion li a {
		padding: 6px 12px;
		
		color: white;
		font-weight: bold;
		text-shadow: 0px -1px 0px #6d832b;
		
		background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#acde15),to(#7fa706) );
		background: -moz-linear-gradient(100% 100% 90deg, #7fa706, #acde15);
		background: -o-linear-gradient(top,#acde15,#7fa706);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#acde15', EndColorStr='#7fa706');
	}
	
	
	#page > header ul#promotion li:first-child {
		border-style: solid;
		border-width: 0 0 0 0px;
	}
	
	#page > header ul#promotion li:first-child a {
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
		-moz-border-radius-topright: 5px;
		-moz-border-radius-bottomright: 5px;
		-webkit-border-bottom-right-radius: 5px;
		-webkit-border-top-right-radius: 5px;
	}
	
	#page > header .search {
		position: absolute;
		right: 0;
		top: 80px;
		
		/*float: right;*/
		color: #999;
		border: 1px solid #ccc;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		/*box-shadow: 0 1px 0 #f0f0f0, 0 1px 1px rgba(0, 0, 0, 0.14) inset;*/
		box-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 1px 0px rgba(0, 0, 0, 0.07) inset;
		padding-bottom: 1px;
		background-color: #fff;
	}
		
		#page > header .search input[type="text"] { 
			padding: 6px 8px;
			font-size: 12px;
			border: none;
			border-top-left-radius: 4px;
			border-bottom-left-radius: 4px;
			border-top-right-radius: 0px;
			border-bottom-right-radius: 0px;
			-moz-border-radius-topleft: 4px;
			-moz-border-radius-bottomleft: 4px;
			-moz-border-radius-topright: 0px;
			-moz-border-radius-bottomright: 0px;	
			-webkit-border-bottom-left-radius: 4px;
			-webkit-border-top-left-radius: 4px;
			-webkit-border-bottom-right-radius: 0px;
			-webkit-border-top-right-radius: 0px;	
			width: 160px;
			box-shadow: 0 1px 0 #FFFFFF, 0 1px 1px rgba(0, 0, 0, 0.14) inset;
			-moz-transition: width 0.5s ease-out;
			-webkit-transition: width 0.5s ease-out;
			transition: width 0.5s ease-out;
		}

		#page > header .search input[type="text"]:focus {
			width: 260px;
			-moz-transition: width 0.5s ease-out;
			-webkit-transition: width 0.5s ease-out;
			transition: width 0.5s ease-out;
		}

		#page > header .search input[type="submit"] { 
			border: none;
			background: url("http://static.mobypicture.com/layout/mobypicture/icons/icon_search.png") no-repeat center center transparent;
			border-top-right-radius: 4px;
			border-bottom-right-radius: 4px;
			-moz-border-radius-topright: 4px;
			-moz-border-radius-bottomright: 4px;
			-webkit-border-bottom-right-radius: 4px;
			-webkit-border-top-right-radius: 4px;
			overflow: hidden;
			text-indent: -999px;
			width: 32px;
		}
		
	#page > header .user {
		padding: 6px 12px;
		position: absolute;
		right: 0px;
		top: 0px;
	
		border-bottom-right-radius: 4px;
		border-bottom-left-radius: 4px;
		-moz-border-radius-bottomright: 4px;
		-moz-border-radius-bottomleft: 4px;
		-webkit-border-bottom-right-radius: 4px;
		-webkit-border-top-left-radius: 4px;
	}
		
		#page > header .user.logged-out {
			display: none;

			border: 1px solid #0191cf;
			border-width: 0 1px 1px 1px;
			
			color: #fff;
			text-shadow: 0px -1px 0px #007cb9;
			
			background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#51bcea),to(#1b99cf) );
			background: -moz-linear-gradient(100% 100% 90deg, #1b99cf, #51bcea);
			background: -o-linear-gradient(top,#51bcea,#1b99cf);
			filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#51bcea', EndColorStr='#1b99cf');

			
		}
		
		#page > header .user.logged-in {

			/*line-height: 18px;*/
			box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset, 1px 1px 0 0 rgba(255, 255, 255, 0.8);
			
			border: 1px solid #e3e3e3;
			border-width: 0 1px 1px 1px;
			background-color: none;
						
			/*background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fcfcfc),to(#e1e1e1) );
			background: -moz-linear-gradient(100% 100% 90deg, #e1e1e1, #fcfcfc);
			background: -o-linear-gradient(top,#fcfcfc,#e1e1e1);
			filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fcfcfc', EndColorStr='#e1e1e1');*/
		}
	
			#page > header .user.logged-in .username {
				line-height: 24px;
				margin-right: 7px;
				padding-right: 7px;
				border-right: 1px solid #ddd;
				text-shadow: 0 1px 0 #fafafa;
				display: inline-block;
				font-size: 11px;
			}
			
			#page > header .user.logged-in .username a:hover {
				color: inherit;
			}
					
				#page > header .user.logged-in .username .avatar {
					width: 24px;
					height: 24px;
					padding: 1px;
					margin-right: 5px;
					border: 1px solid #bbb;
								
					-moz-border-radius: 3px;
					-webkit-border-radius: 3px;
					border-radius: 3px;
					
					-moz-box-shadow: 1px 1px 0px 0px #fafafa;
					-webkit-box-shadow: 1px 1px 0px 0px #fafafa;
					box-shadow: 1px 1px 0px 0px #fafafa;
				}
				
			#page > header .user.logged-in ul {
				display: inline-block;
			}
		
				#page > header .user.logged-in ul li {
					display: inline-block;
					margin-right: 10px;
					padding-right: 10px;
					border-right: 1px solid #e0e0e0;
					line-height: 24px;
				}

				#page > header .user.logged-in ul li:last-child {
					display: inline-block;
					margin-right: 0px;
					padding-right: 0px;
					border-right: none;
				}

				#page > header .user.logged-in ul li a {
					color: #777;
					text-shadow: 0 1px 0 #fafafa;
					font-size: 11px;
					padding: 6px;
				}

	#page > header .logged-out span {
		font-weight: bold;
	}

.dialog-container {
		display: none;
}

#page > div#content-container {
	background: none repeat scroll 0 0 #FDFDFD;
	padding: 32px 0 50px 0;
	text-align: left;
}

#page > div#content-container > div#content {
	max-width: 960px;
	margin: 0 auto;
	text-align: left;
	position: relative;
}

	#page > div#content-container #dialog {
		position: absolute;
		text-align: left;
		width: 100%;
		height: 100%;
		margin-top: 10px;
		z-index: 100;
		display: none;
	}
	
	#page > div#content-container .page.dim {
		opacity: 0.15;
	}

	#page > div#content-container #dialog-close {
		position: absolute;
		top: 0;
		right: 0;
	}	
	#page > div#content-container #dialog > .dialog-close {
		display: none;
	}
	
	#page > div#content-container #dialog .dialog {
		background: #f9f9f9;
		color: #666;
		border: 1px solid #ccc;
		box-shadow: 0 0 16px 8px rgba(154, 154, 154, 0.25);
		border-radius: 3px;
		position: relative;
	}
	
	#page > div#content-container #dialog .dialog .content {
		padding: 15px;
	}
	
	#page > div#content-container #dialog .dialog .buttons {
		background: none repeat scroll 0 0 #F0F0F0;
		border-top: 1px solid #E0E0E0;
		box-shadow: 0 3px 6px 0 #DDDDDD inset;
		padding: 10px;
		margin-top: 10px;
		text-align: right;
	}
	
	#page > div#content-container #dialog .dialog.error {
		box-shadow: 0 0 16px 4px rgba(203, 0, 0, 0.2);
		border: 1px solid #ddaaaa;
	}

	#page > div#content-container section {
		/*background-color: white;*/
		margin-top: 10px;
		margin-bottom: 10px;

		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	}
	
	#page > div#content-container nav {
		/*background-color: white;*/
		margin-top: 10px;
		margin-bottom: 10px;

		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	}
	
#page > #footer-container {
	border-top: 1px solid #e0e0e0;
	background: #f0f0f0;
	box-shadow: 0 6px 10px -2px #DDDDDD inset;
}

#page > #footer-container footer {
	max-width: 960px;
	margin: 0 auto;
	text-align: left;
	opacity: 0.5;
}

#page > #footer-container:hover footer {
	opacity: 1.0;
}

	#page > #footer-container footer .sections {
		padding-top: 15px;
		margin-bottom: 35px;
	}
	
	#page > #footer-container footer .sections:after {
		content: ' ';
		clear: both;
		display: block;
	}
	
	
	#page > #footer-container footer section {
		float: left;
		width: 20%;
		text-align: left;
	}

	#page > #footer-container footer:after {
		content: ' ';
		clear: both;
		display: block;
	}
	
	#page > #footer-container footer section h2 {
		color: #606060;
		font-size: 12px;
		font-weight: normal;
		text-shadow: 0px 1px 0px #f7f7f7;
		/*margin-bottom: 12px;*/
	}

		#page > #footer-container footer section h2 a {
			color: #777;
		}

	#page > #footer-container footer section p {
		color: #999;
		font-size: 11px;
	}

	#page > #footer-container footer section ul {

	}
	
	#page > #footer-container footer section ul li {
		margin-bottom: 4px;
	}
	
	#page > #footer-container footer section ul li:last-child {
		margin-bottom: 0px;
	}
	
	#page > #footer-container footer section ul li a {
		font-size: 11px;
		font-weight: bold;
		padding: 4px 0;
		display: inline-block;
	}
	
		
	#page > #footer-container footer .tos {
		padding: 0 0 15px 0;
		color: #777;
		font-size: 11px;
		line-height: 20px;
	}
	
	#page > #footer-container footer .share {
		float: right;
	}

	#page > #footer-container footer .tos .legal {
		float:left; 
		width: 300px;
	}
	
	#page > #footer-container footer .tos .sharing {
		float: right;
	}
				
		#page > #footer-container footer .tos .sharing.google {
			width: 75px; 
		}
							
		#page > #footer-container footer .tos .sharing.facebook {
			width: 95px;
		}
							
		#page > #footer-container footer .tos .sharing.twitter {
			width: 240px;
		}
					
				
	#page > #footer-container footer .tos:after {
		content: ' ';
		clear: both;
		display: block;
	}
	
	
#page > #footer-container section#banner-footer {
	text-indent: -9999px;
	width: 960px;
	height: 103px;
	background: url("http://static.mobypicture.com/layout/mobypicture/footer-animals.png") no-repeat center center transparent;
	margin: 10px auto 5px;
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
	





.dialog.login {
	width: 420px;
	margin: 0 auto;
}

.dialog.login label {
	float: left;
	width: 180px;
	line-height: 29px;
}

.dialog.login input,
.dialog.login select,
.dialog.login textarea {
	float: left;
	width: 240px;
}

.dialog .button-container {
	text-align: center;
}

ul.formfields {
	margin: 15px 0;
}

ul.formfields li {
	margin: 10px 0;
	line-height: 29px;
}

ul.formfields li:after {
	content: ' ';
	display: block;
	clear: both;
}

ul.formfields .input-error {
	padding-left: 180px;
	color: red;
	font-size: 12px;
}

#content .dialog p.nonaggin {
	margin-top: 24px;
	color: #aaa;
	font-size: 11px;
}







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

	#page > header .logo {
		padding-left: 6px;
		padding-right: 6px;
	}
	
	#page > header nav {
		padding: 0 6px;	
	}
	
}

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

	#page > #footer-container footer .tos {
		padding: 0 13px;
	}
	
	#page > #footer-container footer section {
		padding: 0 13px;
	}
	
	#page > #footer-container footer .tos .legal {
		float: none;
		margin-bottom: 8px;
	}
	
	#page > #footer-container footer .share {
		float: left;	
	}
}

@media all and (max-width: 700px) {
	
	#page > #footer-container footer section h2 a:hover {
		color: #3399CC;
	}	
	
	#page > #footer-container footer section h2 {
		text-align: center;
	}
	
	#page > #footer-container footer section p {
		display: none;
	}

}

@media all and (min-width: 700px) {

	#page > #footer-container:hover footer section p {
		color: #777;
		font-size: 11px;
	}
	
	#page > #footer-container:hover footer section h2 a {
		color: #3399CC;
	}	
}


.page.settings-destinations {
		
}
	
	
	.page.settings-destinations .add-destinations.main {
		margin-bottom: 10px;
	}

	.page.settings-destinations .add-destinations.main:after {
		display: block;
		content: ' ';
		clear: both;
	}
	
		.page.settings-destinations .add-destinations.main li {
			display: block;
			width: 185px;
			margin-bottom: 6px;
			margin-right: 6px;
			float: left;
		}	
			
		.page.settings-destinations .add-destinations.main li:nth-child(4n) {
			margin-right: 0px;
		}	
		
			.page.settings-destinations .add-destinations.main li a {
				display: block;
				color: #6f6f6f;
				font-size: 12px;
				font-weight: bold;
				height: 34px;
				line-height: 34px;
				padding-left: 33px;
			}
		
			.page.settings-destinations a.facebook {
				background: url(http://layout.mobypicture.com/v2/logo/logo_facebook_18px.png) no-repeat 9px center;
			}
			
			.page.settings-destinations a.twitter {
				background: url(http://layout.mobypicture.com/v2/logo/logo_twitter_18px.png) no-repeat 9px center;
			}
			
			.page.settings-destinations a.wordpress {
				background: url(http://layout.mobypicture.com/v2/logo/logo_wordpress_18px.png) no-repeat 9px center;
			}
			
			.page.settings-destinations a.tumblr {
				background: url(http://layout.mobypicture.com/v2/logo/logo_tumblr_18px.png) no-repeat 9px center;
			}
			
			.page.settings-destinations a.youtube {
				background: url(http://layout.mobypicture.com/v2/logo/logo_youtube_18px.png) no-repeat 9px center;
			}
			
			.page.settings-destinations a.appnet {
				background: url(http://layout.mobypicture.com/v2/logo/logo_appdotnet_18px.png) no-repeat 9px center;
			}
			
			.page.settings-destinations a.livejournal {
				background: url(http://layout.mobypicture.com/v2/logo/logo_livejournal_18px.png) no-repeat 9px center;
			}
			
			.page.settings-destinations a.studivz {
				background: url(http://layout.mobypicture.com/v2/logo/logo_studivz_18px.png) no-repeat 9px center;
			}
			
			.page.settings-destinations a.blogger {
				background: url(http://layout.mobypicture.com/v2/logo/logo_blogger_18px.png) no-repeat 9px center;
			}
			
			.page.settings-destinations a.flickr {
				background: url(http://layout.mobypicture.com/v2/logo/logo_flickr_18px.png) no-repeat 9px center;
			}
			
	.page.settings-destinations .more-destinations {
		background: url(http://layout.mobypicture.com/v2/line-seperator.png) repeat-x 0 center;
		padding-left: 16px;
	}
			
		.page.settings-destinations .more-destinations a {
			background: #fdfdfd;
			padding: 0 6px;
			font-size: 11px;
			color: #838383;
		}

	.page.settings-destinations .add-destinations.more {
		display: none;
	}
	
			
	.page.settings-destinations h1 {
		margin-bottom: 30px;
	}

	.page.settings-destinations h2 {
		margin-bottom: 24px;
	}
	
	.page.settings-destinations h2.current {
		margin-top: 42px;
	}
	
	.page.settings-destinations .destinations li {
		border-top: 1px solid #e6e6e6;
		line-height: 38px;
	}	
	
	.page.settings-destinations .destinations li:after {
		content: ' ';
		clear: both;
		display: block;
	}	
	
	.page.settings-destinations .destinations li:last-child {
		border-bottom: 1px solid #e6e6e6;
	}	
	
	
	
		.page.settings-destinations .destinations li a.destination {
			display: block;
			padding-left: 36px;
			height: 38px;
			color: #6F6F6F;
			font-weight: bold;
			float: left;
		}	
		
		.page.settings-destinations .destinations li a.destination span {
			color: #9F9F9F;
			font-weight: normal;
		}	
		
		.page.settings-destinations .destinations li a.delete-destination {
			float: right;
			width: 34px;
			height: 34px;
			line-height: 36px;
			margin: 1px;
			padding: 1px;
			display: block;
			text-align: center;
			font-size: 16px;
			color: #ccc;
		}	
			
		.page.settings-destinations .destinations li a.delete-destination:hover {
			border: 1px solid #eee;
			border-radius: 3px;
			height: 36px;
			width: 36px;
			padding: 0px;
			line-height: 36px;
			color: #999;
		}	
		
	.page.settings-destinations nav {
		float: left;
		width: 175px;	
		margin-right: 25px;
		padding-right: 5px;
		border-right: 1px solid #eee;
	}

	.page.settings-destinations section {
		float: left;	
		width: 759px;
	}
	
	.page.settings-destinations:after {
		content: ' ';
		clear: both;
		display: block;
	}
	
	#page > div#content-container #dialog .dialog.settings-destinations-message {
		width: 600px;
		margin: 0 auto;
		text-align: left;
	}
	
	#page > div#content-container #dialog .dialog.add-destination {
		width: 600px;
		margin: 0 auto;
		text-align: left;
	}
	
	#page > div#content-container #dialog .dialog.configure-destination {
		width: 600px;
		margin: 0 auto;
		text-align: left;
	}
	
	
	
	

	.page.api-reference nav {
		float: left;
		width: 245px;	
	}

	.page.api-reference nav ul {
		margin-top: 6px;
	}
	
	.page.api-reference nav li {
		padding: 8px 12px;
	}
	
	.page.api-reference nav li.selected {
		background: #eee;
	}
	
	.page.api-reference nav li.selected a {
		color: #888;
		font-weight: bold;
	}
	
	.page.api-reference section {
		float: left;	
		width: 715px;
		padding-left: 30px;	
		border-left: 1px solid #eee;
	}
	
	.page.api-reference section h2 {
		margin-bottom: 24px;
	}
	
	.page.api-reference section h3 {
		margin-bottom: 14px;
		border-bottom: 1px solid #eee;
		padding-bottom: 6px;
	}
	
	.page.api-reference:after {
		content: ' ';
		clear: both;
		display: block;
	}
	
	.page.api-reference p span.attribute {
		display: inline-block;
		width: 140px;
	}
	
	.page.api-reference ol > li {
		 font-size: 18px;
	}
	
	.page.api-reference ol > li a {
		 color: #0e86b8;
	}
	
	.page.api-reference ol > ul > li {
		font-size: 14px;
		padding-left: 18px; 
	}
	
	
	
	
	
	
#content .dialog {
	
}

#content .dialog h1 {
	font-size: 30px;
	text-shadow: 0 1px 0 #fff;
	/*font-family: Helvetica, Arial !important; */
	font-weight: bold;
	color: #535353;
	margin-bottom: 4px;
}

#content .dialog h2 {
	font-size: 15px;
	text-shadow: 0 1px 0 #fff;
	/*font-family: Helvetica, Arial !important;*/
	font-weight: normal;
	color: #535353;
	margin-bottom: 26px;
}

#content .dialog p {
	margin-bottom: 20px;
	color: #aaa;
	font-size: 12px;
}

#content #continue-button {
	margin: 10px auto 0 auto;
}


#content .dialog .seperator {
	text-align: center;
	font-size: 11px;
	padding-top: 4px;
	padding-bottom: 4px;
	margin: 20px 32px 5px 32px;
	background: url("http://layout.mobypicture.com/v2/line-seperator.png") repeat-x scroll 0 center transparent;
}

#content .dialog .seperator span {
	background-color: #FDFDFD;
	padding: 0 10px;
}

#content .dialog > form {
	padding-top: 10px;
}

#content .dialog .login-auth {
	
}


#content .dialog .login-auth li {
	display: inline-block;
	width: 33.33%;
}

#content .dialog .login-auth li a {
	background: #f9f9f9;
	border: 1px solid #EBEBEB;
	border-radius: 3px 3px 3px 3px;

	box-shadow: 0px 1px 0 0 rgba(255,255,255,0.4) inset, 1px 1px 0 0 rgba(255,255,255,0.8);
}

#content .dialog .login-auth li:hover a {
	border: 1px solid #3399CC;
	background: #3399cc;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#60b7e9),to(#3399cc) );
	background: -moz-linear-gradient(100% 100% 90deg, #3399cc, #60b7e9);
	background: -o-linear-gradient(top,#60b7e9,#3399cc);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#60b7e9', EndColorStr='#3399cc');
}


#content .dialog .login-auth li a {
	display: block;
	color: #777;
	font-weight: bold;
	font-size: 12px;
	margin: 0 1px;
}

#content .dialog .login-auth li a:hover {
	text-decoration: none;
	color: white;
}

#content .dialog .login-auth li a span {
	padding: 8px 8px 8px 32px;
	display: block;
}
#content .dialog .login-auth li a.twitter span {
	background: url(http://layout.mobypicture.com/v2/logo/logo_twitter_18px.png) no-repeat 8px center;
}

#content .dialog .login-auth li a.facebook span {
	background: url(http://layout.mobypicture.com/v2/logo/logo_facebook_18px.png) no-repeat 8px center;
}

#content .dialog .login-auth li a.appnet span {
	background: url(http://layout.mobypicture.com/v2/logo/logo_appnet_18px.png) no-repeat 8px center;
}


#content .termsofuse {
	
}

#content .termsofuse p {
	margin-bottom: 30px;
}

#content .termsofuse h2 {
	font-size: 16px;
	margin-bottom: 6px;
	color: #535353;
}





/* MOBILE */

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

	#page > header .user {
		position: relative;		
		border-radius: 0;
		padding: 0;
	}
	
	#page > header .user.logged-in {
		border-width: 0 0 1px 0;
		line-height: 8px;
	}	
	
	#page > header .user.logged-in .username {
		width: 25%;
		margin-right: 0;
		text-align: center;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		padding: 6px;
	
	}
	
	#page > header .user.logged-in ul {
		width: 75%;
	}
	
	#page > header .user.logged-in ul:after {
		content: ' ';
		clear: both;
		display: block;
	}	
	
	#page > header .user.logged-in ul li {
		width: 33%;
		margin-right: 0;
		padding-right: 0;	
		text-align: center;
		overflow: hidden;
		display: block;
		float: left;
	}
	
	#page > header .user.logged-in ul li a {
		display: block;	
	}
	
	#page > header nav {
		position: relative;
		top: 0;
	}	
	
	#page > header .search {
		position: relative;
		top: 0;
		/*display: none;*/
		margin: 6px 6px 0 6px;
	}	
	
	#page > header .search input[type="submit"] {
		position: absolute;
		right: 0;
		height: 100%;
	}
	
	#page > header .search input[type="text"] {
		width: 100%;
		transition: none;
		border-radius: 4px;	
	}
	
	#page > header .search input[type="text"]:focus {
		width: 100%;
	}
	
	#page > header .header-inlay {
		padding-top: 0;
		height: auto;	
		padding-bottom: 6px;	
	}
	
	#page > header .logo img {
		height: 40px;
	}

	
	#page > div#content-container > div#content  {
		padding: 6px;
	}
	
	#page > div#content-container {
		padding: 10px 0;
	}
	
	.dialog.login {
		width: auto;
	}
	
	.dialog.login label { 
		display: inline-block;
		width: 50%;
	}
	
	.dialog.login input, .dialog.login select, .dialog.login textarea { 
		display: inline-block;
		width: 50%;
	}	
	
	#content .dialog .login-auth li {
		width: 33%;
	}	
	
	#content .dialog h1 {
		font-size: 20px !important;
	}	
	
	#content .dialog h2 {
		font-size: 18px !important;
	}	
}

.sources-instagram-promo { 
  max-width: 959px; max-height: 224px; 
  position: relative; overflow: hidden;
  margin-bottom: 30px;
}

.sources-instagram-promo a {
  display: block; text-indent: -9999px;
  position: absolute; top: 127px; left: 633px;
  width: 155px; height: 14px;
}

@media only screen and (max-width: 960px) {
  .sources-instagram-promo a { top: 0; left: 50%; width: 50%; height: 100%; }
}


@media only screen and (-webkit-min-device-pixel-ratio:1.5),
       only screen and (min-device-pixel-ratio:1.5) {
       	
	#content .dialog .login-auth li a { 
		border: none;
		box-shadow: 0 0 0px 0.5px #EBEBEB;
	}
}