/******************************************************************************
** 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: 28px;
	height: 25px;
	overflow: hidden;
	background-repeat: no-repeat;
	text-indent: -1000em;
	text-decoration: none;
}

.widgToolbar a:hover
{
	background-position: 0px -25px no-repeat;
}
/*
.widgToolbar a:active
{
	margin-top: 2px;
	margin-left: 2px;
	background-position: 0px 0px no-repeat;
}
*/
.widgToolbar li.widgEditButton
{
	/*background-image: url(../images/button_shadow.gif);
	background-repeat: no-repeat;
	background-position: bottom right;*/
}

.widgButtonBold
{
	background-image: url(../images/button_bold.gif); background-position: 0px 0px no-repeat;
}

.widgButtonHTML
{
	background-image: url(../images/button_html.gif);  background-position: 0px 0px no-repeat;
}

.widgButtonItalic 
{
	background-image: url(../images/button_italic.gif);  background-position: 0px 0px no-repeat;
}

.widgButtonImage 
{
	background-image: url(../images/button_image.gif);  background-position: 0px 0px no-repeat;
}

.widgButtonLink
{
	background-image: url(../images/button_link.gif);  background-position: 0px 0px no-repeat;
}

.widgButtonOrdered
{
	background-image: url(../images/button_ordered.gif);  background-position: 0px 0px no-repeat;
}

.widgButtonUnordered
{
	background-image: url(../images/button_unordered.gif);  background-position: 0px 0px no-repeat;
}

.widgSource a
{
	background-image: url(../images/button_empty.gif);  background-position: 0px 0px no-repeat;
	cursor: default;
}

.widgSource .widgButtonHTML
{
	background-image: url(../images/button_html.gif);  background-position: 0px 0px no-repeat;
}


.widgButtonEnlarge
{
	background-image: url(../images/button_enlarge.gif); background-position: 0px 0px no-repeat;
}

.widgButtonShrink
{
	background-image: url(../images/button_shrink.gif); background-position: 0px 0px no-repeat;
}

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



/* TOOLBAR */

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

* html .widgToolbar
{
	width: auto;
}

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




/* EDITING AREA */

.widgIframe
{
	clear: left;
	/*width: 100%;*/
	width: 100%;
	height: 300px;
	border-top-width: 1px;
}

.widgContainer textarea.widgEditor
{
	clear: left;
	width: 100%;
	/*width: 600px;*/
	height: 300px;
	border-top-width: 1px;
	padding: 0;
}




/* EDITOR CONTAINER */

.widgContainer
{
width: 500px;
}