/* CSS FOR MILLER LAW WEB */
/* AUTHOR: GOLDEN KRISHNA */
/* WWW.GOLDENKRISHNA.COM  */


/* GENERAL */

	/* Body Text */
	body {
		background-color: #fff;
	}
	
	a {
		color: #000;
		padding: 3px;
		text-decoration: underline;
	}
	
	a:hover {
		color: #fff;
		background-color: #000;
		text-decoration: underline;
	}
	
	h2 {
		font-size: 12px;
		font-weight: bold;
	}

/* TABLE 1 */

	#table_1 {
		padding-top: 35px;
	}

/* TABLE 2 */

	#table_2 {
		background-color: #fff;
		border: 0px; 
		text-align: left;
	}

/* MAIN MENU/NAVIGATION */
	
	#menu {
		vertical-align: top;
		padding-left: 5px;
		padding-top: 14px;
		background-color: #000;
	}

	#menu a {
		color: #fff;
		padding: 3px;
		text-decoration: none;
	}
	
	#menu a:hover {
		color: #000;
		background-color: #fff;
		text-decoration: none;
	}
	
/* HOME */

	#pr_box {
		padding: 8px;
		vertical-align: center;
	}
	
	#link_box {
		padding: 8px;	
	 	background-color: #c6c6c6;
	}
	
/* PAGES NOT HOME */

	#page_title {
		font: 12px georgia;
		font-weight: bold;
		padding-left: 8px;
		height: 32px;
	}
	
	#copy {
        float: left;
		padding-top: 8px;
		padding-left: 8px;
		padding-right: 3px;
	}


/* WIDGEDITOR */

/* TEXTAREA (golden's addition) */
.noise {
	font: 11px/18px georgia;	
}

.widgEditor nothing {
	font: 11px/18px georgia;
}

/******************************************************************************
** STRUCTURE OF DYNAMICALLY CREATED ELEMENTS
*******************************************************************************
**
** <div id="ORIGINAL_IDWidgContainer" class="widgContainer">
**     <ul id="ORIGINAL_IDWidgToolbar" class="widgToolbar">
**         <li id="BUTTON_ID" class="widgEditButton">
**             <a></a>
**         </li>
**         <li class="widgEditSelect">
**             <select>
**             </select>
**         </li>
**     </ul>
**     <iframe id="ORIGINAL_IDWidgIframe" class="widgIframe">
**     </iframe>
**     <textarea id="ORIGINAL_IDWidgTextarea" class="widgEditor">
**     </textarea>
** </div>
*/

/* TOOLBAR BUTTONS */

.widgToolbar a
{
	display: block;
	width: 30px;
	height: 24px;
	overflow: hidden;
	background-repeat: no-repeat;
	text-indent: -1000em;
	text-decoration: none;
}

.widgToolbar a:hover
{
	background-position: 0 -30px;
}

.widgToolbar a:active
{
	margin-top: 2px;
	margin-left: 2px;
	background-position: 0 -60px;
}

.widgToolbar li.on a, .widgToolbar li.on a:hover
{
	background-position: 0 -60px;
}

.widgToolbar li.widgEditButton
{
	background-image: url(../images/widgEditor/widgeditor_button_shadow.gif);
	background-repeat: no-repeat;
	background-position: bottom right;
}

.widgButtonBold
{
	background-image: url(../images/widgEditor/widgeditor_button_bold.gif);
}

.widgButtonHTML
{
	background-image: url(../images/widgEditor/widgeditor_button_html.gif);
}

.widgButtonImage 
{
	background-image: url(../images/widgEditor/widgeditor_button_image.gif);
}

.widgButtonItalic 
{
	background-image: url(../images/widgEditor/widgeditor_button_italic.gif);
}

.widgButtonLink
{
	background-image: url(../images/widgEditor/widgeditor_button_link.gif);
}

.widgButtonOrdered
{
	background-image: url(../images/widgEditor/widgeditor_button_ordered.gif);
}

.widgButtonUnordered
{
	background-image: url(../images/widgEditor/widgeditor_button_unordered.gif);
}

.widgSource a
{
	background-image: url(../images/widgEditor/widgeditor_button_empty.gif);
	cursor: default;
}

.widgSource li.on a, .widgSource li.on a:hover
{
	background-position: 0 0;
}

.widgSource .widgButtonHTML
{
	background-image: url(../images/widgEditor/widgeditor_button_html.gif);
}

.widgSource .widgButtonHTML:hover
{
	cursor: pointer;
}




/* TOOLBAR */

.widgToolbar
{
	list-style: none;
	width: 100%;
	height: 48px;
	margin: 0;
	padding: 0 0 0 2px;
	/* border: 1px solid #CCCCCC; */
	/* background-image: url(../images/widgEditor/widgeditor_toolbar_bg.gif);
	background-repeat: repeat-x; */
	background-color: #CCCCCC;
}

* html .widgToolbar
{
	width: auto;
}

.widgToolbar li
{
	display: inline;
	float: left;
	width: 32px;
	height: 32px;
	margin-top: 9px;
	margin-left: 7px;
	line-height: 30px;
}




/* EDITING AREA */

.widgIframe
{
	clear: left;
	width: 100%;
	height: 200px;
	border-top-width: 0px;
}

.widgContainer textarea.widgEditor
{
	clear: left;
	width: 100%;
	height: 200px;
	border-top-width: 0px;
	padding: 0;
}




/* EDITOR CONTAINER */

textarea .widgContainer
{
}