<style>
/* These create the flashes */
@-webkit-keyframes hover {
    0% { background: #000000 }
    100% { background: orange }
}
@-moz-keyframes hover {
    0% { background: #000000 }
    100% { background: orange }
}
@-ms-keyframes hover {
    0% { background: #000000 }
    100% { background: orange }
}
@-o-keyframes hover {
    0% { background: #000000 }
    100% { background: orange }
}
@keyframes hover {
    0% { background: #000000 }
    100% { background: orange }
}

ul#darkmenu {
    margin-top: 3%;
    display: inline-block;
    list-style: none;
    font-family: 'Gudea', sans-serif;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
ul#darkmenu li {
    -webkit-transition: -webkit-box-shadow, background 0.2s linear;
    -moz-transition: -moz-box-shadow, background 0.2s linear;
    -ms-transition: -moz-box-shadow, background 0.2s linear;
    -o-transition: -o-box-shadow, background 0.2s linear;
    transition: box-shadow, background 0.2s linear;
    background: #787878;
    float: left;
    font-size: 13px;
    text-transform: uppercase;
    -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), 0px 1px 2px rgba(0,0,0,0.3), inset -1px 0px 0px rgba(255, 255, 255, 0.1), inset 1px 0px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), 0px 1px 2px rgba(0,0,0,0.3), inset -1px 0px 0px rgba(255, 255, 255, 0.1), inset 1px 0px 0px rgba(0,0,0,0.2);
    box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), 0px 1px 2px rgba(0,0,0,0.3), inset -1px 0px 0px rgba(255, 255, 255, 0.1), inset 1px 0px 0px rgba(0,0,0,0.2);
}
ul#darkmenu li:first-child {
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-radius: 10px 0px 0px 10px;
    border-radius: 10px 0px 0px 10px;
}
ul#darkmenu li:last-child {
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-radius: 0px 10px 10px 0px;
    border-radius: 0px 10px 10px 0px;
}
ul#darkmenu li:hover {
    -webkit-animation: hover 0.5s 1;
    -moz-animation: hover 0.5s 1;
    -ms-animation: hover 0.5s 1;
    -o-animation: hover 0.5s 1;
    animation: hover 0.5s 1;
    background: orange;
}
ul#darkmenu li:active {
    background: #05303c;
    -webkit-box-shadow: inset 0px -1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px 2px 4px rgba(0,0,0,0.4);
    -moz-box-shadow: inset 0px -1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px 2px 4px rgba(0,0,0,0.4);
    box-shadow: inset 0px -1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px 2px 4px rgba(0,0,0,0.4);
}
ul#darkmenu li a {
    padding: 10px;
    display: block;
    color: white;
    text-decoration: none;
}
ul#darkmenu li:active a { padding: 11px 10px 9px 10px }



.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 4;
  font-size:11px;
  text-decoration: none;
  font-family:'Open Sans';
}
.ui-widget-header {
  border: 0;
  background: transparent;
  font-family:'Open Sans';
}
.ui-tabs .ui-tabs-panel {
  padding: 0;
  font-family:'Open Sans';
}
p {
  margin:0;
  padding:0;
  font-size:11px;
  font-family:'Open Sans';
}
table {
  font-family:'Open Sans';
}


.draggable
{
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;

    cursor: hand;
    cursor: pointer;
}

.resizable
{
    width: 100px;
    border: 1px solid #bb0000;
}
.resizable img
{
    width: 100%;
}

.ui-resizable-handle
{
    background: orange;
    border: 0;
    width: 9px;
    height: 9px;

    z-index: 2;
}
.ui-resizable-handle-blue
{
    background: orange;
    border: 0;
    width: 9px;
    height: 9px;

    z-index: 2;
}
.ui-resizable-se
{
    right: -5px;
    bottom: -5px;
}

.ui-rotatable-handle
{
    background: orange;
    border: 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-border-radius: 5px;
    cursor: pointer;

    height:        10px;
    left:          50%;
    margin:        0 0 0 -5px;
    position:      absolute;
    top:           -5px;
    width:         10px;
}

.ui-rotatable-handle.ui-draggable-dragging
{
    visibility:  hidden;
}


#panel {
    position:absolute;
    top:0;
    right:0;
    width: 500px;
    height: 100%;
    display: none;
    background: rgba(255,165,0,.90);
    border-left:1px solid orange;
    z-index:999;
}




</style>



