/***************************************************************************
 *                                common.css
 *                            ------------------
 *	 AUTHOR				  : Kevin K. Nelson
 *   EMAIL                : http://www.w3webservices.com/contact_us.php
 *   COPYRIGHT            : (C) 2008 w3webservices.com - ALL RIGHTS RESERVED
 *
 *   LAST UPDATED         : 2009-01-30
 *
 ***************************************************************************/

/*******************************************************************
 * TAG DEFINITIONS
 *******************************************************************/
html  { width:100%; height:100%; }
body  { width:100%; height:100%; margin:0px 0px 0px 0px; background-color:white; color:black; }
table { border-spacing:0px; border-collapse:collapse; }
td    { padding:0px 0px 0px 0px; vertical-align:top; }
form  { margin:0px 0px 0px 0px; }

fieldset { display:block; margin-top:0px; margin-bottom:12px; }
legend   { font-size:14px; font-weight:bold; color:black; }
label	 { font-size:12px; font-weight:bold; }

/* DEFAULT FONT SETTING */
table, td, div, p, blockquote, h1, h2, h3, h4, h5, h6, ul, ol {
	margin-top:			0px;
	font-family:		Verdana, Arial, Helvetica, sans-serif;
	color:				inherit;
}
textarea, input, select {
	font-family:		Verdana, Arial, Helvetica, sans-serif;
	font-size:			12px;
}

/* FONT SIZES & BOTTOM MARGINS */
h1 { font-size:24px;margin-bottom:24px; }
h2 { font-size:20px;margin-bottom:20px; }
h3 { font-size:16px;margin-bottom:16px; }
h4 { font-size:14px;margin-bottom:14px; }
td, p, blockquote, ul, ol, h5, h6 { font-size:12px;margin-bottom:12px; }
div { font-size:12px; }

/* ALIGNMENT */
p, blockquote, li { text-align:justify; }

/* SET BORDER-DEFAULT COLOR/STYLE, BUT SET 0px SIZE */
img, table, tr, td, form, div, p, blockquote, h1, h2, h3, h4, h5, h6, ul, ol {
	border-color: #CCCCCC;
	border-style: dotted;
	border-width: 0px 0px 0px 0px;
}

/* SET DEFAULT LINK COLORS */
a:link, a:visited { color:#0000CC; }
a:hover, a:active { color:#CC0000; }
/*******************************************************************
TABLE CLASSES
   - classes for use with table rows and table cells
*******************************************************************/
.center_table    { margin-left:auto; margin-right:auto; }

.form_table .left,  .left_form_cell  { padding:3px 3px 3px 3px; border-width:0px 0px 1px 0px; }
.form_table .right, .right_form_cell { padding:3px 3px 3px 3px; border-width:0px 0px 1px 0px; text-align:right; }
.info_table .left,  .left_info_cell  { padding:3px 3px 3px 3px; border-width:0px 0px 0px 0px; }
.info_table .right, .right_info_cell { padding:3px 3px 3px 3px; border-width:0px 0px 0px 0px; text-align:right; }

.list_table th, .title_cell      { padding:5px 5px 5px 5px; font-size:14px; font-weight:bold; white-space:nowrap; }
.list_table td, .content_cell    { padding:5px 5px 5px 5px; }

.row1         { background-color:#FFFFFF; }
.row2         { background-color:#EDEDED; }
.row_selected { background-color:#FFFF99; }

/* .clickable_cell and .clickable_cell_on are used with the cms-full
   application.  They are designed to be used so that JavaScript can
   toggle the BG color of a cell onmouseover and toggle back onmouseout. */
.row1 .clickable_cell { background-color:#FFFFFF; }
.row2 .clickable_cell { background-color:#EDEDED; }
.clickable_cell_on    { background-color:#FFFFCC; }
.clickable_cell, .clickable_cell_on { cursor:pointer; padding:5px 5px 5px 5px; }

.top    { vertical-align: top; }
.middle { vertical-align: middle; }
.bottom { vertical-align: bottom; }

/*******************************************************************
BLOCK CLASSES
   - classes for block-level tags, such as <div>, etc.
*******************************************************************/
.center_block { display:block; margin-left:auto; margin-right:auto; }

.page_title { font-size:20px; font-weight:bold; margin-bottom:20px; color:black; }
.heading    { font-size:14px; font-weight:bold; margin-bottom: 0px; color:black; }

.bordered    { border-width:1px 1px 1px 1px; }
.noborder    { border-width:0px 0px 0px 0px; }
.line_top    { border-top-width:1px; }
.line_right  { border-right-width:1px; }
.line_bottom { border-bottom-width:1px; }
.line_left   { border-left-width:1px; }

.left    { text-align: 	left; }
.center  { text-align: 	center; }
.right   { text-align: 	right; }
.justify { text-align: 	justify; }

.block      { display:	block; }
.no_display { display:	none; }

.no_margin   { margin: 0px 0px 0px 0px; }
.half_margin { margin-bottom: 6px; }

.pad_sm { padding: 5px 5px 5px 5px; }
.pad_md { padding: 10px 10px 10px 10px; }
.pad_lg { padding: 15px 15px 15px 15px; }
/*******************************************************************
FORM CLASSES
   - for some form consistency, set the form elements' classes to
     default.
*******************************************************************/
input.default    { width:200px; }
select.default   { width:200px; }
textarea.default { width:200px; height:80px; }
textarea.full    { display:block; width:99%; margin-left:auto; margin-right:auto; height:250px; }
sup.req          { color:#CC0000;font-weight:bold;font-size:10px; }

/*******************************************************************
TEXT CLASSES
   - These are "inline" classes.  They can be applied to any tag but
     do not require it to be block-level, etc.
*******************************************************************/
.small_descr { font-size:10px; font-weight:bold; }

.xsmall { font-size: 9px; }
.small  { font-size: 10px; }
.normal { font-size: 12px; }
.medium { font-size: 14px; }
.large  { font-size: 16px; }
.xlarge { font-size: 20px; }
.huge   { font-size: 24px; }

.bold      { font-weight: bold; }
.no_bold   { font-weight: normal; }
.italic    { font-style:  italic; }
.no_italic { font-style:  normal; }

.small_caps { font-variant: small-caps; }

.red   { color: #CC0000; }
.navy  { color: navy; }
.black { color: black; }
.white { color: white; }

/*******************************************************************
OUR PHP LIBRARY'S status_message() CLASS DEFINITIONS
   - like the table classes, these are specific to the application,
     and can be removed for static sites.
*******************************************************************/
.status_container {
	margin:				20px 10px 20px 10px;
	padding:			3px 5px 3px 5px;
}
.status_title {
	font-size:			16px;
	font-weight:		bold;
	border-style:		solid;
	border-width:		0px 0px 1px 0px;
	border-color:		black;
}
.status_message {
	font-size:			12px;
}
/*******************************************************************
PAGING CLASSES
   - default settings for classes used by Pagination.class.php
*******************************************************************/
.tpageblock { border-width:0px 0px 1px 0px;border-color:navy;border-style:dotted;padding-bottom:6px;margin-bottom:6px; }
.bpageblock { border-width:1px 0px 0px 0px;border-color:navy;border-style:dotted;padding-top:6px;margin-top:6px; }
.paging     { cursor:default;text-align:right; }
.paging a {
    display:            inline;
    border:             1px solid black;
    font-size:          12px;
    font-weight:        bold;
    padding:            2px 5px 2px 5px;
    height:             20px;
    line-height:        16px;
}
.paging a:link, .paging a:visited {
    text-decoration:    none; 
    color:              navy;
    background-color:   white;
}
.paging a:hover, .paging a:active{
    text-decoration:    none; 
    color:              black;
    background-color:   #FFFFCC;
}
.paging a.current, .paging a:link.current, .paging a:visited.current, .paging a:hover.current, .paging a:active.current {
    background-color:   navy;
    color:              white;
    cursor:             default;
}
.paging a.disabled, .paging a:link.disabled, .paging a:visited.disabled, .paging a:hover.disabled, .paging a:active.disabled {
    border:             1px solid #CCCCCC;
    font-weight:        normal;
    color:              #CCCCCC;
    background-color:   white;
    cursor:             default;
}

