
.gallery_album_border {
	float:left;
	width:240px;
	margin:0px 10px 30px 0px;

}

.gallery_album_title {
	margin-top:10px;
	text-align:center;
	margin-bottom:10px;
	border-bottom:1px solid #EFEFEF;
	padding:10px 0px 10px 0px;
}
.gallery_album_title a {
	font-weight:bold;
	
}
.gallery_album_picture {
	margin-left:41px;
	float:left;
	width:140px;
	height:140px;
	padding:2px;
	border:1px solid #CFCFCF;
}
.gallery_album_picture_inner {
	float:left;
	margin-top:3px;
	margin-left:3px;
	width:140px;
	height:140px;
	padding:4px;
	border:1px solid #CFCFCF;
}
.gallery_album_picture_inner img {
	width:140px;
	height:140px;
	border:0px;
}
.gallery_album_info {
	float:left;
	width:100%;
	margin-top:20px;
	text-align:center;
	margin-bottom:10px;
	height:50px;
	padding:0px 0px 0px 0px;
	border-top:0px solid #EFEFEF;
	font-size:12px;
}



.gallery_image {
	margin:0px 17px 10px 0px;
	width:120px;
	height:120px;
}

/*** ICONS ***/
span.gallery_edit {
	cursor:pointer;
	float:left;
	background-image:url("icon-edit.png");
	background-repeat:no-repeat;
	height:24px;
	width:24px;
}
span.gallery_create {
	cursor:pointer;
	float:left;
	background-image:url("icon-plus.png");
	background-repeat:no-repeat;
	height:24px;
	width:24px;
}
span.gallery_manage {
	cursor:pointer;
	float:left;
	background-image:url("icon-categories.png");
	background-repeat:no-repeat;
	height:24px;
	width:24px;
	margin-left:5px;
}
span.gallery_upload {
	cursor:pointer;
	float:left;
	background-image:url("icon-upload.png");
	background-repeat:no-repeat;
	height:24px;
	width:24px;
	margin-left:20px;
}
span.gallery_delete {
	cursor:pointer;
	float:left;
	background-image:url("icon-delete.png");
	background-repeat:no-repeat;
	height:24px;
	width:24px;
}
span.gallery_inactive {
	cursor:pointer;
	float:left;
	background-image:url("icon-inactive.png");
	background-repeat:no-repeat;
	height:24px;
	width:24px;
}
span.gallery_active {
	cursor:pointer;
	float:left;
	background-image:url("icon-active.png");
	background-repeat:no-repeat;
	height:24px;
	width:24px;
}
/*** MANAGE Gallery **/
div.gallery_manage {
	float:left;
	width:100px;
	height:125px;
	margin:0px 10px 10px 0px;
}
div.gallery_manage img {
	width:100px;
	height:100px;
	float:left;
	margin-right:20px;
	
}
div.gallery_manage_toolbar {
	float:left;
	width:100px;
	height:25px;
	background-color:#EFEFEF;
}

/** Gallery Front view **/
.gallery_album_border_front {
	float:left;
	width:300px;
	margin:0px 0px 20px 0px;

}
.gallery_album_picture_front {
	float:left;
	width:100px;
	height:100px;
	padding:1px;
	border:1px solid #CFCFCF;
}
.gallery_album_picture_front_inner {
	float:left;
	margin-top:2px;
	margin-left:2px;
	width:100px;
	height:100px;
	padding:3px;
	border:1px solid #CFCFCF;
}
.gallery_album_picture_front_inner img {
	width:100px;
	height:100px;
	border:0px;
}
.gallery_album_title_front {
	margin:0px 0px 5px 15px;
	float:left;
}
.gallery_album_title_front a {
	font-size:14px;
	color:#333;
	font-weight:bold;
	
}
.gallery_album_info_front {
	float:left;
	margin-left:15px;
	border-top:0px solid #EFEFEF;
	font-size:12px;
	width:175px;
}


/*** upload box ***/
/*-------------------------
	Dropbox Element
--------------------------*/



#dropbox{
	border-radius:3px;
	position: relative;
	margin:0px auto 0px;
	min-height: 550px;
	overflow: hidden;
	padding-bottom: 40px;
    width: 960px;
	box-shadow:0 0 4px rgba(0,0,0,0.6) inset,0 -3px 2px rgba(0,0,0,0.3);
}


#dropbox .message{
	font-size: 11px;
    text-align: center;
    padding-top:160px;
    display: block;
}

#dropbox .message i{
	color:#ccc;
	font-size:10px;
}

#dropbox:before{
	border-radius:3px 3px 0 0;
}



/*-------------------------
	Image Previews
--------------------------*/


#dropbox .preview{
	width:245px;
	height: 215px;
	float:left;
	margin: 55px 0 0 60px;
	position: relative;
	text-align: center;
}

#dropbox .preview img{
	max-width: 240px;
	max-height:180px;
	border:3px solid #fff;
	display: block;
	
	box-shadow:0 0 2px #000;
}

#dropbox .imageHolder{
	display: inline-block;
	position:relative;
}

#dropbox .uploaded{
	position: absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	background: url('done.png') no-repeat center center rgba(255,255,255,0.5);
	display: none;
}

#dropbox .preview.done .uploaded{
	display: block;
}



/*-------------------------
	Progress Bars
--------------------------*/



#dropbox .progressHolder{
	position: absolute;
	background-color:#252f38;
	height:12px;
	width:100%;
	left:0;
	bottom: 0;
	
	box-shadow:0 0 2px #000;
}

#dropbox .progress{
	background-color:#2586d0;
	position: absolute;
	height:100%;
	left:0;
	width:0;
	
	box-shadow: 0 0 1px rgba(255, 255, 255, 0.4) inset;
	
	-moz-transition:0.25s;
	-webkit-transition:0.25s;
	-o-transition:0.25s;
	transition:0.25s;
}

#dropbox .preview.done .progress{
	width:100% !important;
}
