/*Controls the overall position and look of the window*/
div.sidebar_window
{
	position: relative;
	height: 100px;
	
	/*TO-DO: set the color of the window*/
	background-color: white;
	border-bottom: solid 1px #006666;
		
	filter:alpha(opacity=50);   
	-moz-opacity: .50;   
	opacity: .50;
	
	margin: 10%;
	
	/*In Mozilla, border divs don't seem to size right. So hide it!*/
	overflow: hidden;
	
	z-index: 0;
}

div.sidebar_window_top_left
{
	position: absolute;
	left: 0;
	top: 0;	
	
	height: 25px;
	width: 25px;
	/*TO-Do: change this if you change border color or just want a different style corner*/
	background-image: url(images/sidebar_top_left.gif);
	
	border: 0;
	padding: 0;
}

div.sidebar_window_top
{
	position: absolute;
	left: 0px;
	top: 0px;
	
	width: 100%;
	
	border-top: 1px solid #006666;	

	/*TO-DO: if you change the size of the corners, you have to change this!*/
	margin: 0 25px;
	padding: 0;
}

div.sidebar_window_top_right
{
	position: absolute;
	right: 0;
	top: 0;	
	
	height: 25px;
	width: 25px;
	/*TO-Do: change this if you change border color or just want a different style corner*/
	background-image: url(images/sidebar_top_right.gif);
	
	margin: 0;
	border: 0;
	padding: 0;
}

div.sidebar_window_left
{
	position: absolute;
	top: 0px;
	left: 0px;
	
	width: 25px;
	height: 100%;
	
	border-left: 1px solid #006666;	
	margin: 25px 0;
	padding: 0;
}

div.sidebar_window_content
{
	position: absolute;	
	left: 0;
	top: 0;
	
	text-align: center;
	
	padding: 0px;
	padding-top: 5px;
}

div.sidebar_window_right
{
	position: absolute;
	top: 0px;
	right: 0px;

	height: 100%;

	border-right: 1px solid #006666;	
	margin: 25px 0;
	padding: 0;
}

div.sidebar_window_bottom_left
{
	position: absolute;
	left: 0;
	bottom: 0;
	
	height: 25px;
	width: 25px;
	
	margin: 0;
	padding: 0;
}

div.sidebar_window_bottom
{
	position: absolute;
	left: 0px;
	bottom: 0px;
	
	width: 100%;
	
	/*TO-DO: if you change the size of the corners, you have to change this!*/
	margin: 0 25px;
	padding: 0;
}

div.sidebar_window_bottom_right
{
	position: absolute;
	right: 0;
	bottom: 0;
	
	height: 25px;
	width: 25px;
	
	margin: 0;
	padding: 0;
}