@charset "ISO-8859-1";
/* -*- css -*-
   File:	mvcc.css
   Author:	Charlie Root, ericx@vineyard.net
   Date:	Thu Jan  5 17:02:21 2006
   Time-stamp:	<2007-03-09 14:58:12 ericx>
   Description:	Main CSS for site

   $Id: mvcc.css,v 1.14 2006/10/17 19:51:22 cvs Exp $
   $Log: mvcc.css,v $
   Revision 1.14  2006/10/17 19:51:22  cvs
   Added centered, frontpage
   Added search-result table format including the hover htc.

   Revision 1.13  2006/07/27 18:35:29  ericx
   Added acronym

*/

body {
  margin: 0;

  /* yet another MSIE workaround */
  behavior: url("../htc/csshover2.htc");
}

/* Please see CVS:notes/positioning for a lengthy discussion of just
 * what the hell I was smoking when I worked this out.
 */

/* bump everything right to allow room for Mark's background image */
#main {
  margin-left: 10px;
  width: 693px;
}

#outer {
  width: auto;

  /* Put a solid block of color over on the left edge */
  border-left-style: solid;
  border-left-width: 10px;
  border-left-color: #FFFFFF;
  border-top: 0px;
  margin-left: 2px;

  padding-top: 11px;
}

#inner {
  margin: 0;
  width: 100%;
}

/* This is the division for the horizontal menu bar */
#menu-bar {
  height: 100px;
  width: 100%;
  position: relative;
  z-index: 13;

  border-collapse: collapse;
}
#menu-bar * td {
  padding: 0px;
}

/* This is the vertical text "Martha's Vineyard" image */
#mvsideways {
  float: left;
  position: relative;
  width: 45px;
  margin-left: -155px;
  z-index: 10;
}

/* This is the vertical submenu */
#submenu {
  float: left;
  position: relative;
  width: 110px;
  margin-left: -110px;
  margin-right: 1px;
  z-index: 11;
}

/* Whee! Finally get some content going here... */
#contents {
  position: relative;
  padding-left: 15px;
  padding-right: 10px;

  width: auto;
  z-index: 12;
}

/* This used to be plain old 'right'; but it overlapped with the
 * tr.display th.right and made it float right as well.
 */
div.right,
img.right {
  float: right;
}

div.clear {
  clear: both;
}


/* Print only stuff should not show on the screen
 * See also: @media: print below */
.printonly { display: none; }



/* This is our vertical submenu */
ul.menu {
  width: 94px;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.menu li {
  margin: 0;
  font-family:  Arial, Helvetica, sans-serif;
  /* font-family: Georgia, "Times New Roman", Times, serif; */
  font-size: 9pt;
  border-bottom: 1px dashed #b3afa5;
}
ul.menu li a {
  display: block;
  padding: 5px 0 5px 0;
  color: #616365;
  background-color: #fdfcf4;
  text-decoration: none;
}
/* The following is an IE workaround... */
html>body ul.menu li a {
  width: auto;
}
ul.menu li a:hover {
  color: #616365;
  background-color: #ecf2f9;
}


/* This is the list of featured links on the front page */
ul.featured {
  width: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.featured li {
  margin: 5px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 10pt;
  font-weight: bold;
  border: 1px solid #b3afa5;
}
ul.featured li a {
  display: block;
  padding: 5px 0 5px 0;
  color: #616365;
  background-color: #fdfcf4;
  text-decoration: none;
}
/* The following is an IE workaround... */
html>body ul.featured li a {
  width: auto;
}
ul.featured li a:hover {
  color: #616365;
  background-color: #ecf2f9;
}


/* This is the tab menu used by the edit page */
#tabs {
  float: left;
  width: 100%;
  background: #dae0d2 url("../images/tab_bg.gif") repeat-x bottom;
  /* font-size: 93%; */
  line-height: normal;
}
#tabs ul {
  margin: 0;
  padding: 10px 10px 0;
  list-style: none;
}
#tabs li {
  float: left;
  background: url("../images/tab_left.gif") no-repeat left top;
  margin: 0;
  padding: 0 0 0 9px;
}
#tabs a {
  float: left;
  display: block;
  font-family:  Arial, Helvetica, sans-serif;
  font-size: 7pt;
/*   font-weight: bold; */
  color: #666;
  text-decoration: none;
  background: url("../images/tab_right.gif") no-repeat right top;
  padding: 5px 8px 4px 0;
}
/* Commented Backslash Hack
   hides rule from IE5-Mac \*/
#tabs a {
  float: none;
}
/* End IE5-Mac Hack */
#tabs a:hover {
  color: #000;
}
#tabs #current {
  background: url("../images/tab_left_sel.gif") no-repeat left top;
}
#tabs #current a {
  color: white;
  background: url("../images/tab_right_sel.gif") no-repeat right top;
  padding-bottom: 5px;
}


.center {
  text-align: center;
}
.centered {
  margin-left: auto;
  margin-right: auto;
}

/* Used for the text blocks on the front page */
div.frontpage
{
  margin: 1em auto 1em auto;
  width: 604px;
  line-height: 1.75em;
  color: #787878;
}

acronym {
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
  cursor: help;
}

/* This should be similar to h3 or there abouts */
dt {
  margin-top: 5px;
  font-weight: bold;
  color: #666;
}

/* Adds cute little bullets before dds on specific dls
 * Doesn't work on IE 6 or below (IE 7 untested) */
.multidl dd:before {
	content: "»";
	margin: 0 0.5em 0 -1em;
}

/* I don't think this is a problem. I can't actually imagine when/why
 * you would ever want that default border around an image. */
img {
  border: none;
}

/* Cute setup (simplified version of Mark's) */
table.display {
  border-collapse: collapse;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}
table.display tr:first-child,
tr.boxed {
  border: 1px solid #999;
}
table.display td {
  border-left: 1px solid #999;
  border-right: 1px solid #999;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}
/* Yet another IE workaround...
 * IE doesn't seem to understand "collapsed" borders; so you have to
 * spoon feed the annoying thing. still doesn't get it right, you have
 * to do the left and right ends by hand */
tr.boxed td,
tr.boxed th {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
tr.boxed th.left {
  border-left: 1px solid #999;
}
tr.boxed th.right {
  border-right: 1px solid #999;
}

/* This is my attempt to layout tables appropriate for imput
 * forms. It's not terrible, but not great.  Mostly this is an
 * adaptation of Mark was doing in an attempt to make it more
 * readable.  */
table.form {
  border-collapse: collapse;
  border-top: hidden;
}
table.form tr {
  border-top: 1px solid #999;
}
table.form td {
  padding-top: 0.5em;
  padding-right: 0.5em;
}

/* Time to do my own report table */
table.search-result {
  margin-right: auto;
  margin-left: auto;
  border: 2px ridge gray;
  border-collapse: collapse;
}
table.search-result th {
  font-weight: bold;
  border: 1px solid gray;
  background-color: #ccc;
}
table.search-result td {
  border: 1px solid gray;
  text-align: center;
}
/* colorize every other table row */
.oddrow {
  /* background-color: #EFECD1; */
}
.evenrow {
  background-color: #EDF1FA;
}
/* hovered table rows */
table.search-result tr.oddrow:hover td,
table.search-result tr.evenrow:hover td,
table.search-result tr.pending:hover td,
table.search-result tr.current:hover td,
table.search-result tr.past:hover td {
  background: #EFECD1;
  color: #000;
}
.legend {
  margin-right: auto;
  margin-left: auto;
  width: 350px;
  padding: 5px;
  /* background: #ece7d8; */
  background: #9CC0FF;
}
.legend div {
  padding: 3px;
}


/* colors for the frontpage items */
.pending {
  background: #EDF1FA;
}
.current {
  background: #FFF;
}
.past {
  background: #fefce6;
}


/* Special hilighted box */
.instruct
{
  font-family: arial, helvetica, sans-serif;
  font-weight: normal;
  font-size: 9pt;
  color: #000;

  /* Sadly, while elegant, IE5 doesn't parse this; so we have to use a table
   * for centering instead. */
  /* margin: 0px auto; */
  /* max-width: 600px; */

  border-left: solid blue;
  border-left-width: 0.75em;

  padding-left: 1em;
}

/* another hilited box. (consider tweaking above to be similar). This
 * is used when providing response text to a submission. */
.notify
{
  padding: 5px;
  background: #9CC0FF;

  font-family: arial, helvetica, sans-serif;
  font-weight: normal;
  color: #000;
}


/* Below is all Mark's stuff (except for the @media stuff at the
 * bottom).  It will be massaged as needed. */
p,li,dd {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10pt;
}
.smalltxt {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 7pt;
}
.tabtxt {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 7pt;
}
A.tabtxt:link {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 7pt;
	text-decoration: none;
}
A.tabtxt:visited {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 7pt;
	text-decoration: none;
}
.smalldesc {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 8pt;
}
.subhead {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14pt;
	font-weight: bold;
	color: #666666;
}
.subsubhead {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12pt;
	font-weight: bold;
	color: #666666;
}
.admul {
	margin-top: 0pt;
}
h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18pt;
	font-weight: normal;
	color: #666666;
}
h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 15pt;
	font-weight: normal;
	color: #666666;
}
h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12pt;
	font-weight: bold;
	color: #666666;
}
.bighead {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16pt;
	font-weight: bold;
	color: #999999;
}
.label {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-weight: bold;
	color: #6D8BA7;
}
.label2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-weight: bold;
	color: #6D8BA7;
}
.lbl {
/*	font-family: Arial, Helvetica, sans-serif; */
	font-size: 9pt;
	color: #6D8BA7;
}
.listinghead {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 9pt;
}
.listing {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 9pt;
}
.listingtown {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14pt;
	font-variant: small-caps;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #B3AFA4;
	padding: .3em;
	margin-top: .5em;
	margin-bottom: .4em;
	width: 242px;
	display: block;
}
li {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10pt;
}
td {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10pt;
}
select {
	font-family: Georgia, "Times New Roman", Times, serif;
	background-color: #EFEFD6;
	border-width: 1px;
	font-size: 10px;
	color: #5E5E32;
}
input {
	font-family: Georgia, "Times New Roman", Times, serif;
	background-color: #EFEFD6;
	border-width: 1px;
	font-size: 10px;
	color: #5E5E32;
}
.lettercell {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #666666;
	background-color: #FCFCF4;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #999999;
}
.blueentry {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #EDF1FA;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-left-style: solid;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
}
td.tabledivider {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #EDF1FA;
}
.grayentry {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #FCFCF4;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #999999;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
}
.graynumber {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #FCFCF4;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-left-color: #999999;
	border-right-style: solid;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	vertical-align: top;
}
.bluenumber {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #EDF1FA;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	border-right-style: solid;
	vertical-align: top;
}
.phonefoot {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	border: 1px solid #999999;
	text-align: right;
}
.phonehead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	border: 1px solid #999999;
	color: #666666;
}
.calhead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	color: #666666;
}
.calday {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-align: center;
	background-color: #cccccc;
	color: #666666;
}
.caloff {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	background-color: #FCFCF4;
	text-decoration: none;
}
.caloff:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	background-color: #FCFCF4;
	text-decoration: none;
}
.calon, .calon:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	background-color: #666666;
	color: #FFFFFF;
	text-decoration: none;
}

/* These allow Mark to create various boxes by specifying whether a
 * box is in the middle, on an end, etc. They differ only in which of
 * the top, right, bottom, left border is 'solid'
 */
.ptshead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #EDF1FA;
	border-top: 1px solid #999999;
	border-right: 1px none #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px none #999999;
}
.ptsallhead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #EDF1FA;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px none #999999;
	border-left: 1px solid #999999;
}
.pts1head {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #EDF1FA;
	border-top: 1px solid #999999;
	border-right: 1px none #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #999999;
}
.ptslhead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #EDF1FA;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px none #999999;
}
.pts1grey {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #FCFCF4;
	border-top: 1px none #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px none #999999;
	border-left: 1px solid #999999;
}
.ptsgrey {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #FCFCF4;
	border-top: 1px none #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px none #999999;
	border-left: 1px none #999999;
}
.ptssubhead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FcFcF4;
	background-color: #999999;
	border-top: 1px none #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px none #999999;
	border-left: 1px none #999999;
}
.pts1blue {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #EDF1FA;
	border-top: 1px none #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px none #999999;
	border-left: 1px solid #999999;
}
.ptsblue {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #EDF1FA;
	border-top: 1px none #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px none #999999;
	border-left: 1px none #999999;
}
.ptsfoot {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #FCFCF4;
	border: 1px solid #999999;
}
.ptsfootl {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	background-color: #FCFCF4;
	border: 1px solid #999999;
}
.ptsheadl {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	background-color: #FCFCF4;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	border-left: 1px solid #999999;
	border-bottom: 1px none #999999;
}
.ptslfoot {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #FCFCF4;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px none #999999;
}
.ptsallfoot {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background-color: #FCFCF4;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #999999;
}
.bluecell {
	font-size: 10px;
	color: #666666;
	background-color: #EDF1FA;
}
.greycell {
	font-size: 10px;
	color: #666666;
	background-color: #FCFCF4;
}
.tiny {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 7pt;
}
.offertop {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	color: #666666;
	border-right: 1px dashed #999999;
	border-top: 1px dashed #999999;
	border-left: 1px dashed #999999;
}
.offermiddle {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #666666;
	border-right: 1px dashed #999999;
	border-left: 1px dashed #999999;
}
.offerbottom {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 8px;
	color: #333333;
	border-right: 1px dashed #999999;
	border-bottom: 1px dashed #999999;
	border-left: 1px dashed #999999;
}
.links {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #999999;
	margin: .5em;
}
a.links:link {
	color: #FFFFFF;
	text-decoration: none;
	margin: .5em;
}
a.links:visited {
	color: #FFFFFF;
	text-decoration: none;
	margin: .5em;
}
.error {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
  font-weight: bold;
  color: #CC0000;
  margin: .5em;
}

/* Elements which are handled differently when printed */
@media print
{
  body        { background: none; }
  .printonly  { display: block; }

  .noprint    { display: none; }
  #menu-bar   { display: none; }
  #main       { margin-left: 0px; }
  #outer      { border: none; }
}

