
/*-------------------- Button --------------------*/
a.button {
	border: 0px;
	display: inline-block;
	text-decoration: none;
	overflow: hidden;
	outline: none;
	cursor: pointer;
}
a.button span {
	display: block;
	text-decoration: none;
}
a.button.medium {
	font-size: 11px;
	color: #444444;
	font-weight: bold;
	height: 24px;
	margin-right: 6px;
	padding-right: 12px;
	background: transparent url('../../wcm/core/images/button/medium_bg_a.gif') no-repeat scroll top right;
}
a.button.medium span {
	background: transparent url('../../wcm/core/images/button/medium_bg_span.gif') no-repeat;
	line-height: 14px;
	padding: 5px 1px 5px 12px;
}
a.button.medium2 {
	font-size: 11px;
	color: #444444;
	font-weight: bold;
	height: 24px;
	margin-right: 6px;
	padding-right: 12px;
	background: transparent url('../../wcm/core/images/button/medium2_bg_a.gif') no-repeat scroll top right;
}
a.button.medium2 span {
	background: transparent url('../../wcm/core/images/button/medium2_bg_span.gif') no-repeat;
	line-height: 14px;
	padding: 5px 1px 5px 12px;
}

a.button:hover {
	background-position: right center;
	text-decoration: none;
}
a.button:hover span {
	background-position: left center;
}
a.button.clicked {
	background-position: right bottom;
}
a.button.clicked span {
	background-position: left bottom;
}
a.button span img {
	margin-left: 2px;
}
/*----------- Dialog -----------*/
.dialog,
#childDialog {
	position: absolute;
	background: #ffffff;
	padding: 3px;
	width: 400px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0px 0px 25px #000000;
	-moz-box-shadow: 0px 0px 25px #000000;
  	-webkit-box-shadow: 0px 0px 25px #000000;
	
	z-index:1001;
}
#report_abuse_form li {
    list-style: none outside none;
}
#report_abuse_form ul {
    line-height: 19px;
}
.dialog .head,
#childDialog .head {
	background: #4F2A81;
	color: #ffffff;
	font-size: 13px;
	font-weight: bold;
	width: auto;
	padding: 5px 10px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
	-moz-border-radius-topright: 3px;
	-webkit-border-top-right-radius: 3px;
}
.dialog .main,
#childDialog .main {
	color: #444444;
	font-size: 12px;
	padding: 10px 10px;
	max-height: 450px;
	overflow-x: hidden;
	overflow-y: auto;
	width: auto;
}
* html .dialog .main,
* html #childDialog .main {
	height: 450px;
	height: expression( document.body.clientHeight > 450 ? "300px" : "auto" );
}
.dialog .foot,
#childDialog .foot {
	border-top: 1px solid #eeeeee;
	padding: 10px 0 10px 0;
	text-align: right;
}
.dimmer,
#childDimmer {
	position: absolute;
	width: 100%;
	background-color:#ffffff;
	top: 0;
	left: 0;
	filter:alpha(opacity=60);
	opacity:0.6;
	z-index:1000;
}