﻿/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.hollowbox 
{
    position:relative;
    margin:0px auto;
    min-width:8em;
    max-width:1000px; /* based on image dimensions - not quite consistent with drip styles yet */
    z-index:1;
    margin-left:15px; /* default, width of left corner */
    margin-bottom:0.5em; /* spacing under hollowbox */
	font-family: Tahoma;
	font-size: 10pt;
	color: #000000;
}

.hollowbox .content,
.hollowbox .t,
.hollowbox .b,
.hollowbox .b div 
{
	background: transparent url('../images/boxes/hollow_box_no_header.png') no-repeat right top;
}

.hollowbox .content 
{
	position: relative;
	zoom: 1;
	/*_overflow-y: hidden;*/
	padding: 0px 9px 0px 0px;
}

.hollowbox .t 
{
	/* top+left vertical slice */
    position: absolute;
	left: 0px;
	top: 0px;
	width: 15px; /* top slice width */;
	margin-left: -15px;
	height: 100%;
	/*_height: 2000px;*/ /* arbitrary long height, IE 6 */;
	background-position: top left;
}

.hollowbox .b 
{
    /* bottom */
    position:relative;
    width:100%;
}

.hollowbox .b,
.hollowbox .b div 
{
    height:15px; /* height of bottom cap/shade */
    font-size:1px;
}

.hollowbox .b 
{
	background-position: bottom right;
}

.hollowbox .b div 
{
    position:relative;
    width:15px; /* bottom corner width */
    margin-left:-15px;
    background-position:bottom left;
}

.hollowbox .hd,
.hollowbox .bd,
.hollowbox .ft 
{
	position: relative;
}

#hollowboxdiv link
{
	font-family: "Verdana";
	font-size: 10pt;
	color: #0067B5;
	text-decoration: none;
}

#hollowboxdiv hover
{
	font-family: "Verdana";
	font-size: 10pt;
	color: #E47029;
	text-decoration: none;
}

#hollowboxdiv visited
{
	font-family: "Verdana";
	font-size: 10pt;
	color: #0067B5;
	text-decoration: none;
}

.hollowbox a:link
{
	font-family: "Verdana";
	font-size: 10pt;
	color: #0067B5;
	text-decoration: none;
}

.hollowbox a:hover
{
	font-family: "Verdana";
	font-size: 10pt;
	color: #E47029;
	text-decoration: none;
}

.hollowbox a:visited
{
	font-family: "Verdana";
	font-size: 10pt;
	color: #0067B5;
	text-decoration: none;
}

