/********************************************************************
 * Filename: screen.css                                             *
 * Language: CSS (Cascading Style Sheets) 2.1                       *
 *                                                                  *
 * Author: Jason Liu                                                *
 *                                                                  *
 * Copyright (c) 2005-2006 Jason Liu. All rights reserved.          *
 *                                                                  *
 * Legal Disclaimer:                                                *
 *                                                                  *
 *     [Taken from                                                  *
 *         http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q3.5.html]  *
 *                                                                  *
 *     This is UNPUBLISHED PROPRIETARY SOURCE CODE of Jason Liu;    *
 *     the contents of this file may not be disclosed to third      *
 *     parties, copied or duplicated in any form, in whole or in    *
 *     part, without the prior written permission of Jason Liu.     *
 *                                                                  *
 *     Permission is hereby granted solely to the licensee for use  *
 *     of this source code in its unaltered state. This source code *
 *     may not be modified by licensee except under direction of    *
 *     Jason Liu. Neither may this source code be given under any   *
 *     circumstances to non-licensees in any form, including source *
 *     or binary. Modification of this source constitutes breach of *
 *     contract, which voids any potential pending support          *
 *     responsibilities by Jason Liu. Divulging the exact or        *
 *     paraphrased contents of this source code to unlicensed       *
 *     parties either directly or indirectly constitutes violation  *
 *     of federal and international copyright and trade secret      *
 *     laws, and will be duly prosecuted to the fullest extent      *
 *     permitted under law.                                         *
 *                                                                  *
 *     This software is provided by Jason Liu "as is" and any       *
 *     express or implied warranties, including, but not limited    *
 *     to, the implied warranties of merchantability and fitness    *
 *     for a particular purpose are disclaimed. In no event shall   *
 *     the regents or contributors be liable for any direct,        *
 *     indirect, incidental, special, exemplary, or consequential   *
 *     damages (including, but not limited to, procurement of       *
 *     substitute goods or services; loss of use, data, or profits; *
 *     or business interruption) however caused and on any theory   *
 *     of liability, whether in contract, strict liability, or tort *
 *     (including negligence or otherwise) arising in any way out   *
 *     of the use of this software, even if advised of the          *
 *     possibility of such damage.                                  *
 *                                                                  *
 * Description:                                                     *
 *                                                                  *
 *     Cascading style sheet for computer screens (i.e. Web         *
 *     browsers).                                                   *
 ********************************************************************/

body {
	margin:  0;
	padding: 1em 5%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: smaller;
}

/***** Entries related to the header section *****/
#header {
	margin:  1em 0 0;
	padding: 0;
	width: 100%;
	height: 200px;
	color: inherit;
	background: #FFFFFF
	            url("../media/images/backgrounds/gradient_3333FF-FFFFFF_200px.jpg")
	            repeat-x
	            0 0;
	text-align: center;
}

/***** Entries related to the main content section *****/
#main {
	width: 95%;
	float: left;
	margin-right: -17em;
}
/*** Begin commented backslash hack section. This section is needed to
     get the margin between the navigation menu and the main content
     area to work properly in Win/IE. **\*/
* html #main { margin-right: -18.5em; }
/*** End of commented backslash hack section. ***/
#content {
	/* Make sure border-left color is the same color and width
	   as the navigation menu background color */
	border-right: 16.5em solid #FFFFFF;
	padding-right: 2em;
}

#centertext1 {
	text-align: center;

}

}

#centertext7 {
	text-align: center;

}
}

#centertext1b {
	text-align: center;

}
}

#centertext1c {
	text-align: center;

}

#centertext2 {
	text-align: center;

}


#centertext4 {
	text-align: center;
	font-size: 200%

}

#centerpic1 {
margin: 0 35px 25px 80px;

}
/*** Begin commented backslash hack section. This section is needed to
     get the border color of the content 'div' to match the background
     color of the rest of the body area, because Win/IE does not support
     a border color of "transparent". **\*/
* html #main #content { border-right: 17em solid #FFFFFF; }
/*** End of commented backslash hack section. ***/
#content_heading {
	margin: 4em 0 0.67em;
	border-bottom: thin solid #999999;
	padding-bottom: 1em 0 1em;
	color: #00CC66;
	background-color: inherit;
}
* html #content_heading { margin-top: 3em; }
#content p { margin: 0 0 1.12em; }

#carcare1 {

	font-size: 135%;
	color: #00CC66;
	margin: 0 0 0.67em;
	border-bottom: thin solid #999999;
	border-top: thin solid #999999;
}


#question { 
}

/***** Entries related to the navigation section *****/
#navigation {
	width: 17em;
	float: right;
	margin-bottom: 1em;
}
#main_navmenu {
	margin: 0;
	border-left: thin solid #999999;
	padding: 1em;
	list-style: none;
}
#main_navmenu a { width: 100%; text-decoration: none; }
#navigation > #main_navmenu a { display: block; }
#main_navmenu a:link, #main_navmenu a:visited, #main_navmenu a:active {
	color: #3333FF;
	background-color: inherit;
}
#main_navmenu a:hover {
	color: #00CC66;
	background-color: inherit;
}
#PAT_phone_number { margin-top: 1.12em; }

/***** Entries related to the footer section *****/
#footer_container {
/*	position: relative; */ /* Needed for Safari (setFooter.js) */
	clear: both;
	margin: 0.5em 0.5em 0.5em 0;
	border-top: thin solid #999999;
	padding: 1em 0 1em;
}
#footer a:link, #footer a:visited, #footer a:active {
	color: #3333FF;
	background-color: inherit;
	text-decoration: none;
}
#footer a:hover {
	color: #00CC66;
	background-color: inherit;
	text-decoration: underline;
}




/********************************************************************
 ******************* End of cascading style sheet *******************
 ********************************************************************/

