/*
Authors: George Engelbeck and Cary A. Bran

Description: The console.css contains all of the style for the 
container application for VTG BLAF applications. This style sheet 
will have styles for the header and  navigator sections of the 
console.  Application specific style will be available in the
application.css file

*/


/*
	Styles for the Console header
*/

/* Set the background color for the console body */
body{
	background-color: white;
}
/* Sets the style for the body of the header */
body.header{ 
	font-family: arial, verdana, geneva, helvetica, sans-serif;
	font-style: normal;
	margin: 0em;
	font-size: 70%;
	background-color: #336666; 
	color: #000000;
}

/* Sets the style for the header's logout link */
a.header-logout { 
	color: #FFA500;
	text-decoration: none; 
	font-weight: bold;
	font-family: arial, verdana, geneva, helvetica, sans-serif;
	font-size: 70%;
}
 
/* Sets the style for the header's help link */ 
a.header-help{ 
	color: #000000;
	text-decoration: none; 
	font-weight: bold;
	font-family: arial, verdana, geneva, helvetica, sans-serif;
	font-size: 70%;
}

/* Sets the style for the BIG header title */
span.header-title{ 
	text-decoration: none;
	font-weight: 500; 
	font-size: 1.2em; 
	color: #FFFFFF;
}

/* Sets the style for the little header title */
span.header-subtitle{
 	text-decoration: none;
	font-weight: 200;
 	font-size: .6em; 
 	color: #FFFFFF
}

/* Sets the style for a header table */
table.header-table{ 
	background-color: #336666; 
}

/* Sets the color for a spacer */
td.header-table-spacer{ 
	background-color: #FFFFFF;
}

/** End Header Style **/

/* Tree Control Style 
   The styles below are used for the tree control
*/

/* generic style for the tree control */
.tree-control {
  background-color: #ffffff;
  color: #336699;
  font-family: arial, verdana, geneva, helvetica, sans-serif;
  line-height: 1.0;
  font-size: 70%;
}

table.tree-control {
	width: 100%;
	border-collapse: collapse;
	padding: 2px;
}

/* selected style for a tree control node*/ 
.tree-control-selected {
  color: #FFFFFF;
  background-color: #629797;
 /* font-style: normal;
  font-weight: normal;
  text-decoration: none; */
}


/* unselected style for a tree control node */
.tree-control-unselected a{
  color: #336699;
  font-weight: normal;
  text-decoration: none;
}

.tree-control-selected a{
  color: #FFFFFF;
  font-weight: normal;
  text-decoration: none;
}

/* style for the tree control expander links */
.tree-control-expander {
  color: #336699;
  font-weight: normal;
  text-decoration: none;
}

table td.tree-control-folder {
	border-top: 1px solid #DFDFDF;
}

table td.tree-control-root {
	border-top: 2px solid #DFDFDF;
	font-weight: bold;
}

table td.tree-control-root a {
	font-weight: bold;
}
