/* 
    Document   : my_css.php
    Created on : 15 Feb 14, 14:24:58
    Author     : USER
    Description:
        Purpose of the stylesheet follows.
*/

/** Paging **/
.paging {
	background:#fff;
	color: #ccc;
	margin-top: 1em;
	clear:both;
}
.paging .current,
.paging .disabled,
.paging a {
	text-decoration: none;
	padding: 5px 8px;
	display: inline-block
}
.paging > span {
	display: inline-block;
	border: 1px solid #ccc;
	border-left: 0;
}
.paging > span:hover {
	background: #efefef;
}
.paging .prev {
	border-left: 1px solid #ccc;
	-moz-border-radius: 4px 0 0 4px;
	-webkit-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}
.paging .next {
	-moz-border-radius: 0 4px 4px 0;
	-webkit-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}
.paging .disabled {
	color: #ddd;
}
.paging .disabled:hover {
	background: transparent;
}
.paging .current {
	background: #efefef;
	color: #c73e14;
}

/** POP UP STYLE **/
#backgroundPopup{
	display:none;
	position:fixed;
	_position:absolute; /* hack for internet explorer 6*/
	height:100%;
	width:100%;
	top:0;
	left:0;
	background:#000000;
	z-index:999;
}
#popupContact{
	display:none;
	position:fixed;
	margin-top: 0px;
	_position:absolute; /* hack for internet explorer 6*/
	min-width:400px;
	background:#FFFFFF;
	border: 4px solid #cecece;
	z-index:9999;
	padding:12px;
}
#popupContact h1{
	text-align:left;
	color:#6FA5FD;
	font-size:22px;
	font-weight:700;
	border-bottom:1px dotted #D3D3D3;
	padding-bottom:2px;
	margin-bottom:20px;
}
#popupContactClose{
	font-size:14px;
	line-height:14px;
	right:-15px;
	top: -15px;
	position:absolute;
	outline: none;
	color:#6fa5fd;
	font-weight:700;
	display:block;
	background: url(../img/close.png) no-repeat;
	width: 24px;
	height: 24px;
	text-indent: -9999px;
}