/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.2.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2014 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/

/* @group Base */
.chosen-container {
 position: relative;
 display: inline-block;
 vertical-align: middle;
 font-size: 13px;
 zoom: 1;
 *display: inline;
 -webkit-user-select: none;
 -moz-user-select: none;
 user-select: none;
}
.chosen-container * {
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
}
.chosen-container .chosen-drop {
 position: absolute;
 top: 100%;
 left: -9999px;
 z-index: 1010;
 width: 100%;
 border: 1px solid #aaa;
 border-top: 0;
 background: #fff;
 box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.chosen-container.chosen-with-drop .chosen-drop {
 left: 0;
}
.chosen-container a {
 cursor: pointer;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
 position: relative;
 display: block;
 overflow: hidden;
 padding: 0 0 0 8px;
 height: 25px;
 border: 1px solid #aaa;
 border-radius: 5px;
 background-color: #fff;
 background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
 background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
 background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
 background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
 background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
 background-clip: padding-box;
 box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
 color: #444;
 text-decoration: none;
 white-space: nowrap;
 line-height: 24px;
}
.chosen-container-single .chosen-default {
 color: #999;
}
.chosen-container-single .chosen-single span {
 display: block;
 overflow: hidden;
 margin-right: 26px;
 text-overflow: ellipsis;
 white-space: nowrap;
}
.chosen-container-single .chosen-single-with-deselect span {
 margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
 position: absolute;
 top: 6px;
 right: 26px;
 display: block;
 width: 12px;
 height: 12px;
 background: url('chosen-sprite.png') -42px 1px no-repeat;
 font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
 background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
 background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
 position: absolute;
 top: 0;
 right: 0;
 display: block;
 width: 18px;
 height: 100%;
}
.chosen-container-single .chosen-single div b {
 display: block;
 width: 100%;
 height: 100%;
 background: url('chosen-sprite.png') no-repeat 0px 2px;
}
.chosen-container-single .chosen-search {
 position: relative;
 z-index: 1010;
 margin: 0;
 padding: 3px 4px;
 white-space: nowrap;
}
.chosen-container-single .chosen-search input[type="text"] {
 margin: 1px 0;
 padding: 4px 20px 4px 5px;
 width: 100%;
 height: auto;
 outline: 0;
 border: 1px solid #aaa;
 background: white url('chosen-sprite.png') no-repeat 100% -20px;
 background: url('chosen-sprite.png') no-repeat 100% -20px;
 font-size: 1em;
 font-family: sans-serif;
 line-height: normal;
 border-radius: 0;
}
.chosen-container-single .chosen-drop {
 margin-top: -1px;
 border-radius: 0 0 4px 4px;
 background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
 position: absolute;
 left: -9999px;
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
 color: #444;
 position: relative;
 overflow-x: hidden;
 overflow-y: auto;
 margin: 0 4px 4px 0;
 padding: 0 0 0 4px;
 max-height: 240px;
 -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
 display: none;
 margin: 0;
 padding: 5px 6px;
 list-style: none;
 line-height: 15px;
 word-wrap: break-word;
 -webkit-touch-callout: none;
}
.chosen-container .chosen-results li.active-result {
 display: list-item;
 cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
 display: list-item;
 color: #ccc;
 cursor: default;
}
.chosen-container .chosen-results li.highlighted {
 background-color: #3875d7;
 background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
 background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
 background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
 background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
 background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
 color: #fff;
}
.chosen-container .chosen-results li.no-results {
 color: #777;
 display: list-item;
 background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
 display: list-item;
 font-weight: bold;
 cursor: default;
}
.chosen-container .chosen-results li.group-option {
 padding-left: 15px;
}
.chosen-container .chosen-results li em {
 font-style: normal;
 text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
 position: relative;
 overflow: hidden;
 margin: 0;
 padding: 0 5px;
 width: 100%;
 height: auto !important;
 height: 1%;
 border: 1px solid #aaa;
 background-color: #fff;
 background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
 background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
 background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
 background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
 background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
 cursor: text;
}
.chosen-container-multi .chosen-choices li {
 float: left;
 list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
 margin: 0;
 padding: 0;
 white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
 margin: 1px 0;
 padding: 0;
 height: 25px;
 outline: 0;
 border: 0 !important;
 background: transparent !important;
 box-shadow: none;
 color: #999;
 font-size: 100%;
 font-family: sans-serif;
 line-height: normal;
 border-radius: 0;
}
.chosen-container-multi .chosen-choices li.search-choice {
 position: relative;
 margin: 3px 5px 3px 0;
 padding: 3px 20px 3px 5px;
 border: 1px solid #aaa;
 max-width: 100%;
 border-radius: 3px;
 background-color: #eeeeee;
 background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
 background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
 background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
 background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
 background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
 background-size: 100% 19px;
 background-repeat: repeat-x;
 background-clip: padding-box;
 box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
 color: #333;
 line-height: 13px;
 cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
 word-wrap: break-word;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
 position: absolute;
 top: 4px;
 right: 3px;
 display: block;
 width: 12px;
 height: 12px;
 background: url('chosen-sprite.png') -42px 1px no-repeat;
 font-size: 1px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
 background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
 padding-right: 5px;
 border: 1px solid #ccc;
 background-color: #e4e4e4;
 background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
 background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
 background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
 background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
 background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
 color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
 background: #d4d4d4;
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
 background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
 margin: 0;
 padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
 display: list-item;
 color: #ccc;
 cursor: default;
}

/* @end */
/* @group Active */
.chosen-container-active .chosen-single {
 border: 1px solid #5897fb;
 box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active.chosen-with-drop .chosen-single {
 border: 1px solid #aaa;
 -moz-border-radius-bottomright: 0;
 border-bottom-right-radius: 0;
 -moz-border-radius-bottomleft: 0;
 border-bottom-left-radius: 0;
 background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
 background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
 background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
 background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
 background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
 box-shadow: 0 1px 0 #fff inset;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
 border-left: none;
 background: transparent;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
 background-position: -18px 2px;
}
.chosen-container-active .chosen-choices {
 border: 1px solid #5897fb;
 box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
 color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
 opacity: 0.5 !important;
 cursor: default;
}
.chosen-disabled .chosen-single {
 cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
 cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
 text-align: right;
}
.chosen-rtl .chosen-single {
 overflow: visible;
 padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
 margin-right: 0;
 margin-left: 26px;
 direction: rtl;
}
.chosen-rtl .chosen-single-with-deselect span {
 margin-left: 38px;
}
.chosen-rtl .chosen-single div {
 right: auto;
 left: 3px;
}
.chosen-rtl .chosen-single abbr {
 right: auto;
 left: 26px;
}
.chosen-rtl .chosen-choices li {
 float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
 direction: rtl;
}
.chosen-rtl .chosen-choices li.search-choice {
 margin: 3px 5px 3px 0;
 padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
 right: auto;
 left: 4px;
}
.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
 left: 9999px;
}
.chosen-rtl.chosen-container-single .chosen-results {
 margin: 0 0 4px 4px;
 padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
 padding-right: 15px;
 padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
 border-right: none;
}
.chosen-rtl .chosen-search input[type="text"] {
 padding: 4px 5px 4px 20px;
 background: white url('chosen-sprite.png') no-repeat -30px -20px;
 background: url('chosen-sprite.png') no-repeat -30px -20px;
 direction: rtl;
}
.chosen-rtl.chosen-container-single .chosen-single div b {
 background-position: 6px 2px;
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
 background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
 .chosen-rtl .chosen-search input[type="text"],
 .chosen-container-single .chosen-single abbr,
 .chosen-container-single .chosen-single div b,
 .chosen-container-single .chosen-search input[type="text"],
 .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
 .chosen-container .chosen-results-scroll-down span,
 .chosen-container .chosen-results-scroll-up span {
  background-image: url('chosen-sprite@2x.png') !important;
  background-size: 52px 37px !important;
  background-repeat: no-repeat !important;
 }
}
/* @end */
ul.list-options   { margin: 5px 0 0; padding:0; float:left; } ul.list-options li { min-height:16px; min-width:16px; float:left; list-style-type:none; margin-left:3px; background-repeat:no-repeat;} ul.list-options li a { margin: 0; font-size: 10px; text-decoration: none; height:16px; padding: 2px 0;} ul.list-options  li.disabled  { display:none;} ul.list-options  li.add     { background-image: url(images/icons/add_16.png);} ul.list-options  li.edit   { background-image: url(images/edit_16.png);} ul.list-options  li.delete   { background-image: url(images/delete_16.png);} ul.list-options  li.preview  { background-image: url(images/preview_16.png);} ul.list-options  li.down   { background-image: url(images/icons/move_down_16.png);} ul.list-options  li.up        { background-image: url(images/icons/move_up_16.png);} ul.list-options  li.make-offline  { background-image: url(images/icons/make_offline_16.png);} ul.list-options  li.make-online    { background-image: url(images/icons/make_online_16.png);} ul.list-options  li.offline   { background-image: url(images/icons/offline_16.png); } ul.list-options  li.online   { background-image: url(images/icons/online_16.png);} ul.list-options  li.copy    { background-image: url(images/icons/icon-16-copy.gif);} ul.list-options  li.print   { background-image: url(images/icons/print_16.png);} ul.list-options  li.addMyCM   { background-image: url(images/add_16.png);} ul.list-options  li.deleteMyCM  { background-image: url(images/delete_16.png); } ul.list-options  li.createIM   { background-image: url(images/icons/icon-16-im.png); } ul.list-options  li.share     { background-image: url(images/icons/share.png); } ul.list-options  li.CommitteeMembers  { background-image: url(images/check_16.png); } ul.list-options  li.Preview      { background-image: url(images/preview_16.png); } ul.list-options  li.Publish      { background-image: url(images/publish_16.png); } ul.list-options  li.Return       { background-image: url(images/reply_post_16.png); } ul.list-options  li.Comments      { background-image: url(images/plc_16.png); } ul.list-options  li.down_sort  { background-image: url(images/move_down_16.png);} ul.list-options  li.up_sort   { background-image: url(images/move_up_16.png);} ul.list-options  li.ReviewResource  { background-image: url(images/review_16.png);} ul.list-options  li.Admin   { background-image: url(images/icon-16-admin.png);}  ul.list-options li.goright { background-image: url(images/move_right_blue_16.png);} ul.list-options li.cancel { background-image: url(images/delete_16.png);} /* default grid view table */ table.GridView {  -moz-border-radius: 3px;   border-radius: 3px;   background: #fff;   border: 1px solid #E7E7E7;   font-size: 11px;   width: 100%; }  #planbook-list table.GridView { 
  width: 100%;
        border: none;
  }

table.GridView tr.header {
  background:#557488;
  color:#FFFFFF;
  font-size:10px;
  text-align: left;
  
}

table.GridView a, #search-results table.GridView a {
 font-weight: bold;
 text-decoration: none;
 }

table.GridView tr.header td {
  border-top:none;
 border-left:1px solid #7A9AAE;
 border-right:1px solid #405766;
 padding:3px 8px;
}

table.GridView tr.header td:first-child { border-left: none; }


table.GridView td, table.GridView th{ 
    border-top: 1px solid #e7e7e7;
    border-bottom: none;
    } table.GridView td.first-name { font-weight: bold; } #CurrentStandards table.GridView h4 { font-size: 14px;} #CurrentStandards table {margin-bottom: 10px}  #StandardsAlignment table.GridView {   font-size: 11px; } #StandardsAlignment table.GridView td{   border-bottom: none; }  table.GridView a, #search-results table.GridView a { font-weight: bold; text-decoration: underline; color: #1A436E; }   table.GridView .header a { background:url("images/sort-arrow.png") no-repeat scroll 0 50% transparent !important;   color: #fff !important;   font-weight:bold;   padding-left:14px !important;   text-decoration:none !important; }  #search-results table.GridView tr td ul.list-options li a{ text-decoration: none;}   .topic_count { text-align: center; }  table.GridView a:hover, #search-results table.GridView a:hover { color: #1A436E; } .GridView td, .GridView th{     border-bottom:1px solid #eee;     } .GridView tr, .GridView td, .GridView th { padding: 5px 8px; } .GridView th {   border-left: 1px solid #7A9AAE;   border-right: 1px solid #405766;   font-weight: bold;   padding: 3px 8px;   text-align: left;   } .GridView tr.alt { background-color:#f7f7f7; } .GridView tr {   border-top: 1px solid #E7E7E7; } .GridView tr.header {     background-color: #557488;     border-top: 1px solid #557488;     color: #FFFFFF;     margin: 0;     padding: 5px 0 5px 10px; } #search-results .GridView tr.header a{     text-decoration: none; } .GridView tr.header td, .GridView tr.header th {   text-align: left; font-weight: bold;  } .GridView tr.header td.center, .GridView tr.header th.center{ text-align:center;} .GridView td.modified, .GridView td.options { width: 160px; } #materials-resources .GridView ul li {   border-bottom: none;   padding-left: 0;  } .GridView tr.separator{ background-color:#004354;} .GridView tr.disabled { background-color:#FDF46B; } .GridView td.graybg { background-color:#eee; } .GridView td.center { text-align:center; } .GridView td.aligntop { vertical-align:top; } /* grid view table */ div.GridViewDataContainer { padding-top:5px;} div.GridViewDataContainer span { font-weight:bold; } /* CSS Document */

/*-------------------------- content detail page --------------------------*/

#content-detail, #itemCommunity-container #thread {

margin: 10px auto;
padding: 10px;
/* width: 898px; */ background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #ddd; border-radius: 0; box-shadow: 2px 2px 1px rgba( 0, 0, 0, 0.10 );
}

#itemCommunity-container { padding-top: 15px; }

#content-detail h2, #itemCommunity-container h2 {   -moz-border-radius: 3px 3px 3px 3px;   display: block;   width: 760px;     font-size: 36px;   font-weight: normal;   line-height: 38px;   margin: 0;   padding: 0 0 20px; }

#itemCommunity-container h2 { width: 400px; padding-top: 3px; padding-left: 12px; }

#content-detail h3{
  background: none;
  border-top: none;
  margin-bottom: 0;
  /*font-weight: normal;*/
  background: #f7f7f7;
  border: 1px solid #E7E7E7;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 10px;
}

#content-detail #properties p, #gradelevels p { padding-left: 11px; padding-right: 11px; font-size: 14px; } #content-detail #properties ul { margin-left: 0; padding-left: 12px;} #content-detail #properties li { margin-left: 25px; padding: 0;} #content-detail #related {   -moz-border-radius: 3px;   border-radius: 3px;   background: #F7F7F7;   border: 1px solid #E7E7E7;   margin-bottom: 10px;   padding: 10px; } #content-detail #related h3 { background: none; border: none; margin: 0; padding: 0; } #content-detail #related a {   border-color: #E7E7E7 #D3D3D3 #D3D3D3 #E7E7E7;   border-style: solid;   border-width: 1px;   background: #fff;   -moz-border-radius: 3px;   border-radius: 3px;   color: #000000;   font-size: 12px;   margin: 0;   padding: 9px;   display: block; } #content-detail #related a:hover {   background: #f3fbff; }

#content-detail #subject {   clear: both;   margin-top: 30px; }

#content-detail > h3 { background: #30618A; border: none; color: #fff; font-size: 12px; -moz-border-radius: 3px; border-radius: 3px; margin-bottom: 20px;}

#itemCommunity-container #post h3    {   background: #30618A;   color: #fff;   border: 1px solid #30618A;   -moz-border-radius: 3px 3px 0 0;   border-radius: 3px 3px 0 0;
  }
  
#itemCommunity-container #post textarea 
{
 border: 1px solid #d3d3d3;
 border-top: none; 
 -moz-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; 
 width: 678px;
 padding: 10px;
 font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

#btnPostComment { width: 120px; margin: 0 auto; }

#content-detail .title{
 font-size: 125%;
 margin:10px 0;
 font-weight: bold;
 padding: 10px 20px;
 width:40%;
}

#content-detail a{
font-size: 100%;
}


#content-detail #share {   float: right; }


#content-detail #share ul{
 -moz-border-radius:3px;   -webkit-border-radius:3px;   border-radius:3px;   background-color: #f3fbff;   padding: 10px;
  margin: 0;
  border: 1px solid #E7E7E7;
}

#content-detail #share li {   list-style: none outside none;   padding: 5px 3px; }

#content-detail #share .bookmark a {  background:url(images/sprite-icons-tools-16.png) no-repeat scroll 0 -48px transparent;  padding-left:20px;  padding-top:2px; } #content-detail #share .print-page a, .print-page-drc a{  background:url(images/sprite-icons-tools-16.png) no-repeat scroll 0 -24px transparent;  padding-left:20px;  padding-top:2px; } #content-detail #share .send a{  background:url(images/sprite-icons-tools-16.png) no-repeat scroll 0 -68px transparent;  padding-left:20px;  padding-top:2px; }

#content-modal #content-detail #properties h3, #content-modal #content-detail #gradelevels h3{
  border-top:medium none;  padding-top:0;
}

#content-modal #content-detail #properties h3{
  padding-top:0;
}


#content-detail a {
font-size:100%;
}

#content-detail #title {

}

#content-detail .join a {
background:transparent url(http://static.pdesas.org/content/images/info-icon.png) no-repeat scroll 112px 0;
padding-right:30px;
padding-top:2px;
border-right:1px solid #CCCCCC;
}

#content-detail .rate {
float:left;
padding-right:10px;
padding-top:2px;
}

#content-detail .ratePanel {
float:left;
}

#content-detail .rateThis {
float:left;
border-left:1px solid #CCCCCC;
margin: 0 0 0 0;
padding-right:10px;
padding-left:10px;
padding-top:2px;
}

/*#content-detail .rate a {
float:left;
padding-right:10px;
padding-top:2px;
}*/

#content-detail #thread{
 font-weight: normal;
 text-decoration: none;
 margin: 15px 0;
}

 #content-detail #thread #comment{
 margin-bottom: 30px;
 padding-bottom: 10px;
 border-bottom:1px solid #eee;
 }
 
 #content-detail #thread h3{
 background:url("images/pattern-panel-blue3.gif") repeat-x scroll 0 0 #5A8ABA;
 padding: 10px 10px 10px 20px;
 margin-left: 0;
 color:#FFFFFF;
 }
 
 #content-detail #thread h4{
 }
 
 #content-detail #thread p{
 font-size: 11px;
 }
 
 #content-detail #thread span{
 color:#BBBBBB;
 font-size:10px;
 }
 
 #content-detail #thread img{
 padding: 0 10px 10px 10px; 
 }
 
 #content-detail #thread .comment{
 padding: 10px;
 }

#itemCommunity-container h3{
  background: none;
  border-top: none;
  margin-bottom: 0;
  /*font-weight: normal;*/
  background: #f7f7f7;
  border: 1px solid #E7E7E7;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 10px;
}

#itemCommunity-container .rate {
float:left;
padding-right:10px;
padding-top:2px;
}

#itemCommunity-container .ratePanel {
float:left;
}

#itemCommunity-container .rateThis {
float:left;
border-left:1px solid #CCCCCC;
margin: 0 0 0 0;
padding-right:10px;
padding-left:10px;
padding-top:2px;
}

/*#itemCommunity-container .rate a {
float:left;
padding-right:10px;
padding-top:2px;
}*/

/*
#itemCommunity-container #thread{
 font-weight: normal;
 text-decoration: none;
 margin: 15px 0;
}
*/

 #itemCommunity-container #thread #comment{
 padding: 20px;
 border-top:1px solid #e7e7e7;
 line-height: normal;
 }
 
 #itemCommunity-container #thread #comment:first-child { border-top: none; }

 #itemCommunity-container #thread #comment .float_left{
 display: block;  float: left;
 }

 
 
 #itemCommunity-container #thread h4{
 }
 
 #itemCommunity-container #thread p{
 font-size: 11px;
 }
 
 #itemCommunity-container #thread span{
 color:#BBBBBB;
 font-size:10px;
 }
 
 #itemCommunity-container #thread img{
 padding: 0 10px 10px 10px; 
 }
 
 #itemCommunity-container #thread .comment{
 padding: 10px;
 }

#list-view li{
 border-bottom:1px solid #CCCCCC;
 display:block;
 padding:5px 0 5px 10px;
}

h3.duration {
 background:url(images/icon-16-clock.png) no-repeat scroll 65px 5px transparent;
 padding-left:25px;
 }
 
h3.materials {
 background:url(images/icon-16-blueprint.png) no-repeat scroll 70px 5px transparent;
 padding-left:25px;
 }
 
h3.resources {
 background:url(images/site_icon.png) no-repeat scroll 220px 5px transparent;
 padding-left:25px;
 } 

/*------------- Discussion --------------*/

#post {
  margin: 20px auto 0;   width: 700px;
}

#post input.box {
margin:10px 0 0 0;
width: 300px;
height: 100px;
margin-bottom: 10px;
}


#content-detail #community{
 border: 1px #ccc solid;
 float: right;
 display: block;
 width: 320px;
 margin: 15px 0;
}

#content-detail #community h3{
 background:transparent url(images/grad-gray.png) repeat-x scroll center top;
 padding-left: 5px;
}

#content-detail ul.community{
 padding: 5px;
 float:right;
}

#content-detail ul.community li{
 float: left;
}

#itemCommunity-container #community{
 border: 1px #ccc solid;
 float: right;
 display: block;
 width: 320px;
 margin: 15px 0;
}

#itemCommunity-container #community h3{
 background:transparent url(images/grad-gray.png) repeat-x scroll center top;
 padding-left: 5px;
}

#itemCommunity-container ul.community{
 padding: 5px;
 float:right;
  list-style-type: none;
}

#itemCommunity-container ul.community li{
 float: left;
  list-style-type: none;
}

#rating{
 margin: 0 10px;
 border-right:1px solid #CCCCCC;
 padding-right:10px;
}

#panel1 li, #panel2 li{
 list-style-image:none;
 list-style-position:outside;
 list-style-type:disc;
 margin: 1em 0 1em 50px;
 padding:0;
}

#panel1 {
 width: 48%;
 margin-right:20px;
}


#panel2 {
 width: 48%;
}

#panel3 {
 width: 320px;
}

/*---------collapsable menus --------------*/

.collapse-panel{
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      -border-radius: 3px;
      background:url(images/pattern-panel-gray.gif) repeat-x scroll 0 0 #E6EAEF;       margin:5px auto 0;       padding:10px;
      border:1px solid #E0E6EF;
    }
    
 #content-detail .collapse-panel h3{
      font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  border-bottom: none;
  border-top: none;
  padding:0 0 0 20px;
  margin-top: 0;
    }
 
 .collapse-panel span{
      line-height: 1.7em;
    } 
    
  #content-detail .collapse-panel h3.collapse{
      background:url("images/sprite-buttons-16.png") no-repeat scroll 0 -45px transparent;
    }
    
  #content-detail .collapse-panel h3.expand{
      background:url("images/sprite-buttons-16.png") no-repeat scroll 0 2px transparent;
    }
 
 .collapse-panel #content-panel{
      padding: 10px;
    }
    
   .collapse-panel p.sascfdata {     background-color:transparent;     border:none;     margin:0 auto 10px;     padding:10px;   }

/*-------rating---------*/

ul.rating{
background:url(images/rating-star.gif) bottom;
height:16px;
width:80px;
overflow:hidden;
}

ul.rating li{
display:inline
}

.rating a {
display:block;
width:16px;
height:16px;
float:left;
text-indent:-9999px;
position:relative;
}

.rating a:hover {
background:url(images/rating-star.gif) top;
width:80px;
margin-left:-64px;
position:static;
}

.rating a:active {
background-position:-16px;
}

/*-------related materials---------*/

.icon-key {
/*background-color:#f7f3e7;
margin:0 auto;

-moz-border-radius: 3px;
-border-radius: 3px;
-webkit-border-radius: 3px;
border: 0;*/
}

#related table {
 width: 100%;
 margin-top: 10px;
}

#related tr#headers{
 background:#95C2F8;
 color:#fff;
}

#related tr#headers td{
 padding: 5px 5px 5px 10px;
}

#related td{
 font-weight: bold;
 padding: 5px 5px 5px 5px;
}

#related td.alt{
 background-color: #ebf1f9;
}

li.suggested-pde, li.suggested-school, li.suggested-teacher{
  float:left;
     margin-left :20px;
     padding:10px 60px 10px 20px;
}

#related td.suggested-pde, #related td.suggested-school, #related td.suggested-teacher{
  margin-left :20px;
     padding:10px 60px 10px 20px;
  border-left: none;
}

.suggested-pde{
  background:transparent url(images/materials-icon.png) no-repeat scroll 0 10px;
}

.suggested-school{
  background:transparent url(images/icon-16-cap.png) no-repeat scroll 0 10px;
}

.suggested-teacher{
  background:transparent url(images/icon-16-community.png) no-repeat scroll 0 10px;
}

#related td.comments {
 background:#DBE7F7 none repeat scroll 0 0;
 color:#43413E;
 border-bottom: 1px solid white;
}

#related td.notes {
 background:#fbf7e3 none repeat scroll 0 0;
 border-bottom: 1px solid white;
}

#related td.comment a span, #related td.note a span {
 display: none;
}

#related td.comment a:hover, #related td.note a:hover {
 position: relative;
}

#related td.comment a:hover span {
 display: block;
  position: absolute;
 padding: 5px;
 border: solid 1px #779ee3;
 background: #dbe7f7;
 color: #43413E;
 font-weight: normal;
 text-decoration: none;
 width: 200px;
 left: -100px;
 top: -75px;
 text-align: left;
}

#related td.note a:hover span {
 display: block;
  position: absolute;
 padding: 5px;
 border: solid 1px #ccc;
 background: #eee;
 color: #43413E;
 font-weight: normal;
 text-decoration: none;
 width: 100px;
 left: -50px;
 top: -50px;
 text-align: left;
}

/* ------------- profiles -------------*/

#class-profiles table {
 width: 100%;
 margin-top: 10px;
}

#class-profiles tr#headers{
 background:#ccc url(images/grad-gray.png) repeat-x scroll top;
 color:#43413E;
}

#class-profiles tr#headers td{
 padding: 5px 5px 5px 10px;
 border-left:0 none;
 border:1px solid #c6c6c6;
}

#class-profiles td{
 font-weight: bold;
 padding: 5px 5px 5px 5px;
}

#class-profiles td.alt{
 background-color: #e6e6e6;
}

#class-profiles td.student{
 border-left: none;
}

#class-profiles td.comment a span, #class-profiles td.note a span {
 display: none;
}

#class-profiles td.comment a:hover, #class-profiles td.note a:hover {
 position: relative;
}

#class-profiles td.comment a:hover span {
 display: block;
  position: absolute;
 padding: 5px;
 border: solid 1px #779ee3;
 background: #dbe7f7;
 color: #43413E;
 font-weight: normal;
 text-decoration: none;
 width: 200px;
 left: -100px;
 top: -75px;
 text-align: left;
}

#class-profiles td.note a:hover span {
 display: block;
  position: absolute;
 padding: 5px;
 border: solid 1px #ccc;
 background: #eee;
 color: #43413E;
 font-weight: normal;
 text-decoration: none;
 width: 100px;
 left: -50px;
 top: -50px;
 text-align: left;
}

#class-profiles td.instruction {
 padding: 5px;
 background: #dbe7f7;
 color: #4677B1;
 font-weight: normal;
 text-decoration: none;
 text-align: left;
}
 
#class-profiles td.match{
 font-size: 250%;
 color:#4677B1;
}

#class-profiles td.classification p{
 background:#ffa200 url(images/grad-orange.gif) repeat-x scroll 0 0;
 border:1px solid #E47100;
 color:white;
 padding:8px;
 margin: 10px;
}

#class-profiles td.classification-yellow p{
 background:#ffa200 url(images/grad-yellow.gif) repeat-x scroll 0 0;
 border:1px solid #e3ab00;
 color:white;
 padding:8px;
 margin: 10px;
}

#class-profiles td.classification-green p{
 background:#ffa200 url(images/grad-green.png) repeat-x scroll 0 0;
 border:1px solid #839d1d;
 color:white;
 padding:8px;
 margin: 10px;
}.MsgWindow{ border: 1px solid #fff; -webkit-border-radius: 5px;
 -html-border-radius: 5px;
 -moz-border-radius: 5px;
  border-radius: 5px;   box-shadow: 0 0 20px #000;   -moz-box-shadow: 0 0 20px #000;   -webkit-box-shadow: 0 0 20px #000; } .drag-handle { padding: 5px; background: #557488; color: #fff; -webkit-border-radius: 5px 5px 0 0;
 -khtml-border-radius: 5px 5px 0 0;
 -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0; } .drag-controls {} .drag-controls img { display: inline;} .drag-contentarea{ /*CSS for Content Display Area div*/ color: #718496; text-align:justify;  padding: 20px; border-top: 1px solid #fff; } .drag-buttons{ /* Css For the Buttons */   padding-top: 1em;   padding-bottom: 10px;   text-align:center;   clear: both;   padding-left: 50px; } .msgwin-buttons button{   font-size: .8em; } .drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/ border-top: 1px solid gray; }ul.list-options  { margin: 5px 0 0; padding:0; float:left; } ul.list-options li { min-height:16px; min-width:16px; float:left; list-style-type:none; margin-left:3px; background-repeat:no-repeat;} ul.list-options li a { margin: 0; font-size: 10px; text-decoration: none; height:16px; padding: 2px 0;} ul.list-options li.disabled { display:none;} ul.list-options li.add   { background-image: url(images/icons/add_16.png);} ul.list-options li.edit  { background-image: url(images/edit_16.png);} ul.list-options li.delete  { background-image: url(images/delete_16.png);} ul.list-options li.preview { background-image: url(images/preview_16.png);} ul.list-options li.down  { background-image: url(images/icons/move_down_16.png);} ul.list-options li.up    { background-image: url(images/icons/move_up_16.png);} ul.list-options li.make-offline { background-image: url(images/icons/make_offline_16.png);} ul.list-options li.make-online  { background-image: url(images/icons/make_online_16.png);} ul.list-options li.offline  { background-image: url(images/icons/offline_16.png); } ul.list-options li.online  { background-image: url(images/icons/online_16.png);} ul.list-options li.copy  { background-image: url(images/icons/icon-16-copy.gif);} ul.list-options li.print  { background-image: url(images/icons/print_16.png);} ul.list-options li.addMyCM  { background-image: url(images/add_16.png);} ul.list-options li.deleteMyCM { background-image: url(images/delete_16.png); } ul.list-options li.createIM  { background-image: url(images/icons/icon-16-im.png); } ul.list-options li.share   { background-image: url(images/icons/share.png); } ul.list-options li.CommitteeMembers { background-image: url(images/check_16.png); } ul.list-options li.Preview   { background-image: url(images/preview_16.png); } ul.list-options li.Publish   { background-image: url(images/publish_16.png); } ul.list-options li.Return    { background-image: url(images/reply_post_16.png); } ul.list-options li.Comments   { background-image: url(images/plc_16.png); } ul.list-options li.down_sort { background-image: url(images/move_down_16.png);} ul.list-options li.up_sort  { background-image: url(images/move_up_16.png);} ul.list-options li.ReviewResource { background-image: url(images/review_16.png);} ul.list-options li.Admin  { background-image: url(images/icon-16-admin.png);} ul.list-options li.goright { background-image: url(images/move_right_blue_16.png);} ul.list-options li.cancel { background-image: url(images/delete_16.png);} /* default grid view table */ table.GridView { -moz-border-radius: 3px;  border-radius: 3px;  background: #fff;  border: 1px solid #E7E7E7;  font-size: 11px;  width: 100%; } #planbook-list table.GridView { 
 width: 100%;
    border: none;
 }

table.GridView tr.header {
 background:#557488;
 color:#FFFFFF;
 font-size:10px;
 text-align: left;
 
}

table.GridView a, #search-results table.GridView a {
 font-weight: bold;
 text-decoration: none;
 }

table.GridView tr.header td {
 border-top:none;
 border-left:1px solid #7A9AAE;
 border-right:1px solid #405766;
 padding:3px 8px;
}

table.GridView tr.header td:first-child { border-left: none; }


table.GridView td, table.GridView th{ 
  border-top: 1px solid #e7e7e7;
  border-bottom: none;
  } table.GridView td.first-name { font-weight: bold; } #CurrentStandards table.GridView h4 { font-size: 14px;} #CurrentStandards table {margin-bottom: 10px} #StandardsAlignment table.GridView {  font-size: 11px; } #StandardsAlignment table.GridView td{  border-bottom: none; } table.GridView a, #search-results table.GridView a { font-weight: bold; text-decoration: underline; color: #1A436E; }  table.GridView .header a { background:url("images/sort-arrow.png") no-repeat scroll 0 50% transparent !important;  color: #fff !important;  font-weight:bold;  padding-left:14px !important;  text-decoration:none !important; } #search-results table.GridView tr td ul.list-options li a{ text-decoration: none;}  .topic_count { text-align: center; } table.GridView a:hover, #search-results table.GridView a:hover { color: #1A436E; } .GridView td, .GridView th{   border-bottom:1px solid #eee;   } .GridView tr, .GridView td, .GridView th { padding: 8px; } .GridView th {  border-left: 1px solid #7A9AAE;  border-right: 1px solid #405766;  font-weight: bold;  padding: 3px 8px;  text-align: left;  } .GridView tr.alt { background-color:#f7f7f7; } .GridView tr {  border-top: 1px solid #E7E7E7; } .GridView tr.header {   background-color: #557488;   border-top: 1px solid #557488;   color: #FFFFFF;   margin: 0;   padding: 5px 0 5px 10px; } #search-results .GridView tr.header a{   text-decoration: none; } .GridView tr.header td, .GridView tr.header th {  text-align: left; font-weight: bold; } .GridView tr.header td.center, .GridView tr.header th.center{ text-align:center;} .GridView td.modified, .GridView td.options { width: 160px; } #materials-resources .GridView ul li {  border-bottom: none;  padding-left: 0; } .GridView tr.separator{ background-color:#004354;} .GridView tr.disabled { background-color:#FDF46B; } .GridView td.graybg { background-color:#eee; } .GridView td.center { text-align:center; } .GridView td.aligntop { vertical-align:top; } /* grid view table */ div.GridViewDataContainer { padding-top:5px;} div.GridViewDataContainer span { font-weight:bold; } /* CSS Document */

/*-------------------------- content detail page --------------------------*/

#content-detail, #itemCommunity-container #thread {

margin: 10px auto;
padding: 10px;
/* width: 898px; */ background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #ddd; border-radius: 0; box-shadow: 2px 2px 1px rgba( 0, 0, 0, 0.10 );
}

#itemCommunity-container { padding-top: 15px; }

#content-detail h2, #itemCommunity-container h2 {  -moz-border-radius: 3px 3px 3px 3px;  display: block;  width: 760px;   font-size: 36px;  font-weight: normal;  line-height: 38px;  margin: 0;  padding: 0 0 20px; }

#itemCommunity-container h2 { width: 400px; padding-top: 3px; padding-left: 12px; }

#content-detail h3{
 background: none;
 border-top: none;
 margin-bottom: 0;
 /*font-weight: normal;*/
 background: #f7f7f7;
 border: 1px solid #E7E7E7;
 -moz-border-radius: 3px;
 border-radius: 3px;
 padding: 10px;
}

#content-detail #properties p, #gradelevels p { padding-left: 11px; padding-right: 11px; font-size: 14px; } #content-detail #properties ul { margin-left: 0; padding-left: 12px;} #content-detail #properties li { margin-left: 25px; padding: 0;} #content-detail #related {  -moz-border-radius: 3px;  border-radius: 3px;  background: #F7F7F7;  border: 1px solid #E7E7E7;  margin-bottom: 10px;  padding: 10px; } #content-detail #related h3 { background: none; border: none; margin: 0; padding: 0; } #content-detail #related a {  border-color: #E7E7E7 #D3D3D3 #D3D3D3 #E7E7E7;  border-style: solid;  border-width: 1px;  background: #fff;  -moz-border-radius: 3px;  border-radius: 3px;  color: #000000;  font-size: 12px;  margin: 0;  padding: 9px;  display: block; } #content-detail #related a:hover {  background: #f3fbff; }

#content-detail #subject {  clear: both;  margin-top: 30px; }

#content-detail > h3 { background: #30618A; border: none; color: #fff; font-size: 12px; -moz-border-radius: 3px; border-radius: 3px; margin-bottom: 20px;}

#itemCommunity-container #post h3  {  background: #30618A;  color: #fff;  border: 1px solid #30618A;  -moz-border-radius: 3px 3px 0 0;  border-radius: 3px 3px 0 0;
 }
 
#itemCommunity-container #post textarea 
{
 border: 1px solid #d3d3d3;
 border-top: none; 
 -moz-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; 
 width: 678px;
 padding: 10px;
 font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

#btnPostComment { width: 120px; margin: 0 auto; }

#content-detail .title{
 font-size: 125%;
 margin:10px 0;
 font-weight: bold;
 padding: 10px 20px;
 width:40%;
}

#content-detail a{
font-size: 100%;
}


#content-detail #share {  float: right; }


#content-detail #share ul{
 -moz-border-radius:3px;  -webkit-border-radius:3px;  border-radius:3px;  background-color: #f3fbff;  padding: 10px;
 margin: 0;
 border: 1px solid #E7E7E7;
}

#content-detail #share li {  list-style: none outside none;  padding: 5px 3px; }

#content-detail #share .bookmark a { background:url(images/sprite-icons-tools-16.png) no-repeat scroll 0 -48px transparent; padding-left:20px; padding-top:2px; } #content-detail #share .print-page a, .print-page-drc a{ background:url(images/sprite-icons-tools-16.png) no-repeat scroll 0 -24px transparent; padding-left:20px; padding-top:2px; } #content-detail #share .send a{ background:url(images/sprite-icons-tools-16.png) no-repeat scroll 0 -68px transparent; padding-left:20px; padding-top:2px; }

#content-modal #content-detail #properties h3, #content-modal #content-detail #gradelevels h3{
 border-top:medium none; padding-top:0;
}

#content-modal #content-detail #properties h3{
 padding-top:0;
}


#content-detail a {
font-size:100%;
}

#content-detail #title {

}

#content-detail .join a {
background:transparent url(http://static.pdesas.org/content/images/info-icon.png) no-repeat scroll 112px 0;
padding-right:30px;
padding-top:2px;
border-right:1px solid #CCCCCC;
}

#content-detail .rate {
float:left;
padding-right:10px;
padding-top:2px;
}

#content-detail .ratePanel {
float:left;
}

#content-detail .rateThis {
float:left;
border-left:1px solid #CCCCCC;
margin: 0 0 0 0;
padding-right:10px;
padding-left:10px;
padding-top:2px;
}

/*#content-detail .rate a {
float:left;
padding-right:10px;
padding-top:2px;
}*/

#content-detail #thread{
 font-weight: normal;
 text-decoration: none;
 margin: 15px 0;
}

 #content-detail #thread #comment{
 margin-bottom: 30px;
 padding-bottom: 10px;
 border-bottom:1px solid #eee;
 }
 
 #content-detail #thread h3{
 background:url("images/pattern-panel-blue3.gif") repeat-x scroll 0 0 #5A8ABA;
 padding: 10px 10px 10px 20px;
 margin-left: 0;
 color:#FFFFFF;
 }
 
 #content-detail #thread h4{
 }
 
 #content-detail #thread p{
 font-size: 11px;
 }
 
 #content-detail #thread span{
 color:#BBBBBB;
 font-size:10px;
 }
 
 #content-detail #thread img{
 padding: 0 10px 10px 10px; 
 }
 
 #content-detail #thread .comment{
 padding: 10px;
 }

#itemCommunity-container h3{
 background: none;
 border-top: none;
 margin-bottom: 0;
 /*font-weight: normal;*/
 background: #f7f7f7;
 border: 1px solid #E7E7E7;
 -moz-border-radius: 3px;
 border-radius: 3px;
 padding: 10px;
}

#itemCommunity-container .rate {
float:left;
padding-right:10px;
padding-top:2px;
}

#itemCommunity-container .ratePanel {
float:left;
}

#itemCommunity-container .rateThis {
float:left;
border-left:1px solid #CCCCCC;
margin: 0 0 0 0;
padding-right:10px;
padding-left:10px;
padding-top:2px;
}

/*#itemCommunity-container .rate a {
float:left;
padding-right:10px;
padding-top:2px;
}*/

/*
#itemCommunity-container #thread{
 font-weight: normal;
 text-decoration: none;
 margin: 15px 0;
}
*/

 #itemCommunity-container #thread #comment{
 padding: 20px;
 border-top:1px solid #e7e7e7;
 line-height: normal;
 }
 
 #itemCommunity-container #thread #comment:first-child { border-top: none; }

 #itemCommunity-container #thread #comment .float_left{
 display: block; float: left;
 }

 
 
 #itemCommunity-container #thread h4{
 }
 
 #itemCommunity-container #thread p{
 font-size: 11px;
 }
 
 #itemCommunity-container #thread span{
 color:#BBBBBB;
 font-size:10px;
 }
 
 #itemCommunity-container #thread img{
 padding: 0 10px 10px 10px; 
 }
 
 #itemCommunity-container #thread .comment{
 padding: 10px;
 }

#list-view li{
 border-bottom:1px solid #CCCCCC;
 display:block;
 padding:5px 0 5px 10px;
}

h3.duration {
 background:url(images/icon-16-clock.png) no-repeat scroll 65px 5px transparent;
 padding-left:25px;
 }
 
h3.materials {
 background:url(images/icon-16-blueprint.png) no-repeat scroll 70px 5px transparent;
 padding-left:25px;
 }
 
h3.resources {
 background:url(images/site_icon.png) no-repeat scroll 220px 5px transparent;
 padding-left:25px;
 } 

/*------------- Discussion --------------*/

#post {
 margin: 20px auto 0;  width: 700px;
}

#post input.box {
margin:10px 0 0 0;
width: 300px;
height: 100px;
margin-bottom: 10px;
}


#content-detail #community{
 border: 1px #ccc solid;
 float: right;
 display: block;
 width: 320px;
 margin: 15px 0;
}

#content-detail #community h3{
 background:transparent url(images/grad-gray.png) repeat-x scroll center top;
 padding-left: 5px;
}

#content-detail ul.community{
 padding: 5px;
 float:right;
}

#content-detail ul.community li{
 float: left;
}

#itemCommunity-container #community{
 border: 1px #ccc solid;
 float: right;
 display: block;
 width: 320px;
 margin: 15px 0;
}

#itemCommunity-container #community h3{
 background:transparent url(images/grad-gray.png) repeat-x scroll center top;
 padding-left: 5px;
}

#itemCommunity-container ul.community{
 padding: 5px;
 float:right;
 list-style-type: none;
}

#itemCommunity-container ul.community li{
 float: left;
 list-style-type: none;
}

#rating{
 margin: 0 10px;
 border-right:1px solid #CCCCCC;
 padding-right:10px;
}

#panel1 li, #panel2 li{
 list-style-image:none;
 list-style-position:outside;
 list-style-type:disc;
 margin: 1em 0 1em 50px;
 padding:0;
}

#panel1 {
 width: 48%;
 margin-right:20px;
}


#panel2 {
 width: 48%;
}

#panel3 {
 width: 320px;
}

/*---------collapsable menus --------------*/

.collapse-panel{
   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
   -border-radius: 3px;
   background:url(images/pattern-panel-gray.gif) repeat-x scroll 0 0 #E6EAEF;    margin:5px auto 0;    padding:10px;
   border:1px solid #E0E6EF;
  }
  
 #content-detail .collapse-panel h3{
   font-weight: bold;
 font-size: 12px;
 cursor: pointer;
 border-bottom: none;
 border-top: none;
 padding:0 0 0 20px;
 margin-top: 0;
  }
 
 .collapse-panel span{
   line-height: 1.7em;
  } 
  
 #content-detail .collapse-panel h3.collapse{
   background:url("images/sprite-buttons-16.png") no-repeat scroll 0 -45px transparent;
  }
  
 #content-detail .collapse-panel h3.expand{
   background:url("images/sprite-buttons-16.png") no-repeat scroll 0 2px transparent;
  }
 
 .collapse-panel #content-panel{
   padding: 10px;
  }
  
  .collapse-panel p.sascfdata {   background-color:transparent;   border:none;   margin:0 auto 10px;   padding:10px;  }

/*-------rating---------*/

ul.rating{
background:url(images/rating-star.gif) bottom;
height:16px;
width:80px;
overflow:hidden;
}

ul.rating li{
display:inline
}

.rating a {
display:block;
width:16px;
height:16px;
float:left;
text-indent:-9999px;
position:relative;
}

.rating a:hover {
background:url(images/rating-star.gif) top;
width:80px;
margin-left:-64px;
position:static;
}

.rating a:active {
background-position:-16px;
}

/*-------related materials---------*/

.icon-key {
/*background-color:#f7f3e7;
margin:0 auto;

-moz-border-radius: 3px;
-border-radius: 3px;
-webkit-border-radius: 3px;
border: 0;*/
}

#related table {
 width: 100%;
 margin-top: 10px;
}

#related tr#headers{
 background:#95C2F8;
 color:#fff;
}

#related tr#headers td{
 padding: 5px 5px 5px 10px;
}

#related td{
 font-weight: bold;
 padding: 5px 5px 5px 5px;
}

#related td.alt{
 background-color: #ebf1f9;
}

li.suggested-pde, li.suggested-school, li.suggested-teacher{
 float:left;
   margin-left :20px;
   padding:10px 60px 10px 20px;
}

#related td.suggested-pde, #related td.suggested-school, #related td.suggested-teacher{
 margin-left :20px;
   padding:10px 60px 10px 20px;
 border-left: none;
}

.suggested-pde{
 background:transparent url(images/materials-icon.png) no-repeat scroll 0 10px;
}

.suggested-school{
 background:transparent url(images/icon-16-cap.png) no-repeat scroll 0 10px;
}

.suggested-teacher{
 background:transparent url(images/icon-16-community.png) no-repeat scroll 0 10px;
}

#related td.comments {
 background:#DBE7F7 none repeat scroll 0 0;
 color:#43413E;
 border-bottom: 1px solid white;
}

#related td.notes {
 background:#fbf7e3 none repeat scroll 0 0;
 border-bottom: 1px solid white;
}

#related td.comment a span, #related td.note a span {
 display: none;
}

#related td.comment a:hover, #related td.note a:hover {
 position: relative;
}

#related td.comment a:hover span {
 display: block;
 position: absolute;
 padding: 5px;
 border: solid 1px #779ee3;
 background: #dbe7f7;
 color: #43413E;
 font-weight: normal;
 text-decoration: none;
 width: 200px;
 left: -100px;
 top: -75px;
 text-align: left;
}

#related td.note a:hover span {
 display: block;
 position: absolute;
 padding: 5px;
 border: solid 1px #ccc;
 background: #eee;
 color: #43413E;
 font-weight: normal;
 text-decoration: none;
 width: 100px;
 left: -50px;
 top: -50px;
 text-align: left;
}

/* ------------- profiles -------------*/

#class-profiles table {
 width: 100%;
 margin-top: 10px;
}

#class-profiles tr#headers{
 background:#ccc url(images/grad-gray.png) repeat-x scroll top;
 color:#43413E;
}

#class-profiles tr#headers td{
 padding: 5px 5px 5px 10px;
 border-left:0 none;
 border:1px solid #c6c6c6;
}

#class-profiles td{
 font-weight: bold;
 padding: 5px 5px 5px 5px;
}

#class-profiles td.alt{
 background-color: #e6e6e6;
}

#class-profiles td.student{
 border-left: none;
}

#class-profiles td.comment a span, #class-profiles td.note a span {
 display: none;
}

#class-profiles td.comment a:hover, #class-profiles td.note a:hover {
 position: relative;
}

#class-profiles td.comment a:hover span {
 display: block;
 position: absolute;
 padding: 5px;
 border: solid 1px #779ee3;
 background: #dbe7f7;
 color: #43413E;
 font-weight: normal;
 text-decoration: none;
 width: 200px;
 left: -100px;
 top: -75px;
 text-align: left;
}

#class-profiles td.note a:hover span {
 display: block;
 position: absolute;
 padding: 5px;
 border: solid 1px #ccc;
 background: #eee;
 color: #43413E;
 font-weight: normal;
 text-decoration: none;
 width: 100px;
 left: -50px;
 top: -50px;
 text-align: left;
}

#class-profiles td.instruction {
 padding: 5px;
 background: #dbe7f7;
 color: #4677B1;
 font-weight: normal;
 text-decoration: none;
 text-align: left;
}
 
#class-profiles td.match{
 font-size: 250%;
 color:#4677B1;
}

#class-profiles td.classification p{
 background:#ffa200 url(images/grad-orange.gif) repeat-x scroll 0 0;
 border:1px solid #E47100;
 color:white;
 padding:8px;
 margin: 10px;
}

#class-profiles td.classification-yellow p{
 background:#ffa200 url(images/grad-yellow.gif) repeat-x scroll 0 0;
 border:1px solid #e3ab00;
 color:white;
 padding:8px;
 margin: 10px;
}

#class-profiles td.classification-green p{
 background:#ffa200 url(images/grad-green.png) repeat-x scroll 0 0;
 border:1px solid #839d1d;
 color:white;
 padding:8px;
 margin: 10px;
}.MsgWindow{ border: 1px solid #fff; -webkit-border-radius: 5px;
 -html-border-radius: 5px;
 -moz-border-radius: 5px;
 border-radius: 5px;  box-shadow: 0 0 20px #000;  -moz-box-shadow: 0 0 20px #000;  -webkit-box-shadow: 0 0 20px #000; } .drag-handle { padding: 5px; background: #557488; color: #fff; -webkit-border-radius: 5px 5px 0 0;
 -khtml-border-radius: 5px 5px 0 0;
 -moz-border-radius: 5px 5px 0 0;
 border-radius: 5px 5px 0 0; } .drag-controls {} .drag-controls img { display: inline;} .drag-contentarea{ /*CSS for Content Display Area div*/ color: #718496; text-align:justify; padding: 20px; border-top: 1px solid #fff; } .drag-buttons{ /* Css For the Buttons */  padding-top: 1em;  padding-bottom: 10px;  text-align:center;  clear: both;  padding-left: 50px; } .msgwin-buttons button{  font-size: .8em; } .drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/ border-top: 1px solid gray; } li.resources-key-lesson, li.resources-key-instcontent, li.resources-key-edresources, li.resources-key-videos, li.resources-key-assessment, li.resources-key-webcontent, li.resources-key-pde {  float:left;  } li.resources-key-pde {  width:190px;  }  .searchResultName h4 {  padding-left: 20px; }  .multi-media, .lessonplanvmc, .unitvmc, .lesson, .unit, .lit_connect, .activity, .practice, .rubric, .webresource, .teach_rsrc, .rubric, .ebook, .docs_scripts, .inter_maps, .bestprc_strategy, .homeworkhelp, .audio, .lessonplan, .sas, .unit, .instructionalcontent, .edresources,#SearchResultsContainer .assessment, .vidmap, .glef_doc, .instructionvideo, .video_lv, .glef_intv, .dbg, .crq, .digitalprofile, .bestprc_strategy, .practice, .lit_connect, .tutorial, .teach_rsrc, .activity, .homeworkhelp, .ebook, .ebook, .webresource, .docs_scripts, .audio, .dbq, .webbased { /*  border-bottom:1px solid #e7e7e7;  padding:10px;   margin-left:10px;  width:840px;*/ } /* .resources-key-lesson   { background: url(images/unitplans_16.png) no-repeat left center; padding-left: 20px; } .resources-key-instcontent  { background: url(images/content_16.png) no-repeat left center; padding-left: 20px; } .resources-key-edresources  { background: url(images/profile_16.png) no-repeat left center; padding-left: 20px; } .resources-key-assessment  { background: url(images/assessment_16.png) no-repeat left center; padding-left: 20px; } .resources-key-videos   { background: url(images/video_16.png) no-repeat left center; padding-left: 20px; } .resources-key-webcontent  { background: url(images/web_16.png) no-repeat left center; padding-left: 20px; } */ #itemTypeFilters { margin: 0 auto; } .icon-key ul { list-style: none; float: left; -moz-border-radius: 3px; border-radius: 3px; border: 1px solid #d3d3d3; padding: 0; margin: 5px; background: #F7F3E7; background-color: #f6ecc4; } .icon-key ul.assessment, .icon-key ul.educationalresources, .icon-key ul.instructionalcontent, .icon-key ul.column1, .icon-key ul.column2, .icon-key ul.column3 { width: 303px; padding: 0;} .icon-key ul li { padding: 5px 15px 5px 20px; font-size: 11px; } .icon-key ul.assessment li, .icon-key ul.educationalresources li, .icon-key ul.instructionalcontent li, .icon-key ul.column1 li, .icon-key ul.column2 li, .icon-key ul.column3 li { padding: 5px 15px 5px 44px; height: 36px; line-height: 36px; border-top: 1px solid #fff; clear: both; float: none; margin: 0; } .icon-key ul.assessment li:first-child, .icon-key ul.educationalresources li:first-child, .icon-key ul.instructionalcontent li:first-child, .icon-key ul.column1 li:first-child, .icon-key ul.column2 li:first-child, .icon-key ul.column3 li:first-child { /*font-weight:bold; font-size: 12px; background-color: #f6ecc4;*/ border-top: none; } .resources-key-assessment, .assessment h4    { background: url(images/assessment_32.png) no-repeat 10px center; padding-left: 36px; } /* .resources-key-constructedresponsequest, .crq h4      { background: url(images/constructedresponsequest_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-documentbasedquestion, .dbq h4      { background: url(images/documentbasedquestion_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-rubric, .rubric h4     { background: url(images/rubric_32.png) no-repeat 10px center; padding-left: 36px; } */ .resources-key-constructedresponsequest, .crq h4      { background: url(images/teacheresource_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-documentbasedquestion, .dbq h4      { background: url(images/teacheresource_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-rubric, .rubric h4     { background: url(images/teacheresource_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-educationalresources, .edresources h4   { background: url(images/educationalresources_32.png) no-repeat 10px center; padding-left: 36px; } .multi-media h4, .resources-key-multimedia, .vidmap h4, .glef_doc h4, .video_lv h4, .glef_intv h4, .instructionvideo h4  { background: url(images/multimedia_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-teacheresource, .teach_rsrc h4    { background: url(images/teacheresource_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-webbasedresource, .resources-key-webbasedpractice, .webbasedpractice h4, .webbased h4, .digitalprofile h4, .practice h4, .ebook h4, .webresource h4    { background: url(images/webbasedresource_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-instructionalcontent, .instructionalcontent h4 { background: url(images/instructionalcontent_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-activity, .activity h4    { background: url(images/activity_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-learningexperience, .learn_exp_unti h4   { background: url(images/learningexperience_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-lessonplan, .lessonplan h4    { background: url(images/lessonplan_32.png) no-repeat 10px center; padding-left: 36px; } .searchResultName h4  { background-position: 15px 12px; background-repeat: no-repeat; } /* .instructionalcontent h4, .activity h4 {  background: url(images/content_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .lessonplanvmc h4, .unitvmc h4, .lessonplan h4, .weblesson h4{  background: url(images/unitplans_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .edresources h4, .bestprc_strategy h4, .lit_connect h4, .tutorial h4, .teach_rsrc h4, .homeworkhelp h4 { background: url(images/profile_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .vidmap h4, .glef_doc h4, .video_lv h4, .glef_intv h4 .instructionvideo h4 {  background: url(images/video_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .dbq h4, #SearchResultsContainer .assessment h4, .dbg h4, .crq h4, .rubric h4 { background: url(images/assessment_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .webbased h4, .digitalprofile h4, .practice h4, .ebook h4, .webresource h4, .docs_scripts h4, .audio h4 { background: url(images/web_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .lesson h4, .unit h4, .learn_exp_unti h4 { background: url(images/unitplans_32.png) no-repeat 15px 12px; padding-left: 36px !important; } */   #noresults { margin: 0 auto; padding: 0 0 20px 0; } #searchresults #suggestions, #SearchResultsContainer #suggestions { clear: both; padding: 10px; } #suggestions ul { padding-top: 10px; } #suggestions ul li { background: url(images/doc_16.png); background-repeat: no-repeat;  padding-left: 25px; }   #searchresults{  margin: 5px 0 auto;  width: 960px; }  #SearchResultsContainer{  margin: 30px 0 auto;  width: 960px; }   #searchresults > div, #SearchResultsContainer > div, #SearchResultContainers > div{    width: 958px;    background: #fff;    border: 1px solid #d3d3d3;    -moz-border-radius:5px;    border-radius:5px;   }      #SearchResultsContainer > div > div, .SearchResultsContainer > div > div, #SearchResultContainers > div > div {    padding: 0 5px;   }      #SearchResultContainers > div { -moz-border-radius: 0 5px 5px 5px; border-radius: 0 5px 5px 5px; }    #noresults h3, #SearchResultsContainer h3, .SearchResultsContainer h3, #SearchResultContainers h3 {    clear: both;    display: block;    margin: 5px;    padding: 5px;    -moz-border-radius: 3px; border-radius:3px;    /*font-size: 12px;*/    background: none repeat scroll 0 0 #244358;    color: #fff;  }        #SearchResultsContainer h3 span, .SearchResultsContainer h3 span, #SearchResultContainers h3 span {    float: left;    line-height: 23px;    padding: 12px 5px !important;   }    #searchresults #noresults, #SearchResultsContainer #noresults, #SearchResultContainers #noresults {   border-bottom:none;   padding:0;  }     #suggestions li{   list-style:disc inside none;  }     #suggestions ul{ -moz-border-radius:3px 3px 3px 3px; -webkit-border-radius:3px 3px 3px 3px; -border-radius:3px 3px 3px 3px; background-color:#F6F8FA; margin:10px 0; padding:5px 10px;  }     #searchresults .icon-key, #SearchResultsContainer .icon-key, #SearchResultContainers .icon-key{   background: url("") repeat-x scroll 0 top #f7f3e7;   border:1px solid #f0ecdb;   padding: 0;   margin: 5px;   -moz-border-radius: 3px;   border-radius: 3px;  }    #SearchResultContainers .icon-key { margin: 5px 0; }    /*.icon-key ul {   margin: 0;   padding: 0;   }    .icon-key li {     display: block;     float: left;     font-size: 10px;     font-weight: normal;     margin: 0 15px;    }*/       .searchResultName {    float: left;    width: 560px;    }    .searchResultName h4 a {     display: block;     font-size: 18px;     font-weight: bold;     padding: 20px;    }     .searchResultType {    -moz-border-radius: 3px;    border-radius: 3px;    background-color: #F7F7F7;    border: 1px solid #D3D3D3;    color: #000000;    float: right;    margin: 5px;    padding: 20px;    width: 330px;    word-wrap: break-word;
   overflow: hidden;   } #SearchResultsContainer div.list-view > div, .SearchResultsContainer div.list-view > div, #SearchResultContainers div.list-view > div {  -moz-border-radius: 3px;  border-radius: 3px;  border-left: 1px solid #e7e7e7;  border-top: 1px solid #e7e7e7;  border-right: 1px solid #D3D3D3;  border-bottom: 1px solid #D3D3D3;  margin: 5px 0 0;  padding: 0; } div#divHiddenCurrentStandardId {  border: none;  background: none; }div#add input {  background: #b7d887 url(images/add_16.png) no-repeat scroll 6px center;  padding: 3px 3px 3px 24px; -webkit-border-radius: 3px;
 -khtml-border-radius: 3px;  -moz-border-radius: 3px;  border-radius: 3px;  border: 1px solid #666;  margin: 0 6px 10px 0;  float: right; } div#add input:hover { cursor: pointer; background-color: #9dd06e;} div#save {  padding-top: 15px;  text-align: center;  } div#save input {
 width: 515px !important;
 border: none !important;
 margin: 0 0 10px !important;
 padding: 2px 3px !important;
 background: #fff url(images/search-bg.gif) repeat-x left top !important;
 border: 1px solid #666 !important;
 -webkit-border-radius: 3px !important;
 -khtml-border-radius: 3px !important; 
 -moz-border-radius: 3px !important;
 border-radius: 3px !important;  } div#save input.cancel-btn, #save input.search-btn {  width: auto !important;  font: 12px/18px Helvetica Neue, Helvetica, Arial, sans-serif !important;  display: inline !important;  height: 21px !important; 
 line-height: 21px !important;
 border: 1px solid #d3d3d3 !important; } div#save input.search-btn {
 background: #dedede url(images/btn.png) repeat-x right top !important; 
 padding: 0 6px !important;  border: 1px solid #666 !important;  } div#save input.search-btn:hover {  cursor: pointer; 
 background: #9dd06e !important; 
 -moz-transition: background .25s linear;
 -o-transition: background .25s linear;
 -webkit-transition: background .25s linear;
 transition: background .25s linear;  } div#save input.cancel-btn {  color: #e59d83 !important;
 background: url(images/delete_16.png) no-repeat 4px center !important; 
 padding: 0 6px 0 20px !important;  border: none !important; } div#save input.cancel-btn:hover {  cursor: pointer !important;  border: none !important;  color: #f00 !important;  }#search-container{ padding:0;}     .searchbox {    width:600px;    margin: 10px auto 0;    background: none repeat scroll 0 0 #30618a;    padding: 10px;    -webkit-border-radius: 5px;
   -khtml-border-radius: 5px; 
   -moz-border-radius: 5px;
   border-radius: 5px;    float: none;   }     #search-container .searchbox input{    border: 0;    float:left;    height:22px;    width:580px;   }     #search-container .searchbox input.keysearchbtn{    width: 32px !important;
 height: 32px !important;
 margin-left: -32px;
 border: none;
   padding: 0;
   background: none;
   text-indent: -9999px;
   background: url(images/mag-glass.png) no-repeat center center;
   background-size: 16px 16px;
   box-shadow: none;   }     .dropdowns h3   {    background: none repeat scroll 0 0 #30618a;    border: none;    border-radius: 0;    box-shadow: none;    color: #FFFFFF;    margin: 1px -19px 15px;    padding: 10px 15px;    text-shadow: none;   }      .dropdowns {width: 646px; margin: 0 auto;}   .dropdowns div{       width: 260px;    padding: 0 20px 10px;    margin: 20px auto;       background: none repeat scroll 0 0 #FFFFFF;    border: 1px solid #ddd !important;    border-radius: 0 !important;    box-shadow: 2px 2px 1px rgba( 0, 0, 0, 0.10 ) !important;   }     .dropdowns div.float-left { float: left; margin: 20px 10px;}          #search-container .dropdowns select, #standard-search .dropdowns select {    margin-top:10px;    width: 258px;    padding: 2px 3px !important;
   background: #f7f7f7;
   border: 1px solid #d3d3d3 !important;
   -webkit-border-radius: 3px !important;
   -khtml-border-radius: 3px !important; 
   -moz-border-radius: 3px !important;
   border-radius: 3px !important;    margin-bottom: 10px;   }     .insert-button-div input { margin: 0 auto; }   .btn-small, .search-btn, #Search-Button{ clear: both; display: block;  width: 60px; margin-top: 10px; font-weight:bold; margin: 0 auto;  }   .filterboxes{    margin:0 auto 20px;    width:960px;   }     .filterboxes div{   /*-moz-border-radius: 3px;    -webkit-border-radius: 3px;    -border-radius: 3px;    background: #f6f1dd;    border:1px solid #d3d3d3;    width: 100%;    margin: 0 auto;*/   }     .filterboxes ul{   }     .filterboxes li{    /*float: left;    padding: 10px;       list-style:none outside none;    text-indent: 10px;*/   }     .filterboxes li input   {   margin-top:5px;   }     /*Comment: A width is needed in instances of multiline checkboxes to keep them aligned   .filterboxes ul.multibox li{    width: 160px;   }*/     .filterboxes p{    padding: 10px;    text-align: center;   }     #search-toggle {   clear: both;
   background: none repeat scroll 0 0 #30618A !important;  border: none !important;  padding: 20px 30px !important;   margin-bottom: 20px; }#search_tips { } #search_tips .panel { -moz-border-radius: 5px 5px 5px 5px;  background-color: #FFFFFF;  border: 1px solid #D3D3D3;  margin-bottom: 10px;  padding: 10px; } #search_tips .panel span { font-weight:bold; } li.resources-key-lesson, li.resources-key-instcontent, li.resources-key-edresources, li.resources-key-videos, li.resources-key-assessment, li.resources-key-webcontent, li.resources-key-pde {   float:left;   } li.resources-key-pde {   width:190px;   }   .searchResultName h4 {   padding-left: 20px; }   .multi-media, .lessonplanvmc, .unitvmc, .lesson, .unit, .lit_connect, .activity, .practice, .rubric, .webresource, .teach_rsrc, .rubric, .ebook, .docs_scripts, .inter_maps, .bestprc_strategy, .homeworkhelp, .audio, .lessonplan, .sas, .unit, .instructionalcontent, .edresources,#SearchResultsContainer .assessment, .vidmap, .glef_doc, .instructionvideo, .video_lv, .glef_intv, .dbg, .crq, .digitalprofile, .bestprc_strategy, .practice, .lit_connect, .tutorial, .teach_rsrc, .activity, .homeworkhelp, .ebook, .ebook, .webresource, .docs_scripts, .audio, .dbq, .webbased { /*   border-bottom:1px solid #e7e7e7;   padding:10px;     margin-left:10px;   width:840px;*/ }  /* .resources-key-lesson      { background: url(images/unitplans_16.png) no-repeat left center; padding-left: 20px; } .resources-key-instcontent    { background: url(images/content_16.png) no-repeat left center; padding-left: 20px; } .resources-key-edresources    { background: url(images/profile_16.png) no-repeat left center; padding-left: 20px; } .resources-key-assessment    { background: url(images/assessment_16.png) no-repeat left center; padding-left: 20px; } .resources-key-videos      { background: url(images/video_16.png) no-repeat left center; padding-left: 20px; } .resources-key-webcontent    { background: url(images/web_16.png) no-repeat left center; padding-left: 20px; } */ #itemTypeFilters { margin: 0 auto; } .icon-key ul { list-style: none; float: left; -moz-border-radius: 3px; border-radius: 3px; border: 1px solid #d3d3d3; padding: 0; margin: 5px; background: #F7F3E7; background-color: #f6ecc4; } .icon-key ul.assessment, .icon-key ul.educationalresources, .icon-key ul.instructionalcontent, .icon-key ul.column1, .icon-key ul.column2, .icon-key ul.column3 { width: 303px; padding: 0;} .icon-key ul li { padding: 5px 15px 5px 20px; font-size: 11px; } .icon-key ul.assessment li, .icon-key ul.educationalresources li, .icon-key ul.instructionalcontent li, .icon-key ul.column1 li, .icon-key ul.column2 li, .icon-key ul.column3 li { padding: 5px 15px 5px 44px; height: 36px; line-height: 36px; border-top: 1px solid #fff; clear: both; float: none; margin: 0; } .icon-key ul.assessment li:first-child, .icon-key ul.educationalresources li:first-child, .icon-key ul.instructionalcontent li:first-child, .icon-key ul.column1 li:first-child, .icon-key ul.column2 li:first-child, .icon-key ul.column3 li:first-child { /*font-weight:bold; font-size: 12px; background-color: #f6ecc4;*/ border-top: none; } .resources-key-assessment, .assessment h4       { background: url(images/assessment_32.png) no-repeat 10px center; padding-left: 36px; } /* .resources-key-constructedresponsequest, .crq h4      { background: url(images/constructedresponsequest_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-documentbasedquestion, .dbq h4      { background: url(images/documentbasedquestion_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-rubric, .rubric h4     { background: url(images/rubric_32.png) no-repeat 10px center; padding-left: 36px; } */ .resources-key-constructedresponsequest, .crq h4      { background: url(images/teacheresource_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-documentbasedquestion, .dbq h4      { background: url(images/teacheresource_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-rubric, .rubric h4     { background: url(images/teacheresource_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-educationalresources,  .edresources h4      { background: url(images/educationalresources_32.png) no-repeat 10px center; padding-left: 36px; } .multi-media h4, .resources-key-multimedia, .vidmap h4, .glef_doc h4, .video_lv h4, .glef_intv h4, .instructionvideo h4    { background: url(images/multimedia_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-teacheresource, .teach_rsrc h4       { background: url(images/teacheresource_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-webbasedresource, .resources-key-webbasedpractice, .webbasedpractice h4, .webbased h4, .digitalprofile h4, .practice h4, .ebook h4, .webresource h4       { background: url(images/webbasedresource_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-instructionalcontent, .instructionalcontent h4  { background: url(images/instructionalcontent_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-activity, .activity h4        { background: url(images/activity_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-learningexperience, .learn_exp_unti h4     { background: url(images/learningexperience_32.png) no-repeat 10px center; padding-left: 36px; } .resources-key-lessonplan, .lessonplan h4       { background: url(images/lessonplan_32.png) no-repeat 10px center; padding-left: 36px; }  .searchResultName h4    { background-position: 15px 12px; background-repeat: no-repeat; }  /* .instructionalcontent h4, .activity h4 {   background: url(images/content_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .lessonplanvmc h4, .unitvmc h4, .lessonplan h4, .weblesson h4{   background: url(images/unitplans_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .edresources h4, .bestprc_strategy h4, .lit_connect h4, .tutorial h4, .teach_rsrc h4, .homeworkhelp h4 {  background: url(images/profile_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .vidmap h4, .glef_doc h4, .video_lv h4, .glef_intv h4 .instructionvideo h4 {   background: url(images/video_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .dbq h4, #SearchResultsContainer .assessment h4, .dbg h4, .crq h4, .rubric h4 {  background: url(images/assessment_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .webbased h4, .digitalprofile h4, .practice h4, .ebook h4, .webresource h4, .docs_scripts h4, .audio h4 {  background: url(images/web_32.png) no-repeat 15px 12px; padding-left: 36px !important; } .lesson h4, .unit h4, .learn_exp_unti h4 {  background: url(images/unitplans_32.png) no-repeat 15px 12px; padding-left: 36px !important; }  */      #noresults  {  margin: 0 auto;  padding: 0 0 20px 0;  }  #searchresults #suggestions, #SearchResultsContainer #suggestions  {  clear: both;  padding: 10px;  }  #suggestions ul  {  padding-top: 10px;  }  #suggestions ul li  {  background: url(images/doc_16.png);  background-repeat: no-repeat;   padding-left: 25px;  }     #searchresults{   margin: 5px 0 auto;   width: 960px;  }   #SearchResultsContainer{   margin: 30px 0 auto;   width: 960px;  }     #searchresults > div, #SearchResultsContainer > div, #SearchResultContainers > div{        width: 958px;        background: #fff;        border: 1px solid #d3d3d3;        -moz-border-radius:5px;        border-radius:5px;      }            #SearchResultsContainer > div > div, .SearchResultsContainer > div > div, #SearchResultContainers > div > div {        padding: 0 5px;      }            #SearchResultContainers > div { -moz-border-radius: 0 5px 5px 5px; border-radius: 0 5px 5px 5px; }        #noresults h3, #SearchResultsContainer h3, .SearchResultsContainer h3, #SearchResultContainers h3 {       clear: both;       display: block;       margin: 5px;       padding: 5px;       -moz-border-radius: 3px;  border-radius:3px;       /*font-size: 12px;*/       background: none repeat scroll 0 0 #244358;       color: #fff;    }                #SearchResultsContainer h3 span, .SearchResultsContainer h3 span, #SearchResultContainers h3 span {       float: left;       line-height: 23px;       padding: 12px 5px !important;     }        #searchresults #noresults, #SearchResultsContainer #noresults, #SearchResultContainers #noresults {     border-bottom:none;     padding:0;    }          #suggestions li{     list-style:disc inside none;    }         #suggestions ul{  -moz-border-radius:3px 3px 3px 3px;  -webkit-border-radius:3px 3px 3px 3px;  -border-radius:3px 3px 3px 3px;  background-color:#F6F8FA;  margin:10px 0;  padding:5px 10px;   }         #searchresults .icon-key, #SearchResultsContainer .icon-key, #SearchResultContainers .icon-key{     background: url("") repeat-x scroll 0 top #f7f3e7;     border:1px solid #f0ecdb;     padding: 0;     margin: 5px;     -moz-border-radius: 3px;     border-radius: 3px;    }        #SearchResultContainers .icon-key { margin: 5px 0; }        /*.icon-key ul {     margin: 0;     padding: 0;     }       .icon-key li {         display: block;         float: left;         font-size: 10px;         font-weight: normal;         margin: 0 15px;       }*/             .searchResultName {       float: left;       width: 560px;       }       .searchResultName h4 a {         display: block;         font-size: 18px;         font-weight: bold;         padding: 20px;       }         .searchResultType {       -moz-border-radius: 3px;       border-radius: 3px;       background-color: #F7F7F7;       border: 1px solid #D3D3D3;       color: #000000;       float: right;       margin: 5px;       padding: 20px;       width: 330px;       word-wrap: break-word;
      overflow: hidden;     }  #SearchResultsContainer div.list-view > div, .SearchResultsContainer div.list-view > div, #SearchResultContainers div.list-view > div {   -moz-border-radius: 3px;   border-radius: 3px;   border-left: 1px solid #e7e7e7;   border-top: 1px solid #e7e7e7;   border-right: 1px solid #D3D3D3;   border-bottom: 1px solid #D3D3D3;   margin: 5px 0 0;   padding: 0; } div#divHiddenCurrentStandardId {   border: none;   background: none; }div#add input {   background: #b7d887 url(images/add_16.png) no-repeat scroll 6px center;   padding: 3px 3px 3px 24px; -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;   -moz-border-radius: 3px;   border-radius: 3px;   border: 1px solid #666;   margin: 0 6px 10px 0;   float: right; } div#add input:hover { cursor: pointer; background-color: #9dd06e;} div#save {   padding-top: 15px;   text-align: center;   } div#save input {
  width: 515px !important;
  border: none !important;
 margin: 0 0 10px !important;
 padding: 2px 3px !important;
 background: #fff url(images/search-bg.gif) repeat-x left top !important;
 border: 1px solid #666 !important;
 -webkit-border-radius: 3px !important;
  -khtml-border-radius: 3px !important; 
  -moz-border-radius: 3px !important;
  border-radius: 3px !important;   } div#save input.cancel-btn, #save input.search-btn {   width: auto !important;   font: 12px/18px Helvetica Neue, Helvetica, Arial, sans-serif !important;   display: inline !important;   height: 21px !important; 
  line-height: 21px !important;
  border: 1px solid #d3d3d3 !important; } div#save input.search-btn {
  background: #dedede url(images/btn.png) repeat-x right top !important; 
  padding: 0 6px !important;   border: 1px solid #666 !important;   } div#save input.search-btn:hover {   cursor: pointer; 
  background: #9dd06e !important; 
  -moz-transition: background .25s linear;
 -o-transition: background .25s linear;
 -webkit-transition: background .25s linear;
 transition: background .25s linear;   } div#save input.cancel-btn {   color: #e59d83 !important;
  background: url(images/delete_16.png) no-repeat 4px center !important; 
  padding: 0 6px 0 20px !important;   border: none !important; } div#save input.cancel-btn:hover {   cursor: pointer !important;   border: none !important;   color: #f00 !important;   }#search-container{ padding:0;}         .searchbox {       width:600px;       margin: 10px auto 0;       background: none repeat scroll 0 0 #30618a;       padding: 10px;       -webkit-border-radius: 5px;
      -khtml-border-radius: 5px; 
      -moz-border-radius: 5px;
      border-radius: 5px;       float: none;     }          #search-container .searchbox input{       border: 0;       float:left;       height:22px;       width:580px;     }          #search-container .searchbox input.keysearchbtn{       width: 32px !important;
  height: 32px !important;
  margin-left: -32px;
  border: none;
      padding: 0;
      background: none;
      text-indent: -9999px;
      background: url(images/mag-glass.png) no-repeat center center;
      background-size: 16px 16px;
      box-shadow: none;     }          .dropdowns h3     {       background: none repeat scroll 0 0 #30618a;       border: none;       border-radius: 0;       box-shadow: none;       color: #FFFFFF;       margin: 1px -19px 15px;       padding: 10px 15px;       text-shadow: none;     }           .dropdowns {width: 646px; margin: 0 auto;}     .dropdowns div{             width: 260px;       padding: 0 20px 10px;       margin: 20px auto;             background: none repeat scroll 0 0 #FFFFFF;       border: 1px solid #ddd !important;       border-radius: 0 !important;       box-shadow: 2px 2px 1px rgba( 0, 0, 0, 0.10 ) !important;     }         .dropdowns.multi-select div{       padding: 0;       margin: 20px auto 0;       border: none;       border-radius: 3px !important;       box-shadow: none;     }         .dropdowns.multi-select div.chosen-drop     {       margin-top: 0;     }         .dropdowns.multi-select .chosen-choices     {       border: none;     }         .dropdowns div.float-left { float: left; margin: 20px 10px;}                   #search-container .dropdowns select, #standard-search .dropdowns select {       margin-top:10px;       width: 258px;       padding: 2px 3px !important;
     background: #f7f7f7;
     border: 1px solid #d3d3d3 !important;
     -webkit-border-radius: 3px !important;
      -khtml-border-radius: 3px !important; 
      -moz-border-radius: 3px !important;
      border-radius: 3px !important;       margin-bottom: 10px;     }         .insert-button-div input { margin: 0 auto; }     .btn-small, .search-btn, #Search-Button{  clear: both;  display: block;   width: 60px;  margin-top: 10px;  font-weight:bold;  margin: 0 auto;   }     .filterboxes{       margin:0 auto 20px;       width:960px;     }         .filterboxes div{      /*-moz-border-radius: 3px;       -webkit-border-radius: 3px;       -border-radius: 3px;       background: #f6f1dd;       border:1px solid #d3d3d3;       width: 100%;       margin: 0 auto;*/     }         .filterboxes ul{     }         .filterboxes li{       /*float: left;       padding: 10px;             list-style:none outside none;       text-indent: 10px;*/     }         .filterboxes li input     {     margin-top:5px;     }         /*Comment: A width is needed in instances of multiline checkboxes to keep them aligned     .filterboxes ul.multibox li{       width: 160px;     }*/         .filterboxes p{       padding: 10px;       text-align: center;     }          #search-toggle  {     clear: both;
     background: none repeat scroll 0 0 #30618A !important;   border: none !important;   padding: 20px 30px !important;     margin-bottom: 20px; }#search_tips { } #search_tips .panel { -moz-border-radius: 5px 5px 5px 5px;   background-color: #FFFFFF;   border: 1px solid #D3D3D3;   margin-bottom: 10px;   padding: 10px; }  #search_tips .panel span { font-weight:bold; }