/**
 * FRAMEWORK THEME STYLES TO ADD
 */

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user.
 */

.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */

.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/**
 * The .element-focusable class extends the .element-invisible class to allow
 * the element to be focusable when navigated to via the keyboard.
 */

.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  position: static !important;
  clip: auto;
}

/**
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* IE6 */

* html .clearfix {
  height: 1%;
}

/* IE7 */

*:first-child + html .clearfix {
  min-height: 1%;
}

/* clear floats */
.clear { clear: both; }

/* display block */
.display-block { display: block; }



/* views configuration links */

div.view {
  position: relative;
}

div.view div.views-hide-hover,
div.view:hover div.views-hide,
div.view div.views-admin-links,
div.view div.views-admin-links-hover,
div.view div.views-admin-links:hover {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  font-size: 9px;
  margin-right: 0;
  margin-top: 0;
  padding: 0;
  padding-left: 10px;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

div.view div.views-admin-links li a {
  color: #999;
}

/**
 * Messages.
 */
div.messages {
  padding: 9px;
  margin: 0.5em 0 0;
  color: #036;
  background: #bdf;
  border: 1px solid #ace;
}
div.warning {
  color: #840;
  background: #fe6;
  border-color: #ed5;
}
div.error {
  color: #fff;
  background: #e63;
  border-color: #d52;
}
div.error p.error {
  color: #333;
}
div.status {
  color: #360;
  background: #cf8;
  border-color: #be7;
}

*-------------------------------
-
-  ADMIN & ELEMENTS 
-
--------------------------------*/

.page-admin table {
  margin: 1em 0;
  width: 100%;
 /* border: 1px solid #CCCCCC;*/
}

.page-admin thead th {
	border-bottom: 1px solid #CCCCCC;
	color: #666666;
	font-weight: bold;
	background-color: #E4EBF6;
	font-size: 14px;
}

.region{
    background-color: #DDD;
    padding: 10px;
 }

.page-admin th a:link, .page-admin th a:visited {
  color: #6f9dbd;
}

.page-admin td,.page-admin  th {
  padding: .3em .5em;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}


.page-admin tr.even, .page-admin tr.odd, .page-admin tbody th {
  /*border: 1px solid #CCCCCC;*/
  border-width: 1px 0;
  padding: 10px 0px;
}

tr.odd, tr.info {
  background-color: #FBFBFB;
}

tr.even {
  background-color: #F6F6F6;
}

tr.drag {
  background-color: #fffff0;
}

tr.drag-previous {
  background-color: #ffd;
}

tr.odd td.active {
  background-color: #e1e1e1;
}

tr.even td.active {
  background-color: #d3d3d3;
}

ul.primary {
    padding: 10px 10px 5px 10px;
    margin-bottom: 10px;
}

ul.primary li{
    margin: 0;
}

ul.primary li a{
	-moz-border-radius-topleft: 9px;
	-moz-border-radius-topright: 9px;
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-radius: 9px 9px 0px 0px;
	border-radius: 9px 9px 0px 0px;
    padding: 5px 10px 5px 10px;
    font-weight: bold;
    background-color: #DBEBF4; 
}

html.js fieldset.collapsed{
    height: 2em;
}


div.messages, div.status{
    background-color: #FFFF33;
    color: #D7801B;
    font-weight: bold;
    padding: 1em;
    border: 1px solid #D7801B;
}


.item-list .pager{
    font-size: 12px; 
    color: #5F5F60;
    text-align: right;
    margin-right: 2em;
}

.item-list ul li{
 	margin: 0 0 .25em .25em;
}	
