/* IN main style sheet ... override where needed */

A:link    { text-decoration: none; font-weight: bold; color: blue; background-color: transparent; }
A:visited { text-decoration: none ; font-weight: bold; color: purple; background-color: transparent; }
A:hover   { cursor: crosshair; text-decoration: underline; font-weight: bold; background-color: yellow; color: black }
A.nohover:hover   { text-decoration: none; font-weight: bold; background-color: transparent }

ul { list-style-type: disc }
ul.roman { list-style-type: upper-roman }
ul.decimal { list-style-type: decimal }
ul.ualpha { list-style-type: upper-alpha }
ul.lalpha { list-style-type: lower-alpha }

.highlight       { background-color: yellow;  color: black; }
.highlight-red   { background-color: #dd0000; color: black; }
.highlight-green { background-color: #00dd00; color: black; }
.highlight-blue  { background-color: #0000dd; color: black; }

.grayout { background-color: transparent; color: #555555 }
.box { height: 10em; width: 100%; overflow: auto }
.mainidxbox { height: 10em; width: 100%; overflow: auto }

/*
.fullbox { height: 100%; width: 100%; overflow: auto }
*/

.quotebox { margin-left: 10%; margin-right: 10%; font-size: 10pt }

/* p { line-height: 120% } */

body {
   color: black;
   background-image: url(images/intel_guy2_bg.gif); /* relative to stylesheet */
   background-color: #dddddd;
   background-attachment: fixed;
   font-size: 12pt;
   font-family: times,"times new roman",serif;
}
b {font-size: 12pt; } /* These last two are required to make IE 5.5 */
td {font-size: 12pt; } /* use the default font.... */

.center { text-align: center; }

/* Classifications */
/* The old way.... */
.secret { font-size: 18pt; color: #ee0000; background-color: transparent; }
.unclass { font-size: 18pt; color: #008000; background-color: transparent; }
/* And the new way! */
.secrett {
   font-size: 18pt; font-weight: bold;
   background-color: #ee0000; color: white;
   text-align: left;
   padding-left: 20px;
}
.secretb {
   font-size: 18pt; font-weight: bold;
   background-color: #ee0000; color: white;
   text-align: right;
   padding-right: 20px;
}
.confrb {
   font-size: 18pt; font-weight: bold;
   color: #000080;
   text-align: right;
   padding-right: 20px;
}
.conft {
   font-size: 18pt; font-weight: bold;
   background-color: #000080; color: white;
   text-align: left;
   padding-left: 20px;
}
.confb {
   font-size: 18pt; font-weight: bold;
   background-color: #000080; color: white;
   text-align: right;
   padding-right: 20px;
}
.unclasst {
   font-size: 18pt; font-weight: bold;
   background-color: #008000; color: white;
   text-align: left;
   padding-left: 20px;
}
.unclassb {
   font-size: 18pt; font-weight: bold;
   background-color: #008000; color: white;
   text-align: right;
   padding-right: 20px;
}

/* Use for the main title for the page */
.maintitle { font-size: 28pt; }

/* Used for "Deployment and Exercise Resources" and similar */
.deptitle { font-size: 16pt; }

/*
 * Used for the two links---16SOW page and Hurlburt page---at the bottom
 * of each index
 */
.hflinks { font-size: 14pt; }

/* for <b><i class="new">NEW</i></b> */
.new { color: #ee0000; background-color: transparent; font-size: 10pt; }

/* Just changing the color of the text */
.redtext { background-color: transparent; color: #ee0000; }
.greentext { background-color: transparent; color: #007000; }
.blacktext { background-color: transparent; color: #000000; }
.datered { background-color: transparent; color: #cc0000; } /* used in 16SOW Hot Spots for doc. dates */
.smalldatered { background-color: transparent; color: #cc0000; font-size: 10pt; } /* 16SOW Hot Spots */

.larger { font-size: 14pt }  /* use in place of font size="+1" */
.smaller { font-size: 10pt } /* use in place of font size="-1" */


