﻿/* BaseStyleSheet.css
 *
 * Contains only CSS definitions for a particular page
 *  Ex: .MyStyle or #MyElementId
 *  NOT: Body, Fieldset, Table, etc.
 *
 * Notes:
 *     - Please use pt for font-sizes instead of px.
 *       For more info, go to http://www.bigbaer.com/css_tutorials/css_font_size.htm
 *
 *
 */

body
{
    font-size: 8pt;
    color: black;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    background-color: White;
	margin: 0 0 0 0;
}

fieldset legend
{
	margin-bottom: 5px;
}

fieldset
{
	margin-top: 5px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 5px;
	padding: 0px 0px 0px 0px;
}


input
{
	font-size: 8pt;
}

select
{
	font-size: 8pt;
}