@charset "utf-8";
/* CSS Document 
*        Document Name: html_elements.css
*        Description:   Styles HTML elements that are common to all themes.
*/

/* **************************************************************
   DO NOT edit this file!
   Customize one of the default themes or copy a default theme
   and produce your own.
   **************************************************************
*/

html, body  {
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}

body, caption, input, textarea, select, option, legend, fieldset  {
}

option {
	font-size: 1em;
}

th, td {
	vertical-align: top;
}

pre, code {
	font-size: 1.1em; /* Monospace fonts can be hard to read */
	font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
}

p {
	margin: 0 0 .8em 0;
}

/* Links */

a:link {
	color: #990000;
	text-decoration: none;
}

a:visited {
	color: #990000;
	text-decoration: none;
}

a:hover, a:focus {
	color: #0000CC;
	text-decoration: underline;
}

a:active {
	color: #0000CC;
	text-decoration: underline;
}

/** headings **/
h1 {
	font-size: 1.8em;
}

h2 {
	font-size: 1.3em;
}

h3 {
	font-size: 1.1em;
}

h4, h5, h6  {
	font-size: 1.1em;
	line-height: 1.3em;
	margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
	margin-bottom: 0.909em;
}

/** lists **/
  /* standardize list item indentation */
ul, ol {
	padding-left: 2em;
}

ul ul, ul ol, ol ol, ol ul {
}

li {
	padding-left: .7em;
}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }


dt  {
	margin: 0;
	padding: 0;
}

dd {
	margin: 0 0 0 2em;
	padding: 0;
}


/** tables **/
table  {
	border-collapse: collapse;
}

/** images **/
img  {
	border: 0;
}

/** horizontal rules **/
hr  {
	height: 1px;
	border: 1px solid #000000;
}

/** forms **/
form {
	margin: 0;
	padding: 0;
}

button, menu, textarea, label, submit, .submit, select, input {
	font-size: .95em;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	min-height: 15px;
	vertical-align: middle;
	padding: 2px;
}

select, optgroup, option  {
	font-size: .9em;
	height: auto;
}

textarea {
	font-size: .95em;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	min-height: 15px;
	vertical-align: top;
	padding: 2px;
}

label {
	border: 0;
	font-weight: bold;
	padding: 6px;
	cursor: pointer;
}