/* -----------------------------------------------------------------------
// base.css - Style sheet for the iframe content
//
// 2007.04.26 J.Hanson - Page Created
// 2007.10.17 J.Barnett - Customized for PBC Law Firm
// --------------------------------------------------------------------- */

body {
	background-color: #FFFFFF;	/* Overall page canvass color */
	font-family: Verdana, Arial, Helvetica, sans-serif; /* default font */
	font-size: 18px;
}

.contentArea {
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 12px;
	line-height: 17px;
}

.footer {
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 9px;
	font-weight: 500;
	line-height: 17px;
}

.footer p{
  margin: 0;
}


a img { /* All images should not have a border by default */
	border: 0px; 
}

.button {	/* generic class for user buttons */
	font-size: 12px;
	padding: 0px 12px; 
	background: #AAAAAA; 
	border: solid 1px black;
	cursor: pointer;
}

.hidden {	/* General purpose class for any items that need to be hidden from view */
	display: none;
	visibility: hidden;
}

h1, h2, h3, h4, h5, h6 { /* Headings are all the same, by default */
	font-size: 14px;
	color: black;
}


	/* Subpages */
	ul#subpages {
		margin: 1.5em 0 0;
		list-style: none;
	}

	ul#subpages li a:link {
		text-decoration: none;
	}

	ul#subpages li a:visited {
		text-decoration: none;
	}

	ul#subpages li a:hover {
		text-decoration: underline;
	}
	
  /* Forms */
  form fieldset {
    margin: auto;
  }

  form fieldset.hfieldset {
    border: 0;
    width: 40em;
    margin: 0 auto;
    text-align: left !important;
  }


  form div.hfield {
    float: left;
  }

  form div.inline-hfield {
    margin: 0.25em auto;
    width: 30em;
    clear: both;
    text-align: left;
  }

  /* Plus is the adjacent sibling 
   * CSS selector
   */ 
  div.hfield+div.field {
    padding-top: 1em;
  }

  div.field+div.inline-hfield {
    padding-top: 1em;
  }

form div.field {
    margin: 0.25em auto;
    vertical-align: middle;
    clear: both;
  }  

  form div.field label, form div.inline-hfield label, form div.hfield label {
    font-weight: bold;
  }

  * html form label.required {
    /* Fix for displaying asterisks next to required fields on IE */
    content: expression(
        this.parsed ? 0 : 
          (insertAdjacentHTML('afterBegin', '<span style="color: red">*</span>')),
          this.parsed = 1
        );
  }

  form label.required:before{
    content: "*";
    font-weight: bold;
    color: red;
  }

  form div.field {
    text-align: left;
  }

  form div.field label {
    width: 15em;
    text-align: right;
    float: left;
    margin-right: 1em;
  }


  form div.submit {
    margin: 1em auto 0;
    text-align: center;
    width: 100%;
  }

	/* Login status and login form */
	#login_status {
		display: none;
		visibility: hidden;
	}
	
	
	/* Content pane */
	#content_window {
		margin: 10px 25px;
		min-height: 200px; height:auto !important; height: 200px; 	/* crazy internet-explorer workaround. */
	}
	
	.replace {
		font-size: 16px;
		visibility: hidden;
	}

