/*
 * Javascript WYSIWYG HTML control
 * Version 0.1
 *
 * Copyright (c) 2004 Paul James
 * All rights reserved.
 *
 * This software is covered by the BSD License, please find a copy of this
 * license at http://peej.co.uk/sandbox/wysiwyg/
 */

/*
body {
    font-family: arial;
    background: #fed;
    margin: 0;
    padding: 10px;
}


h1, h2, h3, p {
    margin: 5px 0;
    padding: 0;
}

input {
    margin: 10px 0;
}
textarea {
    width: 600px;
    height: 150px;
}


*/

.wysiwyg iframe {
    direction: rtl;
    width: 600px;
    height: 150px;
    /* the below line was removed on 2011-06-08
    *height: 158px; /* IE */
    
}


div.toolbar {
    width: 600px;
    height: 26px;
    background-color: #ccc;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
}

div.toolbar a, div.toolbar span {
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    margin: 2px;
    cursor: pointer;
    text-indent: -9999px;
    background-color: #ccc;
    background-position: center center;
    border: 1px solid #ccc;
}

div.toolbar a:hover, div.toolbar span:hover {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
}

div.toolbar div.divider {
    float: left;
    width: 0;
    height: 20px;
    border-left: 1px solid #fff;
    border-right: 1px solid #333;
    margin: 2px;
}

div.toolbar a.toolbarButton0, div.toolbar span.toolbarButton0 { background-image: url(../img/wysiwyg/link.png); }
div.toolbar a.toolbarButton1, div.toolbar span.toolbarButton1 { background-image: url(../img/wysiwyg/unlink.png); }
div.toolbar a.toolbarButton2, div.toolbar span.toolbarButton2 {
    width: auto;
    height: 16px;
    text-indent: 0;
    color: #000;
    font-size: 70%;
    text-decoration: none;
    padding: 2px;
}


