/* 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;
	font-family: Arial,Helvetica,Garuda,sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}

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;
}

.sprite{
    background: url(../images/sprites.png) top left no-repeat;
}

.hidden{
    display: none;
}

#head{
    background: url(../images/bg_top.png) top left repeat-x;
    position: fixed;
    height: 40px;
    display: block;
    width: 100%;
    padding: 0;
    z-index: 100;
    overflow: visible;
}

#lang, #head img,#lang span, #head p{
    float:left;
    color: #999;
    
}

#lang{
    color: #686868;
    padding: 20px 20px 0 20px;
    font-size: 14px;
    cursor: pointer;
}

#lang:hover{
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

#lang .sprite.arrow{
    width: 12px;
    height: 4px;
    margin-top: 5px;
    background-color: #f5f5f5;
}

#lang .sprite.arrow.up{
    background-position: -4px -111px;
}

#lang .sprite.arrow.down{
    background-position: -4px -105px;
}

#langmenu{
    display:none;
    position: fixed;
    top: 39px;
    left: 0;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px 20px 10px 20px;
    font-size: 12px;
}

#langmenu li{
    margin-bottom: 10px;
}

#langmenu li a{
    color: #666;
    text-decoration: none;
}

#langmenu li a:hover{
    text-decoration: underline;
}

#head p{
    font-size: 12px;
    padding: 21px 0 0 20px
}

#head #mainmenu{
    background: url(../images/bg_top.png) bottom left repeat-x;
    display:block;
    position:absolute;
    right:0;
    margin-top: 5px;
    margin-left:71px;
    height:35px;
    overflow:hidden;
}

#head #mainmenu li{
    float:left;
    background: url(../images/seperator_top.png) right top no-repeat;
    padding: 8px 20px;
    font-size: 14px;
}

#head #mainmenu li a{
    text-decoration: none;
    color: #666;
    text-transform: uppercase;
}

#head #mainmenu li a span{
    margin-top: 3px;
    float:left;
}

#head #mainmenu li a span.sprite{
    width: 18px;
    height: 18px;
    margin-top: 0;
    margin-right: 5px;
    background-color: #f5f5f5;
}

#head #mainmenu li.active{
    background: white;
    border: 1px solid #ddd;
    border-bottom: none;
}

#head #mainmenu li.active a span{
    background-color: white;
}

#head #mainmenu li.active a span, #head #mainmenu li a:hover span{
    
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

#dashboardWrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.8);
	overflow:auto;
}

#dashboard{
    position: relative;
    top: 100px;
    /*left: 50%;*/
    background: rgb(153, 153, 153);
    background: rgba(153, 153, 153, 0.5);
    border: none;
    padding: 5px;
    -moz-border-radius: 20px; 
    -webkit-border-radius: 20px; 
    border-radius: 20px; 
    max-width:1030px;
    width: 95%;
    margin:0 auto;
}

#dashboard .wrapper{
    display: block;
    -moz-border-radius: 15px; 
    -webkit-border-radius: 15px; 
    border-radius: 15px;
    background: white;
    padding: 20px;
    position: relative;
}

#dashboard .wrapper h1{
    
    font-weight: 800;
    font-size: 24px;
    color: #ddd;
    border-bottom: 1px solid #ddd;
    padding: 0 0 20px 0;
    margin: 0 0 0 0;
    color: #666;
}

#dashboard .wrapper .closeBtn{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 15px;
    color: #999;
    cursor: pointer;
}

#dashboard .wrapper .closeBtn:hover{
    text-decoration: underline;
}

#dashboard ul{
  overflow: hidden;
  /*width: 950px;*/
}

#dashboard p{
	margin-top: 10px;
	font-size: 12px;
	line-height: 15px;
	color: #666;
}

#dashboard p strong{
	font-weight: bold;
}

#dashboard p em{
	font-style: italic;
}

#dashboard p a{
	color: #999;
}

#dashboard p a:hover{
	color: #666;
}

#head #mainmenu li#dashboard_menu .sprite{  background-position: -2px -2px; }
#head #mainmenu li#media_menu .sprite{	    background-position: -2px -23px;}
#head #mainmenu li#profile_menu .sprite{    background-position: -2px -44px;}
#head #mainmenu li#lightbox_menu .sprite{   background-position: -2px -65px;}
#head #mainmenu li#logout_menu .sprite{	    background-position: -2px -86px;}
#head #mainmenu li#new_media .sprite{	    background-position: -43px -23px;}
#head #mainmenu li#dropzone .sprite{	    background-position: -43px -43px;}
#head #mainmenu li#logout_menu span{	    margin: 0;}
#head #mainmenu li#login_menu .sprite{	    background-position:-63px -21px;}
#head #mainmenu li#login_menu span{	    margin: 0;}

#neck{
    display:block;
    padding: 60px 40px 0px 40px;
    overflow: hidden;
}

#neck hr{
    float:left;
    width: 100%;
    border: none;
    height: 1px;
    background: #ddd;
    margin: 8px 0 0 0;
}

#neck #logo{
    float:left;
    margin-right: 40px;
}

#neck #search{
    padding-top: 20px;
    overflow: hidden;
    /*overflow: auto;*/
    display:block;
}


#searchform{
    float:left;
    clear:right;
}

#searchform input[type=text]{
    float:left;
    /*background-position: -21px -84px;*/
    background:#f5f5f5;
    border:1px solid #ccc;
    border-right:0;
    padding:0;
    text-indent:10px;
    font-size: 18px;
    line-height: 40px;
    height: 40px;
    width: 800px;
    max-width:80%;
    color: #666;
    margin: 0;
    box-shadow: inset 1px 1px 4px rgba(0,0,0,.15);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=submit]{
    margin: 0;
    float:left;
    font-size: 18px;
    line-height: 38px;
    color: white;
    padding: 0 10px;
    border: 1px solid #78797a;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    
    background: #78797a;
    background: -moz-linear-gradient(top, #939598, #78797a);
    background: -webkit-gradient(linear,
                left top, left bottom, from(#939598), to(#78797a));
    background-image: -o-linear-gradient(top, #939598, #78797a);
    cursor: pointer;
    height:40px;
}

[type=submit]:hover{
    border: 1px solid #333333;
    background: #333333;
    background: -moz-linear-gradient(top, #000000, #333333);
    background: -webkit-gradient(linear,
                left top, left bottom, from(#000000), to(#333333));
    background-image: -o-linear-gradient(top, #000000, #333333);
}

#search #sizes{
    overflow: hidden;
    display: block;
    width: 58px;
    height: 21px;
    background: none;
    float:right;
    margin-top: 20px;
}

#sizes span{
    float:left;
    margin-right: 5px;
    -moz-border-radius: 5px; /* Firefox */
    -webkit-border-radius: 5px; /* Safari, Chrome */
    border-radius: 5px; /* CSS3 */
    background: #f8f8f8;
    border: 1px solid #ddd;
    cursor: pointer;
}

#sizes span:hover{
    border: 1px solid #666;
}

#sizes span.active{
    background: #ddd;
}

#sizes .small{
    float:left;
    width: 9px;
    height: 9px;
    margin-top: 10px;
}
#sizes .medium{
    float:left;
    width: 14px;
    height: 14px;
    margin-top: 5px;
}
#sizes .large{
    float:left;
    width: 19px;
    height: 19px;
    margin-right: 0;
}

#search p.filter{
    float:left;
    font-size: 12px;
    color: #666;
    margin: 10px 20px 0 0;
}

#sort{
    clear:left;
}

#breadcrumb{
    padding-top: 6px;
}

#breadcrumb span, #breadcrumb a{
    float:left;
    margin-right: 5px;
}

#breadcrumb a{
    color: #000000;
}

#breadcrumb span.sprite{
    width: 4px;
    height: 8px;
    background-position: 0 -106px;
    margin-top: 3px;
}

/* DASHBOARD */

#categories_dash{
    display:block;
    text-align: center;
    font-size: 0px;
    padding: 15px 0 65px 40px;
}

#categories_dash li{
    display: inline-block;
    margin: 50px 40px 0 0;
    width: 150px;
    vertical-align: bottom;
    
}

#categories_dash li a{
    float:left;
    width: 100%;
    border:none;
    font-size: 14px;
    text-decoration: none;
    color: #000000;
}

#categories_dash li a:hover{
    text-decoration: underline;
}

#categories_dash li a span{
    float:left;
    width: 150px;
    
}

#categories_dash li a span.img{
    height: 150px;
    background: url(../images/default.gif) center center no-repeat;
}

#categories_dash li a span.img.fav{
    background: url(../images/fav.gif) center center no-repeat;
}

#categories_dash li a span.img.video{
    background: url(../images/video.gif) center center no-repeat;
}

#categories_dash li a span.img.folder{
    background: url(../images/folder.gif) center center no-repeat;
}

#categories_dash li a span.cat_name{
    margin-top: 8px;
}

/* BODY */

#body{
    padding: 20px 0 42px 40px;
    overflow: hidden;
}

#body.margin{
    padding-bottom: 258px;
}

#sidemenuWrapper{
    float:left;
    width: 250px;
    margin-right: 40px;
}

#sidemenuWrapper .toggle{
    display:none;
}

#sidemenu{
    width: 100%;
    text-transform: uppercase;
}

#sidemenu>li{
    float:left;
    width: 100%;
}

#sidemenu>li>a{
    margin: 0 0 2px 0;
    float:left;
    font-size: 14px;
    width: 228px;
    text-decoration: none;
    color: white;
    padding: 7px 10px;
    border: 1px solid #78797a;
    -moz-border-radius: 5px; /* Firefox */
    -webkit-border-radius: 5px; /* Safari, Chrome */
    border-radius: 5px; /* CSS3 */
    
    background: #78797a;
    background: -moz-linear-gradient(top, #939598, #78797a);
    background: -webkit-gradient(linear,
                left top, left bottom, from(#939598), to(#78797a));
    background-image: -o-linear-gradient(top, #939598, #78797a);
}

#sidemenu>li.active>a, #sidemenu>li>a:hover{
    border: 1px solid #333333;
    background: #333333;
    background: -moz-linear-gradient(top, #000000, #333333);
    background: -webkit-gradient(linear,
                left top, left bottom, from(#000000), to(#333333));
    background-image: -o-linear-gradient(top, #000000, #333333);
}

#sidemenu li>ul{
    display: none;
}

#sidemenu li.active>ul{
    display: block;
}

#sidemenu>li>ul{
    border: 1px solid #ddd;
    float:left;
    padding: 0 10px 20px 10px;
    width: 228px;
    margin: 0 0 10px 0;
    -moz-border-radius: 5px; /* Firefox */
    -webkit-border-radius: 5px; /* Safari, Chrome */
    border-radius: 5px; /* CSS3 */
    background: #f8f8f8;
    background: -moz-linear-gradient(left, #eeeeee, #f8f8f8);
    background: -webkit-gradient(linear,
                left top, right top, from(#eeeeee), to(#f8f8f8));
    background-image: -o-linear-gradient(left, #eeeeee, #f8f8f8);
}

#sidemenu>li>ul li{
    font-size: 12px;
    float:left;
    width: 100%;
}

#sidemenu>li>ul li a{
    border-bottom: 1px dotted #969696;
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #666;
}

#sidemenu>li>ul li.active>a{
    color: #000000;
}

#sidemenu>li>ul li a span.sprite{
    float:left;
    width: 4px;
    height: 8px;
    margin: 2px 6px 0 6px;
    background-position: 0 -106px;
}

#sidemenu>li>ul li a:hover{
    text-decoration: underline;
}

#sidemenu>li>ul li li a{    padding: 10px 0 10px 15px;}
#sidemenu>li>ul li li li a{    padding: 10px 0 10px 30px;}
#sidemenu>li>ul li li li li a{    padding: 10px 0 10px 45px;}
#sidemenu>li>ul li li li li li a{    padding: 10px 0 10px 60px;}
#sidemenu>li>ul li li li li li li a{    padding: 10px 0 10px 75px;}
#sidemenu>li>ul li li li li li li li a{    padding: 10px 0 10px 90px;}
#sidemenu>li>ul li li li li li li li li a{    padding: 10px 0 10px 105px;}
#sidemenu>li>ul li li li li li li li li li a{    padding: 10px 0 10px 120px;}

/* CONTENT */

#content{
    display: block;
    overflow:auto;
}

.item{
    float:left;
    padding: 10px;
    height: 165px;
    width: 115px;
    display: none;
	position:relative;
}

.item.small{
    width:70px;
    height: 120px;
}

.item.medium{
    width:160px;
    height: 210px;
}

.item.large{
    width:205px;
    height: 255px;
}

.item .imageWrapper{
    width: 100%;
    height: 115px;
    text-align: center;
    float:left;
}

.item.small .imageWrapper{
    height: 70px;
}

.item.medium .imageWrapper{
    height: 160px;
}

.item.large .imageWrapper{
    height: 205px;
}

.item:hover{
    padding: 9px;
    border: 1px solid #eee;
    background: #f8f8f8;
}

#lightbox .item:hover{
    background: #fff;
}

.item .imageWrapper a{
    display:block;
    width: 100%;
    height: 100%;
}

.item .imageWrapper img{
    border: 1px solid #dedede;
    max-height: 100%;
    max-width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #78797a;
    background: -moz-linear-gradient(top, #939598, #78797a);
    background: -webkit-gradient(linear,
                left top, left bottom, from(#939598), to(#78797a));
    background-image: -o-linear-gradient(top, #939598, #78797a);
}


.item p{
    font-size: 10px;
    color: #999;
    float:left;
    width: 100%;
    padding: 0;
    margin: 5px 0 0 0;
    text-align: center;
    height: 20px;
    text-overflow: ellipsis; 
    -o-text-overflow: ellipsis; 
    -icab-text-overflow: ellipsis; 
    -khtml-text-overflow: ellipsis; 
    -moz-text-overflow: ellipsis; 
    -webkit-text-overflow: ellipsis; 
    white-space: nowrap;
    overflow:hidden;
}

.item:hover p{
    color: #666;
}

.item div.actionWrapper{
    float:left;
    width: 100%;
    text-align: center;
    margin-top: 4px;
    font-size: 0px;
}


.item div.actionWrapper .sprite{
    cursor: pointer;
    width: 21px;
    height: 21px;
    float:left;
}

.item div.actionWrapper .sprite:hover{
    background-color: #f8f8f8;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

.item div.actionCenterWrapper{
	display: inline-block;
}

.item div.actionCenterWrapper>div{
    display:inline-block;
    width: 21px;
    height: 21px;
	float:left;
}

.item div.actionWrapper .fileextension{
	width: 41px;
	border-left: 1px solid #ddd;
	line-height: 21px;
	color: #999;
	margin: 0;
	padding: 0;
	font-size: 12px;
	text-transform: uppercase;
}

.item div.actionWrapper div.lightboxWrapper.active{
    -moz-border-radius: 10px; /* Firefox */
    -webkit-border-radius: 10px; /* Safari, Chrome */
    border-radius: 10px; /* CSS3 */
    background: #000000;
}


.pp_details span.lightboxWrapper.active{
    float:left;
    width: 21px;
    height: 21px;
    -moz-border-radius: 10px!important;
    -webkit-border-radius: 10px!important;
    border-radius: 10px!important;
    background: #000000!important;
}
.item div.actionWrapper div span.addToLightbox{
    background-position: 0 -63px;
}

.item div.actionWrapper div.lightboxWrapper.active span.addToLightbox{
    background-position: -21px -63px;
}

.item div.actionWrapper div.lightboxWrapper.active span.addToLightbox:hover{
    background-color: transparent;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}
.item div.actionWrapper .downloadWrapper{
    margin-left: 2px;
    padding-left: 4px;
    border-left: 1px solid #ddd;
}

.item div.actionWrapper .emailWrapper{
    margin-left: 2px;
    padding-left: 4px;
    border-left: 1px solid #ddd;
}

a.sprite.email {
    background-position: 0px -41px;
    text-indent: -999em;
}

.item div.actionWrapper .download{
    background-position: -21px 0;
}

.item div.actionWrapper span.delete{
    background-position: -21px -21px;
}

.loadMore{
    float:left;
    width: 100%;
    background: white;
    text-align: center;
    margin-top: 20px;
}

.loadMore p{
    color: white;
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #78797a;
    -moz-border-radius: 5px; /* Firefox */
    -webkit-border-radius: 5px; /* Safari, Chrome */
    border-radius: 5px; /* CSS3 */
    
    background: #78797a;
    background: -moz-linear-gradient(top, #939598, #78797a);
    background: -webkit-gradient(linear,
                left top, left bottom, from(#939598), to(#78797a));
    background-image: -o-linear-gradient(top, #939598, #78797a);
}

.loadMore p:hover{
    border: 1px solid #333333;
    background: #333333;
    background: -moz-linear-gradient(top, #000000, #333333);
    background: -webkit-gradient(linear,
                left top, left bottom, from(#000000), to(#333333));
    background-image: -o-linear-gradient(top, #000000, #333333);
}

/* LIGHTBOX */

#lightbox{
    position: fixed;
    /*height: 265px;*/
    bottom: 0px;
    padding: 0;
    display: block;
    width: 100%;
}

#lightbox_btn{
    border: 1px solid #ddd;
    border-bottom: none;
    background: #f5f5f5;
    float: right;
    margin-right: 40px;
    padding: 10px 15px;
    cursor: pointer;
}

#lightbox_btn span{
    float:left;
    width: 21px;
    height: 21px;
}

#lightbox_btn:hover span{
    background-color:#f5f5f5;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

#lightbox_btn span.lightbox{
    background-position: 0 -63px;
}
#lightbox_btn span.arrow{
    width: 10px;
    height: 4px;
    margin-top: 10px;
}

#lightbox_btn span.arrow.down{
    background-position: -4px -105px;
}

#lightbox_btn span.arrow.up{
    background-position: -4px -111px;
}

#lightboxContainer{
    display:none;
    background: #f5f5f5;
    width: 100%;
    padding: 15px 0;
    /*height: 224px;*/
    margin-top: 41px;
    border-top: 1px solid #ddd;
}

#lightboxActions{
    text-align: right;
    padding: 0 40px 0 0;
}

#lightboxActions div, #lightboxActions a{
    display: inline-block;
    font-size: 14px;
    color: #666;
    line-height: 21px;
    cursor: pointer;
    text-decoration: none;
}

#lightboxActions div:hover, #lightboxActions a:hover{
    background-color:#f5f5f5;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

#lightboxActions .deleteAllFromLightbox{
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #ddd;
}

#lightboxActions div .sprite, #lightboxActions a .sprite{
    width: 21px;
    height: 21px;
    float:left;
    margin-right: 5px;
}


#lightboxActions .first {
    border-right: 1px solid #DDDDDD;
    padding-right: 10px;
}

#lightboxActions div span.delete{
    background-position: -21px -21px;
}

#lightboxActions a .download{
    background-position: -21px 0px;
}

#lightboxContent{
    display: inline-block;
    padding: 0 0 0 40px;
    margin: 20px 40px 0 0;
    height: 140px;
    overflow: auto;
}

/* LOGIN SCREEN */

.center{
    width: 410px;
    margin: 40px auto 0 auto;
}

p.signature{
    font-size: 12px;
    margin-top: 10px;
    text-align: right;
    padding: 0 25px 0 0;
	margin-bottom:30px;
}

p.signature a{
    color: #999;
}

p.signature a:hover{
    color: #666;
}

#sidemenuWrapper p.signature{
    font-size: 11px;
    padding: 10px 0 0 0;
    float:left;
    margin: 0;
}


.introcontainer{
    width: 400px;
    background: rgb(153, 153, 153);
    background: rgba(153, 153, 153, 0.5);
    border: none;
    padding: 5px;
    -moz-border-radius: 0 0 20px 20px ; 
    -webkit-border-radius: 0 0 20px 20px ; 
    border-radius: 0 0 20px 20px ; 
    font-size: 12px;
}

.introcontainer.sponsored{
	-moz-border-radius: 0 0 20px 20px; 
    -webkit-border-radius: 0 0 20px 20px; 
    border-radius: 0 0 20px 20px; 
}

.introcontainer .body a{
    color: #999;
}
.introcontainer .body a:hover{
    color: #666;
}
.introcontainer .body{
    background: white;
    padding: 20px;
    -moz-border-radius: 15px; 
    -webkit-border-radius: 15px; 
    border-radius: 15px;
    text-align: center;
	overflow:auto;
}
.introcontainer .form{
	overflow:auto;
}
.introcontainer .body h1, .introcontainer .body p, .introcontainer .body div{
    text-align: left;
    color: #666;
	line-height:1.5em;
}
.introcontainer .body h2{
    text-align: left;
    color: #666;
	line-height:1.5em;
	font-size:18px;
	font-weight:bold;
}
.introcontainer .body h1{
    font-weight: 800;
    font-size: 24px;
    color: #ddd;
    border-bottom: 1px solid #ddd;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
}

.introcontainer .body .row{
    margin-top: 10px;
    display:block;
    width: 100%;
}

p.note .required, .required .required{
    color: #ff0000;
}
.introcontainer p.registerblock{


}

.introcontainer label{
    font-weight: 800;
    float:left;
    width: 360px;
    margin-bottom: 5px;
}

.introcontainer .row.rememberMe label,
.introcontainer #UserDecospan_usercategories label{
    width: auto;
    display: inline-block;
    float:none;
}



.introcontainer input[type=checkbox]{
    display: inline-block;
}

.introcontainer input[type=text], .introcontainer input[type=password]{
    box-sizing: border-box;
    float:left;
    border: 1px solid #ddd;
    padding: 3px 5px;
    -moz-border-radius: 5px; 
    -webkit-border-radius: 5px; 
    border-radius: 5px;
    width: 360px;
    margin-bottom: 10px;
}

.introcontainer .row.buttons{
    text-align: right;
}

.introcontainer #loginBtn, .introcontainer #guestBtn{
    float: none;
}

.introcontainer .errorMessage{
    color: #ff0000!important;
}

/* PROFILE */
.half{
    width: 50%;
    float:left;
}
.half .style{
    padding-right: 40px;
}

.half .container{
    padding: 2px;
    border: 1px solid #ddd;
}

.half h1{
    background: #f5f5f5;
    padding: 10px;
    font-size: 12px;
    color: #666;
    font-weight: bold;
}

.half form{
    display: block;
    padding: 10px 0 10px 10px;
    font-size: 11px;
    color: #999;
    overflow: auto;
}


.half form input[type=text], .half form input[type=password], .half form select{
    border: 1px solid #ddd;
    padding: 3px 5px;
    -moz-border-radius: 5px; 
    -webkit-border-radius: 5px; 
    border-radius: 5px;
    float:left;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 25px;
    display: block;
    float:none;
    width: 100%;
    
}

.half form .errorSummaryContainer{
    padding: 0 10px 0 0;
}

.half form .errorSummary{
    border: 2px solid #C00;
    padding: 7px 7px 12px 7px;
    margin: 0 0 20px 0;
    background: #FEE;
    font-size: 11px;
    color: #f00;
    margin-top: 10px;
}

.half form .row{
    float:left;
    width: 50%;
    margin-top: 10px;
}

.half form .row label{
    width: 30%;
    float:left;
    line-height: 23px;
    margin-top: 2px;
}

.half form .row .errorMessage{
    color: #ff0000;
    width: 100%;
}

.half form .row .input{
    width: 70%;
    float:left;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px 0 0;
}

.half form .row.buttons{
    text-align: right;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px 0 0;
}

.half form input[type=submit]{
    float:none;
}
.half.dropzone{width: 800px;}
.half.dropzone .wrapper{padding:15px;display:block;font-size:0.8em;line-height:1.4em;overflow:auto;}
.half.dropzone .wrapper h2{font-weight:bold;margin:1em 0;font-size:1.2em;}
.half.dropzone form{padding:0;overflow:hidden;}
.half.dropzone table{display:block;float:left;margin:0;padding:0;width:100%;margin:2em 0;}
.half.dropzone table td{padding:0.2em 0.3em;font-size:0.8em;}
.row{display:block;margin:0;padding:0;width:100%;float:left;overflow:auto;}
#hiddenTool{
    display: none;
}


#neck #lightboxActions{
    padding: 10px 0 0 0;
}

#neck #lightboxActions div:hover, #neck #lightboxActions a:hover{
    background: #fff!important;
}
.downloadFunctionsWrapper{
    display:none;
    position: absolute;
    bottom:10px;
    right: 20px;
    background: rgb(153, 153, 153);
    background: rgba(153, 153, 153, 0.5);
    border: none;
    padding: 5px;
    -moz-border-radius: 5px; 
    -webkit-border-radius: 5px; 
    border-radius: 5px; 
    z-index: 100000;
}

.downloadFunctions{
    -moz-border-radius: 0px; 
    -webkit-border-radius: 0px; 
    border-radius: 0px; 
    background: white;
    /*padding: 10px;*/
    float:left;
    overflow: none;
    //border: 
}

.downloadFunctions li{
    display:block;
}

.downloadFunctions li a{
    display: block;
    font-size: 12px;
    padding: 4px 5px;
    color:  rgb(153, 153, 153);
    text-decoration: none;
    z-index: 9999;
}

a.detailbtn{
	font-size:10pt;
	display:block;
	float:left;
	margin-left:10px;
	border-left:solid 1px #CCC;
	padding:3px 10px;
}
a.detailbtn:hover{text-decoration:underline;cursor:pointer;}

.downloadFunctions li a:hover{
    background: rgb(153, 153, 153);
    color: white;
}

#lightboxContent .item .downloadFunctionsWrapper{
    bottom: 25px;
}
#filedetail{
	overflow-y:scroll;
}
#filedetail h1{
	font-weight:bold;
	color:#000000;
	margin:0.6em 0;
}
#filedetail .keywords{
	overflow:auto;
	margin-top:1em;
}
#filedetail .keywords li{
	display:block;
	float:left;
	line-height:1.2em;
}
#filedetail .keywords li a{
	display:block;
	float:left;
	margin:0 5px 0 0;
	padding:0 5px 0 0;
	border-right:solid 1px  #CCC;	
	color:#000000;
	text-decoration:none;
	line-height:1.2em;
	font-size:0.8em;
}
#filedetail .copyright{overflow:auto;}
#filedetail .keywords li a:hover{text-decoration:underline;}
#filedetail .copyright p{font-size:0.8em;line-height:1.5em;margin:0.5em 0;}
/*#backstretch{-webkit-filter: blur(3px);}*/

#login_langmenu{overflow:hidden;display:block;padding:5px 5px 0 5px;text-align:center; background:rgba(153, 153, 153, 0.5);
    -moz-border-radius: 20px 20px 0 0; 
    -webkit-border-radius: 20px 20px 0 0; 
    border-radius: 20px 20px 0 0;
}
#login_langmenu .body{
	background:#FFF;
	overflow:auto;
	padding:10px;
    -moz-border-radius: 15px; 
    -webkit-border-radius: 15px; 
    border-radius: 15px;	
}
#login_langmenu a{color:#333333;display:inline-block;margin:0 2px; padding: 0 2px;text-align:normal;text-decoration:none;font-size:12px;}
#login_langmenu a:hover, #login_langmenu a.active{color:#000000;text-decoration:underline}
#login_langmenu a.active{font-weight:bold;}

#termsandconditions{
  font: inherit;
  vertical-align: baseline;
  font-family: Arial,Helvetica,Garuda,sans-serif;
  display:block; 
}

#termsandconditions p{
font-size: 14px;
color: #666;
line-height: 1.2em;
padding: 10px;
}

#termsandconditions ol{
  font-size: 14px;
  color: #666;
  line-height: 1.2em;
  padding: 10px;
  margin-left:25px;
}
#termsandconditions ol li{
  padding-left:10px;
  padding-bottom:10px;
  list-style-type:decimal;
}

    
#minilogin{
    position: fixed;
    right: 5px;
    top: 55px;
    padding: 5px;
    background: rgba(153, 153, 153, 0.5);
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    display: none;
}

#minilogin .wrapper{
    display: block;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    background: white;
    padding: 20px;
    width: 250px;
    /*height: 200px;*/
    float:left;
}


#minilogin .wrapper input[type=text],
#minilogin .wrapper input[type=password]{
   box-sizing: border-box;
   float: left;
   border: 1px solid #ddd;
   padding: 3px 5px;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
   border-radius: 5px;
   width: 250px;
   margin-bottom: 10px;
}

#minilogin .wrapper label{
    width: 100%;
    float:left;
    font-weight: 800;
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

#minilogin .wrapper .row.rememberMe label{
    width: auto;
    display: inline-block;
    float:none;
}

#minilogin .wrapper .row.rememberMe input[type=checkbox]{
    display: inline-block;
}

#minilogin .wrapper p{
    display: inline-block;
    padding: 16px 0 0 0;
    display: block;
    width: 100%;
    color: #666;
}

#minilogin .wrapper p a{
    color: #999;
}
#minilogin .wrapper p a:hover{
    color: #666;
}

.information-balta {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    margin-bottom: 10px;
    padding: 10px;
}

.information-balta h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0 10px;
    text-align: center;
}

.information-balta p {
    line-height: 14px;
    margin: 5px 0;
}

.information-balta a,
.information-balta a:hover,
.information-balta a:active,
.information-balta a:visited {
    color: #023671;
}

.baltaregister span.required {
    display: none;
}

.baltaregister .errorMessage {
    clear: both;
}

.half.dropzone table.dropzone_list{
    display: table;
}
.half.dropzone table.dropzone_list thead{
    font-weight: bold;
    font-size: 1.4em;
    background: #f5f5f5;
}

.half.dropzone table.dropzone_list thead td{
    padding: 5px 10px;
}
.half.dropzone table.dropzone_list tbody{
    font-size: 1.2em;
}
.half.dropzone table.dropzone_list td{
    vertical-align: top;
}
.half.dropzone table.dropzone_list tbody td{
    padding: 5px 10px;
}
.half.dropzone table.dropzone_list td label{
    font-weight: bold;
}
.half.dropzone table.dropzone_list td textarea{
    width: 100%;
    border: 1px solid #ddd;
    padding: 3px 5px;
    box-sizing: border-box;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: 100px;
}

.half.dropzone table.dropzone_list td p.required label{
    color: red;
}

.half.dropzone table.dropzone_list td p.required input,
.half.dropzone table.dropzone_list td p.required textarea{
    border-color: red;
}

.half.dropzone table.dropzone_list td img{
    width: 100%;
}
.half.dropzone table.dropzone_list td a{
    cursor: pointer;
}

.half.dropzone table.dropzone_list td a img{
    width: auto;
}

.half.dropzone .general,
.half.dropzone .general label,
.half.dropzone .general textarea,
.half.dropzone .general input{
    width: 100%;
    display: block;
}

.half.dropzone .general label{
    color: #999;
    font-size: 100%;
    font-weight: bold;
}

.half.dropzone .general textarea,
.half.dropzone .general input{
    border: 1px solid #ddd;
    padding: 3px 5px;
    box-sizing: border-box;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: 100px;
    margin-bottom: 10px;
}

.half.dropzone .general input{
    height: auto;
}

.half.dropzone .general label em,
.half.dropzone table.dropzone_list td label em{
    font-style: italic;
    font-weight: normal;
}


/* ERROR */

div.error{
    background: #fee;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
    margin: 40px;
    color: #b12;
}
div.row.error{
    margin-left:0;
    margin-right:0;
    padding-left:0;
    padding-right:0;
}
div.error h2{
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 10px 0;
}

div.error a{
    color: #b12;
    font-weight: bold;
}

div.error ul{
    padding: 10px;
    margin: 10px;
    list-style: disc;
}

div.error ul li{
    padding: 10px 0;
}

/* LOADER */


.loader{
    background:#fff url('/images/loader.gif') no-repeat center center;
    display:block;
    width:100%;
    min-height:400px;
}


/* RESPONSIVE */

@media screen and (max-width: 800px) {
    .half{
        width:100%;
        margin-bottom:40px;
    }
    #lightboxActions{
        margin-top:20px;
    }
    #search #sizes,#breadcrumb,#head p,#head #mainmenu li a span.label, #lightbox{
        display:none;
    }
    #head #mainmenu li a span.sprite{
        margin-right:0;
    }
    #neck{
        text-align:center;
        position:relative;
        padding-left:20px;
        padding-right:20px;
    }
    #body{
        display:block;
        position:relative;
        overflow:hidden;
        padding-left:40px;
        padding-top:40px;
    }
    #search, .searchfilterblock{
        text-align:center;
        display:block;
        position:relative;
        width:100%;
    }
    #searchform{
        float:none;
        position:relative;
        display:inline-block;
    }
    #search p.filter {
        float:none;
        width:100%;
        margin-right:0;
    }
    #neck .logo #logo{
        float:none;
        display:inline-block;
        max-width:100%;
        height:auto;
    }
    #sidemenuWrapper{
        position:relative;
        background:#e6e6e6;
        padding:10px;
        margin-left:-40px;
        margin-bottom:40px;
        -webkit-transition: margin 125ms ease-in-out;
        -moz-transition:: margin 125ms ease-in-out;
        -o-transition:: margin 125ms ease-in-out;
        transition:: margin 125ms ease-in-out;
    }
    #sidemenuWrapper .toggle{
        cursor:pointer;
        background:#e6e6e6 url(../images/sprites.png) top left no-repeat;
        background-position:-2px -23px;
        display:block;
        position:absolute;
        width:18px;
        height:18px;
        border:10px solid #e6e6e6;
        top:0;
        right:-38px;
        -webkit-border-top-right-radius: 5px;
        -webkit-border-bottom-right-radius: 5px;
        -moz-border-radius-topright: 5px;
        -moz-border-radius-bottomright: 5px;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    #sidemenuWrapper.closed{
        margin-left:-310px;
    }
    
    #sidemenu li a{
        padding-top:15px!important;
        padding-bottom:15px!important;
    }
}
@media screen and (max-width: 480px) {
    #content{
        text-align:center;
        float:left;
        width:100%;
    }
    .item{
        display:inline-block!important;
        float:none!important;
    }
    #head #dashboard_menu, #head #new_media{
        display:none;
    }
    #head #mainmenu li{
        padding-left:15px;
        padding-right:15px;
    }
    #searchform input.searchinput{
        width:75%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    #searchform input.searchsubmit{
        width:25%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}