/**
 * @file
 *    CSS for the jQuery.dashboard() plugin.
 *
 * Released under the GNU General Public License.  See LICENSE.txt.
 */

#leftbar{
	display:none;
}

.column {
	float: left;
	clear: none;
	width: 50%;
	margin: 0;
	/* padding-bottom and min-height make sure that there is always a sizable drop zone. */
	min-height: 30px;
	padding: 0px;
	list-style-type: none;
	position:relative;
	top:-10px;
}
  /* The placeholder that indicates where a dragged widget will land if dropped now. */
.placeholder {
    margin: 0px;
	padding:0px;
    border: 3px dashed #c9b289;
}
  /* Spacing between widgets. */
  li.widget, li.empty-placeholder { margin: 6px 3px; }
  li.widget { }
   
.widget{
	 background-color:white;
	background-image:url(/images/css2/widget_middle.png);
	font-size:12px;
	width:360px;
}

 /* Spacing inside widgets. */
.widget-wrapper { 
	padding: 0px;
}

.widget-header {
	/* Make sure the mouse cursor reflects the behaviour on hover. */
	cursor: move;
	background-color:#ffffff;
	color:#aaaaaa;
	text-align:right;
	font-size:10px;
	padding:4px;
	padding-right:10px;
	background-image:url(/images/css2/widget_top.png);
	background-repeat:none;
	height:12px;
	overflow:hidden;
}


/* Make the throbber in-yer-face. */
.throbber {
  padding: 50px;
  text-align: center;
  background: #eee;
}

/* Widgets can have different 'categories'. */
li.search { border-color: orange; }
li.search .widget-header { color: orange; }

li.social { border-color: purple; }
li.social .widget-header { color: purple; }

/* Demonstrates the usage of multiple classes on one widget. */
li.highlight { background: #ffe; }

#DashboardDiv{
	
}




.widget-footer {
	/* Make sure the mouse cursor reflects the behaviour on hover. */
	background-color:#ffffff;
	background-image:url(/images/css2/widget_bottom.png);
	background-repeat:no-repeat;
	height:10px;
	width:360px;
	overflow:hidden;
}

/* Standards-browsers do this anyway because all inner block elements are floated.  IE doesn't because it's crap. */
.widget-controls { display: inline; }
.widget-icon, .full-screen-close-icon img {
  margin-left: 2px;
	margin-right:2px;
	height:8px;
	width:8px;
  /* Although these are <a> links, they don't have href="" attributes. */
  cursor: pointer;
	position:relative;
	top:1px;
}

.widget-content{
	padding:8px;
}

#full-screen-header {
  display: block;
  padding: .2em .4em;
  border: 1px solid black;
  background: #eee;
  /* Although this is an <a> link, it doesn't have an href="" attribute. */
  cursor: pointer;
}
