



/* TREE MENU : Start */
.tree_menu
{
	height: 100%;
	width: 200px;
	text-align: left;
	margin-right: 30px;

	/* AVOID changing the following three options */
	float: left;	/* Aligns the tree menu to the left and allows following object to come to the right of it */
	overflow: auto;	/* Allows for scroll bars on the tree menu div */
	overflow-x: hidden;	/* DO NOT REMOVE */
}
.tree_menu a	/* I set this manually because some of the anchors don't have "href" properties */
{
	color: black;
	text-decoration: none;
	cursor: pointer;
	width: 100%;	/* DO NOT CHANGE/REMOVE */
}
.tree_menu a:hover
{
	text-decoration: underline;
	color: black;
}
.tree_menu ul
{
	list-style: none;
	margin-left: 20px;
	cursor: default;	/* This was used to change the cursor from the I-beam to your regular arrow */
	margin: 0px;
	padding: 0px;
}
.tree_menu ul li
{ 
	cursor: pointer;
	margin: 0px;
}
.tree_menu ul li a div div
{
	background-image: url(../images/transparency/blank.png);	/* Uses blank PNG for links that don't provide submenus */
	background-repeat: no-repeat;
	background-position: 4px 4px;
	padding-left: 20px;
}
.tree_menu ul li a.opened div div
{
	background-image: url(../images/transparency/minus.png);
}
.tree_menu ul li a.closed div div
{
	background-image: url(../images/transparency/plus.png);
}
.tree_menu ul li.closed ul	/* DO NOT REMOVE - Used to make sure closed submenus are not visible */
{
	display: none;
}




/* CUSTOMIZATION */

.tree_menu ul li a div.list_header	/* Styles for the headings */
{
	background-image: url('../images/menu-tree_bg.jpg');
	height: 25px;
	margin:0px;
	color: white;
	margin-top: 2px;
	padding-top: 3px;
	font-weight: bold;
}

.list_header_services	/* Styles for the headings (services section) */
{
	background-image: url('../images/menu-tree_services.jpg');
	height: 25px;
	margin:0px;
	color: white;
	margin-top: 2px;
	padding-top: 3px;
	font-weight: bold;
}

.tree_menu ul li ul li a div	/* Used for positioning submenu options. Both values must scale together. */
{
	background-position: 19px;
	padding-left: 21px;
	text-align: left;
	font-size: 8pt;	
	
}
.tree_menu ul li ul li ul li a div	/* Used for positioning sub-submenu options. Both values must scale together. */
{
	background-position: 34px;
	padding-left: 50px;
	
}

.tree_menu ul li ul
{
	background-image: url('../images/menu_bg.png');
	background-repeat: repeat-x;
}

/* CONTENT : Start */
#content
{
	padding: 10px 10px;
	min-height: 450px;
	width: 630px;
	float: left;
	overflow-y: auto;

}

#content_services
{
	padding: 10px 10px;
	min-height: 450px;
	width: 630px;
	float: left;
}

#content_frame
{
	height: 100%;
	width: 640px;
}
