html {height:100%; font-size: 100%}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Tahoma, Verdana,Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

table {
	font-size: 1em;
}

TD {
	background-color: #E2D2FC;
	color: #333;
	font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

TD.white {
	background-color: #FFFFFF;
	color: #333;
	font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

TD.admin_white {
	background-color: #FFFFFF;
	color: #333;
	font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

TD.admin_gray {
	background-color: #f3f3f3;
	color: #333;
	font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

.small {
	font-size: 1.1em;
}

.smaller {
	font-size: 1em;
}

A.smaller {
	font-size: 1em;
	color : #fff;
	text-decoration : underline;
}

A.smaller:HOVER {
	font-size: 1em;
	color : #fff;
	text-decoration : none;
}

table.white {
	background-color: #AC96CD;
	color : #333;
	font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

table.enclosing {
	color: #333;
	font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
	border: 1px solid #AC96CD;
}

H3{
   color: #403F42; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}

.important{
	color: Red;
}

.medium{
	color: #FF9900;
}

input, textarea {
border: 1px solid #AC96CD; font-family:Tahoma, Verdana,Geneva, Arial, Helvetica, sans-serif;
background: #f3f3f3;
padding: 0 0 0 0.1em;
font-size: 1em;
}

select {
border: 1px solid #AC96CD; font-family:Tahoma, Verdana,Geneva, Arial, Helvetica, sans-serif;
background: #f3f3f3;
padding: 0 0 0 0.1em;
}

option {
padding: 0 0 0 0.2em;
}

hr {border: 0; color: #333; background-color: #333; height: 1px; text-align: center; margin: 10px}

.open {
	color : #008000;
}

.resolved {
	color : #FF0000;
}


/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #660099; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
   color: #660099;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #660099;
}







