
/**
 * Cascading Stylesheet for the Duron website.
 */

<!--
/** Standard size text styles. */
.text,p,ol,ul { color: black;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal; }

table.directions td {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10pt;
    font-style: normal; }

.bold { color: black;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-weight: bold; }

.red_bold { color: red;
			font-family: Verdana, Arial, Helvetica, sans-serif;
			font-size: 10pt;
			font-style: normal; 
			font-weight: bold; }

.key { color: black;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: normal; }

/** Default styles for some common text tags. */
h1 { color: black;
     font-family: Verdana, Arial, Helvetica, sans-serif;
     font-size: 12pt;
     font-style: normal;
     font-weight: bold; }

h2 { color: black;
     font-family: Verdana, Arial, Helvetica, sans-serif;
     font-size: 10pt;
     text-align: left;
     font-style: normal;
     font-weight: bold; }


/** A-tag style for the default links. */
a.key:link    { color: #346667;
				  font-size: 8pt;
				  text-decoration: underline; }
a.key:hover   { color: #346667;
				  font-size: 8pt;
				  text-decoration: underline; }
a.key:visited { color: #346667;
				  font-size: 8pt;
				  text-decoration: underline; }


td.menu {
    color: white;
}

td.white8 {
  color: white;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 8pt;
  font-weight: bold; }

/** A-tag style for the default links. */
a:link    { color: #346667;
            font-size: 10pt;
            text-decoration: underline; }
a:visited { color: #346667;
            font-size: 10pt;
            text-decoration: underline; }
a:hover   { color: #346667;
            font-size: 10pt;
            text-decoration: underline; }
a:active  {color: #346667;
            font-size: 10pt;
            text-decoration: underline; }


/** A-tag style for the default links. */
a.white8:link    { 
    color: white;
    font-size: 8pt;
    text-decoration: none; }
a.white8:visited { 
    color: white;
    font-size: 8pt;
    text-decoration: none; }
a.white8:hover   { 
    color: white;
    font-size: 8pt;
    text-decoration: underline; }


/** A-tag style for small black links. */
a.white-small:link    { color: #ffffff;
                       font-family: Verdana, Arial, Helvetica, sans-serif;
                       font-size: 9pt;
                       font-weight: bold;
                       text-decoration: none; }
a.white-small:visited { color: #ffffff;
                       font-family: Verdana, Arial, Helvetica, sans-serif;
                       font-size: 9pt;
                       font-weight: bold;
                       text-decoration: none; }
a.white-small:hover   { color: #ffffff;
                       font-family: Verdana, Arial, Helvetica, sans-serif;
                       font-size: 9pt;
                       font-weight: bold;
                       text-decoration: underline; }


.gray10 { color: #8D8D8D;
			 font-family: Verdana, Arial, Helvetica, sans-serif;
			 font-size: 10pt;
			 font-style: normal; }

/** A-tag style for the default links. */
a.gray10:link    { 
    color: #8D8D8D;
    text-decoration: none; }
a.gray10:visited { 
    color: #8D8D8D;
    text-decoration: none; }
a.gray10:hover   { 
    color: #8D8D8D;
    text-decoration: underline; }

.breadcrumbs   { 
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #346667;
    font-size: 8pt;  }

/** A-tag style for the default links. */
a.breadcrumbs:link    { 
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #346667;
    font-size: 8pt;
    text-decoration: underline; }
a.breadcrumbs:visited { 
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #346667;
	font-size: 8pt;
    text-decoration: underline; }
a.breadcrumbs:hover   { 
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #346667;
	font-size: 8pt;
    text-decoration: underline; }
a.breadcrumbs:active  {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #346667;
	font-size: 8pt;
    text-decoration: underline; }

.red_small_text { color: red;
				  font-family: Verdana, Arial, Helvetica, sans-serif;
				  font-size: 7pt;
				  font-style: normal; }

        /**
         * The calendar control styles.
         */

        /* The div that holds the date picker calendar */
        .dpDiv {
        }

        /* The table (within the div) that holds the date picker calendar */
        .dpTable {
            font-family: Tahoma, Arial, Helvetica, sans-serif;
            font-size: 10pt;
            text-align: center;
            color: #505050;
            background-color: #ffffff;
            border: 1px solid #AAAAAA;
        }

        /* A table row that holds date numbers (either blank or 1-31) */
        .dpTR {
        }

        /* The top table row that holds the month, year, and forward/backward buttons */
        .dpTitleTR {
            background: #737373;
        }

        /* The second table row, that holds the names of days of the week
           (Mo, Tu, We, etc.) */
        .dpDayTR {
        }

        /* The bottom table row, that has the "This Month" and "Close" buttons */
        .dpTodayButtonTR {
        }

        /* A table cell that holds a date number (either blank or 1-31) */
        .dpTD {
            border: 1px solid #ece9d8;
        }

        /* A table cell that holds a highlighted day (usually either today's date or the current date field value) */
        .dpDayHighlightTD {
            background-color: #ffffff;
            border: 1px solid #AAAAAA;
        }

        /* The date number table cell that the mouse pointer is currently over (you can use contrasting colors to make it apparent which cell is being hovered over) */
        .dpTDHover {
            background-color: #ffffff;
            border: 1px solid #888888;
         /*   cursor: pointer;*/
            color: #505050;
        }

        /* The table cell that holds the name of the month and the year */
        .dpTitleTD {
        }

        /* A table cell that holds one of the forward/backward buttons */
        .dpButtonTD {
        }

        /* The table cell that holds the "This Month" or "Close" button at the bottom */
        .dpTodayButtonTD {
        }

        /* A table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
        .dpDayTD {
            background-color: #ffffff;
            border: 1px solid #ffffff;
            color: #000000;
        }

        /* Additional style information for the text that indicates the month and year */
        .dpTitleText {
            font-size: 11pt;
            color: #ffffff;
            background: #737373;
            font-weight: bold;
        }

        /* Additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */
        .dpDayHighlight {
            color: red;
            font-weight: bold;
        }

        /* The forward/backward buttons at the top */
        .dpButton {
            font-size: 8pt;
            color: gray;
            background: #ffffff;
            font-weight: bold;
            padding: 0px;
        }

        /* The "This Month" and "Close" buttons at the bottom */
        .dpTodayButton {
            font-size: 8pt;
            color: gray;
            background: #ffffff;
            font-weight: bold;
        }