

#shadowing
{
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #CCA;
	z-index:10;
	opacity:0.5;
	filter: alpha(opacity=50);
}


#box 
{
	display: none;
	position: fixed;
	
	width: 300px;
	height: 200px;
	max-height:400px;
	padding: 0;
	
	border: 1px solid black;
	background-color: white;
	z-index:11;
	overflow: hidden;
	left:0; right:0;
        top:0; bottom:0;
        margin:auto;
}

#boxheader
{
	position:absolute;
	top:0%;
	left:0%;
	width:100%;
	height:20px;
	padding:2px 0px 0 0px;
	margin:0;
	margin-right:20px;
	border-bottom:1px solid black;
	background-color: #CC3300;
	color:white;
	text-align:center;
}

#boxclose
{
	float:right;
	position:absolute;
	top: 0;
	right: 0px;
	background-image:url(images/close.gif);
	background-repeat:no-repeat;
	background-color:#CCC;
	border:1px solid black;
	width:20px;
	height:20px;
	margin-right:0px;
}

#boxcontent1
{
	position:absolute;
	top:23px;
	left:0;
	right:0;
	bottom:0;
	margin:0 0 0 0;
	overflow: auto;
	width:100%;
	height:100%;
	overflow:hidden;
}

.title {
font-family: 'Open Sans', sans-serif;
font-size:14px;
color:#000000;
line-height:22px;
}

.textbox {
border: 1px solid #ccc;
	border-radius:5px;
	height: 20px;
	width: 170px;
}

.textbox2 {
border: 1px solid #ccc;
	border-radius:5px;
	height: 25px;
	width: 170px;
}

/***FIRST STYLE THE BUTTON***/
input#gobutton{
cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/
padding:5px 10px; /*add some padding to the inside of the button*/
background:#CC3333; /*the colour of the button*/
/*give the button curved corners, alter the size as required*/
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 7px;
/*style the text*/
color:#f3f3f3;
font-size:1.1em;
}
/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/
input#gobutton:hover, input#gobutton:focus{
background-color :#fff; /*make the background a little darker*/

color:#999;
}


