/*
	Some default Styles for the Ziron admin system and websites.
*/

table.flat {
	border-spacing:0;
	border-collapse:collapse;	
}

img { border: 0; }

/* fix li not being clickable */
li a {display:inline-block;}
li a {display:block;}

.half_trans {
	opacity:0.8;
	filter:alpha(opacity=60); /* For IE8 and earlier */
}

.transbox {
	opacity:0.6;
	filter:alpha(opacity=60); /* For IE8 and earlier */
}

.transbox:hover {
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
}

.roundtop {
	-moz-border-radius-topright:10px 10px;
	border-top-right-radius: 10px 10px;
	-moz-top-radius-topleft: 10px 10px;
	border-top-left-radius: 10px 10px;	
}

.roundbottom {
	-moz-border-radius-bottomright:10px 10px;
	border-bottom-right-radius: 10px 10px;
	-moz-border-radius-bottomleft: 10px 10px;
	border-bottom-left-radius: 10px 10px;	
}

.roundleft {
	-moz-top-radius-topleft: 10px 10px;
	border-top-left-radius: 10px 10px;	
	-moz-border-radius-bottomleft: 10px 10px;
	border-bottom-left-radius: 10px 10px;	
}

.roundright {
	-moz-top-radius-topright: 10px 10px;
	border-top-right-radius: 10px 10px;	
	-moz-border-radius-bottomright: 10px 10px;
	border-bottom-right-radius: 10px 10px;	
}

.roundtop_xl {
	-moz-border-radius-topright:20px 20px;
	border-top-right-radius: 20px 20px;
	-moz-top-radius-topleft: 20px 20px;
	border-top-left-radius: 20px 20px;	
}

.roundbottom_xl {
	-moz-border-radius-bottomright:20px 20px;
	border-bottom-right-radius: 20px 20px;
	-moz-border-radius-bottomleft: 20px 20px;
	border-bottom-left-radius: 20px 20px;	
}

ul.custom { 
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

ul.inline li {
	position:relative; display:inline-block;
}

.anim_smooth {
	transition : all 0.2s ease-out; 
	-webkit-transition : all 0.2s ease-out; 
	-moz-transition : all 0.2s ease-out;
	-o-transition : all 0.2s ease-out;   	
}

.album_list  div.prev {
	position:absolute;
	cursor:pointer;
	top:0px; 
	left:0; 
	width:25px;
	height:100%;	
	background:#000;
	z-index:100;
	
	opacity:0.4;
	filter:alpha(opacity=40); /* For IE8 and earlier */	
	
	background-image:url(../images/arr_left.png);
	background-repeat:no-repeat;
	background-position:center center;	
}
.album_list div.prev:hover {opacity:0.8; filter:alpha(opacity=80); background-color:rgb(47,47,128);}

.album_list div.next {
	position:absolute;
	cursor:pointer;
	top:0px; 
	right:0px;
	width:25px;
	height:100%;	
	background:#000;
	z-index:100;
	
	opacity:0.4;
	filter:alpha(opacity=40); /* For IE8 and earlier */	
	
	background-image:url(../images/arr_right.png);
	background-repeat:no-repeat;
	background-position:center center;	
}
.album_list div.next:hover {opacity:0.8; filter:alpha(opacity=80); background-color:rgb(47,47,128);}

.album_list img { cursor:pointer; }

.album_img {
	transition : all 0.2s ease-out; -webkit-transition : all 0.2s ease-out; -moz-transition : all 0.2s ease-out; -o-transition : all 0.2s ease-out; 
}

.album_img > div.prev {
	cursor:pointer;
	position:absolute;
	top:30%; 
	left:0; 
	width:25px;
	height:110px;	
	background-color:#000;
	z-index:100;
	
	opacity:0.4;
	filter:alpha(opacity=40); /* For IE8 and earlier */	
	
	background-image:url(../images/arr_left.png);
	background-repeat:no-repeat;
	background-position:center center;
}
.album_img > div.prev:hover {opacity:0.8; filter:alpha(opacity=80); background-color:rgb(47,47,128);}

.album_img > div.next {
	cursor:pointer;
	position:absolute;
	top:30%; 
	right:0px; 
	width:25px;
	height:110px;	
	background-color:#000;
	z-index:100;
	
	opacity:0.4;
	filter:alpha(opacity=40); /* For IE8 and earlier */	
	
	background-image:url(../images/arr_right.png);
	background-repeat:no-repeat;
	background-position:center center;
}
.album_img > div.next:hover {opacity:0.8; filter:alpha(opacity=80); background-color:rgb(47,47,128);}

.album_img > div.title {
	position:absolute; bottom:0px; width:100%; background:rgba(0,0,0,.5);
}

.album_img > div.title > span.tip_title {
	display:block;
	color:#fff;
	padding:5px;
	font-weight:bold;
}

.album_img > div.title > span.tip_text {
	display:block;
	color:#fff;
	padding:5px;
	padding-top:0;
}