/*
==================
 WB Stuff
*/

.wbmodal 
{
	display:	none;
	position:	fixed;
	z-index:	1030;
	top:		0;
	left:		0;
	height:		100%;
	width:		100%;
	background:	rgba(255, 255, 255, .8)
				50% 50%
				no-repeat;
	
}

.wbmodalinner 
{
	position: relative;
	top: 20%;
	/*left: 20%;*/
	margin-left: auto;
	margin-right: auto;
	border-radius: 15px 50px;
	border: 2px solid #000099;
	padding: 20px;
	width: 200px;
	height: 150px;
	background-image:	url('../img/ajax_loader.gif');
	background-position: 50% 50%;
	background-repeat:	no-repeat;
	font-size: 15px;
	color: black;
	text-align: center;
}

.hidden 
{
	display:	none;
}

input:read-only
{
	background: #eee none;
	color: #222;
	font-style: italic;
}

input:-moz-read-only
{
	background: #eee none;
	color: #222;
	font-style: italic;
}

textarea:read-only
{
	background: #eee none;
	color: #222;
	font-style: italic;
}

textarea:-moz-read-only
{
	background: #eee none;
	color: #222;
	font-style: italic;
}

.follow-box
{
	background: #eee;
	border: 1px solid #ccc;
	padding: 10px;
	margin-bottom: 20px;
}

.warning
{
	background-color: lightgray;
	color: red;
}

.progressBar 
{
    width: 150px;
    height: 22px;
    border: 1px solid #ddd;
    border-radius: 5px; 
    overflow: hidden;
    display:inline-block;
    margin:0px 10px 5px 5px;
    vertical-align:top;
}
 
.progressBar div 
{
    height: 100%;
    color: #fff;
    text-align: center;
    line-height: 22px; /* same as #progressBar height if we want text middle aligned */
    width: 0;
    background-color: #0ba1b5; border-radius: 3px; 
}

.statusbar
{
    border-top:1px solid #A9CCD1;
    min-height:25px;
    width:100%;
    padding:10px 10px 0px 10px;
    vertical-align:top;
}

.statusbar:nth-child(odd)
{
    background:#EBEFF0;
}

.filename
{
display:inline-block;
vertical-align:top;
width:325px;
}

.filesize
{
display:inline-block;
vertical-align:top;
color:#30693D;
width:75px;
margin-left:10px;
margin-right:5px;
}

.abort
{
    background-color:#A8352F;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;display:inline-block;
    color:#fff;
    font-family:arial;font-size:13px;font-weight:normal;
    padding:4px 15px;
    cursor:pointer;
    vertical-align:top
}

.simple-button
{ 
	font-family: inherit; 
	font-size: 100%; 
	padding: .5em 1em; 
	color: #444; 
	border: 1px solid #999;
	background-color: #E6E6E6; 
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.phoneval
{
	border: 2px solid blue;
	border-radius: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 5px;
	padding-left: 5px;
	font-weight: bold;
	font-size: 20px;
}

/* table sorting */
table.tablesorter thead tr .headerSortUp
{
	background-image: url('../img/asc.gif');
	background-repeat: no-repeat;
	background-position: center right;
}
table.tablesorter thead tr .headerSortDown
{
	background-image: url('../img/desc.gif');
	background-repeat: no-repeat;
	background-position: center right;
}