/* 

-- Copywright 2009 IDEAS, LLC --

Project.Ideasllc.Us Use Only
Any other use is strictly prohibited.

000066 is a dark blue
4E4E4E is logo grey

*/

/* Overall Styles */
body {
 background:#FFFFFF;
 color:#4E4E4E
}
p,h1,h2,h3,h4,h5,h6 {font-family:sans-serif}
A:link {
 text-decoration:underline;
 color:#000066
}
A:visited {
 text-decoration:underline;
 color:#000066
}
A:active {
 text-decoration:underline;
 color:#000066
}
/* I really like this INVERSE effect when mousing over */
A:hover {
 text-decoration:none;
 color:#FFFFFF;
 background:#000066
}

/* Table Related Styles */
table {
 border-style:solid;
 border-width:0px;
 border-color:#000066;
 color:#000066
}

table.note {
 border-style:solid;
 border-width:2px;
 border-color:#000066;
 color:#000066;
 background-color:#CCCCFF;
}

table.note tr {
 background-color:#CCCCFF;
}

table.note td {
 padding:5px;
}

table.blue {
 border-style:solid;
 border-width:1px;
 border-color:#000066;
 color:#000066
}

/* Originally for interaction tables only, but now used wherever I liked the bold */
table.message {
 border-style:solid;
 border-width:2px;
 border-color:#000066;
 color:#000066
}

table.filter {
 border-style:solid;
 border-width:2px;
 border-color:#000066;
 color:#000066	
}

table.new {
 border-style:solid;
 border-width:2px;
 border-color:#000066;
 color:#000066	
}

table.project {
 border-style:solid;
 border-width:2px;
 border-color:#000066;
 color:#000066	
}

table.task {
 border-style:solid;
 border-width:2px;
 border-color:#000066;
 color:#000066	
}

table.account {
 border-style:solid;
 border-width:2px;
 border-color:#000066;
 color:#000066	
}

tr.overview {
 background-color:#CCCCFF;
 text-align:center;
 white-space:nowrap
}
tr.title {
 background-color:#CCCCFF;
 white-space:nowrap;
 font-weight:600
}
tr.key,td.key {
 background-color:#DDDDFF;
 white-space:nowrap
}
tr {
 font-family:sans-serif;
 border-style:none;
 border-width:0px;
 border-color:black;
 background-color:white
}
/* Used for interaction display due to long messages */
tr.small {
 font-family:sans-serif;
 font-size:small
}
tr.private {background-color:#FFFF00} /* Used to mark some items as "private" without having a special column for such */
/* Originally used in interaction tables only, but now used whenever I liked the style */
td.message {
 font-family:sans-serif;
 font-size:small;
 border-style:solid;
 border-width:1px;
 border-color:#000066
} 

/* Form Related Styles */
input,select,textarea{color:#000066}									

/* These two allow me to hide/unhide text areas with JavaScript.  Mainly used for "Add New" blocks on multiple pages */
.hidden { display: none; }
.unhidden { display: block; }