/**	This provides a tabbed box, where there is a box around some text/image	and a tab on the top left of the box with the tab (usually) being the	same color as the border.	The definition is broken into the basic positioning setup, and the 	color setup for each portion of the box**//** Basic box setup **/.tab_box {	float: left;	border-width: 3px;	border-top-width: 5px;	border-style: solid;	font-size: 10;}/** Basic tab title setup - what appears in the tab **/.tab_title {	position: relative;	margin-top: -20px;	margin-left: -3px;	border-width: 3px;	border-style: solid;	font-weight: bold;	width: 70%;}/** Basic text setup - what appears within the tabbed box **/.tab_text {	position: relative;}.angle       { 	width: 14; height: 15; background-image: url('../images/tr14x15_1.gif') }/*------------------	COLORS------------------- *//** Tab box colors **/.tab_box {	border-color:#000066;	background-color: #000000;	color: #FFFFFF;}/** Tab title colors  - this border-color and background-color should match the tab_box **/.tab_title {	border-color:#000066;	background-color: #000066;	color: #FFFFFF;}/** Text colors **/.tab_text {	background-color: #FFFFFF;	color: #000000;}