/*general body - used by main portal document */ 
body{
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: 'Trebuchet MS',Verdana,sans-serif;
	font-size:.8em;
	background: #ebebe6;
}

/*PART 1 - MAIN LAYOUT BLOCKS*/
/*outer wrapper for portal content (decorative - child is #portalContainer )*/
#portalOuterContainer{
}

/*inner wrapper for portal content (decorative - children are #header #container and #footer )*/

#portalContainer{
	width: 990px;
	margin: 0px auto;
}

/*wrapper masthead  and site navigation 
 two possible states - logged in headerMax, not logged in - headerMin*/
#headerMax,#headerMin{
	width: 99%;
	margin: 5px auto 0px auto;
	height: 100%;
}
#headerMax {
}
#headerMin{
	background: #fff;
}

/*accessibility links wrapper */
#skipNav{
}

/*site hierarchy breadcrumb*/
#siteHierarchy{
    clear:both;
    float:none;
    margin:0;
    list-style: none;
    padding:.5em 0;
}
/*style the standard breadcrumbseparator
can set display:none if needed because the list-style is taking care of it*/
.breadSeparator{
}
#siteHierarchy li{
    display:inline;
}
#siteHierarchy li a, #siteHierarchy li a:visited{
    color:#09c;
}

/*wrapper for site content (includes as children #toolMenuWrap,#content and #footer)*/
#container{
	width: 99%;
	clear:both;
	margin: 13px auto 0px auto;
	padding: 0;
	background-image: url("images/content_bg.gif");
	background-repeat: repeat-y;
	background-color: white;
}

/*wrapper for #toolMenu - children are #worsiteLogo,#toolMenu*/
#toolMenuWrap{
	float: left;
	color: #000;
	text-align: right;
	padding:0;
}

#toolMenuWrap:hover{
	/* border-right:2px solid #09c; */
}
/*depending on site type - different hover effects for the tool menu parent block
site types are a local setting - adjust */
.workspace #toolMenuWrap:hover{
	/* border-right:2px solid #aaa; */
}
.course #toolMenuWrap:hover{
	/* border-right:2px solid #FC6; */
}
.project #toolMenuWrap:hover{
	/* border-right:2px solid #9CF; */
}


/*wrapper for site content (portlets) -  children can be #col1 or #col1of2 and #col2of2 depending in the number of columns*/
#content {
	padding: 4px 10px 0px 15px;
	margin-top: 0;
	margin-left: 165px;
	background: white;
}
#content:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
/*margin tweak for IE to avoid float drop*/
* html #content{ height: 1%}

/*wrapper for footer blocks*/
#footer{
	color: #000;
	font-size: x-small;
	margin:0;
	padding: 14px 0 0 0;
	width: auto;
	clear: both;
	top: 0;
	/* border-top: 1px solid #09c; */
	background-image: url("images/content_bottom2.gif");
	background-repeat: no-repeat;
	background-color: #ebebe6;
	/*
	background-position: 163px 0; */
	text-align: center;
}
* html #footer{ height: 1%}

/*PART 2 - HEADER IFRAME SETTINGS*/	
/*iframe sizes for different states*/
/*gone for 2.3
.sitenav-log{
	user not logged in
	height: 90px;
	width: 100%;
	border-bottom:1px solid #09c
}

.sitenav-max{
	user logged in 
	height: 7.8em;
	max-height:140px;
	min-height:100px;
	width: 100%;
}

* html .sitenav-max{
	user logged in - iframe height tweak for IE
	height: 8em;
	}
.sitenav-min{
	no logos or banners
	height: 2em;
	width: 100%;
}*/

/*PART 3 - HEADER BLOCKS (BRANDING,LOGIN)*/
/*depending on site type - different border-bottoms for the site menu parent block
site types are a local setting - adjust */
.workspace .siteNavWrap{
	/* border-bottom:3px solid #aaa; */
}
.course .siteNavWrap{
	/* border-bottom:3px solid #fc6; */
}
.project .siteNavWrap{
	/* border-bottom:3px solid #9cf; */
}
#siteNavWrapper{
	margin: 0;
	/* background: url("images/banner_kids.jpg") bottom left no-repeat white; */
}



/*wrapper for mast head elements - children are 3 blocks - #mastLogo,#mastBanner,#mastLogin*/
#headerMin #mastHead{
	clear: both;
	background: url("images/courses_bar.jpg") bottom left no-repeat;
	padding-bottom: 4px; 
	margin-bottom: -13px;
}
#headerMax #mastHead{
	clear: both;
	background: none;
	padding-bottom: 0; 
	margin: 0;
}
/*container wrapping branding images - portal outputs one /library/skin/<skin name>/images/logo_inst.gif
that can be used or hidden,can also use a background:url(images/<image name>.<ext>) in this block,or both superimposing them*/
#mastLogo{
	display:none;
	/* float: right; */
	/* background: url("images/banner_courses.gif") right bottom no-repeat white;
	padding-bottom: 102px; */
}

/*the portal outputs an image that can be treated here or hidden with display:none*/
#mastLogo img{
	/* margin: 1em .5em; */
	display:none;
}

/*another container wrapping branding images - portal outputs one /library/skin/<skin name>/images/banner_inst.gif
that can be used or hidden,can also use a background:url(images/<image name>.<ext>) in this block,or both superimposing them*/
#mastBanner{
	width: auto;
	vertical-align: top;
	/* float: left; */
}

/*the portal outputs an image that can be treated here or hidden with display:none*/
#mastBanner img{
	/* margin: 1em .5em; */
	display: none;
}

/*container wrapping,depending on Sakai settings:1) a login form,2) a login link for CAS,3) a logout link*/
#headerMin #mastLogin{
	text-align: left;
	padding-top: 0px;
	vertical-align: middle;
	background: url("images/itsacademy_logo_orig_rond.jpg") top left no-repeat;
	width: 100%; 
	height: 102px;
}
#headerMax #mastLogin{
	text-align: left;
	padding-top: 10px;
	padding-right: 0px;
	vertical-align: middle;
	background: #fff url(images/itsacademy_logo_orig_rond.jpg) top left no-repeat;
	height: 70px;
}

/*the anchor for the login link for CAS above can be an image - treated here*/
#mastLogin img{
	margin-top: 0;
	border: 0;
}

/*login links for CAS,logout link*/
#mastLogin a,#mastLogin a:visited{
	margin-top: 0;
	color: #000;
	font-weight: bolder;
	text-decoration: none;
	
	font-family: Arial;
	font-size: 8px;
	background: url(images/logout.jpg) no-repeat;
    
    padding: 8px 30px 10px 23px;
}

#headerMin #mastLogin a, #headerMin #mastLogin a:visited{
	color:#000
}
#headerMax #mastLogin a, #headerMax #mastLogin a:visited{
	color:#0097CB;
	font-weight: normal;
	font-size: 12px;
}

#mastLogin a:hover{
	text-decoration: underline;
}

/*login form elements - in order,form,userid field,password field,login button - first 2 have labels associated with them,gettable as #loginForm label{
}

#loginForm is the form for login - contains children #eid #pw #submit*/
#loginForm {
	text-transform: capitalize;
	font-size: 11px;
	font-family: arial;
	float: right;
	width: 320px;
}

#loginForm label {
	color: #e10078;
	width: 90px;
	display: block;
	position: relative;
	float: left;
	top: 10px;
}

#loginForm input {
	font-size: 10px;
	border-width: 1px;
	border-style: solid;
	border-color: #fff;
	background-color: #fff;
	color: #e10078;
	float: left;
	position: relative;
	left: -90px;
	top: 25px;
	margin-right: -60px;
}

#loginForm input:focus {background-color: #fff;}

#eid{
	width: 100px;
}

#pw{
	width: 100px;
}

#loginForm #submit{
	width: 60px;
	height: 17px;
	left: -10px;
	border: 0;
}

#submit:hover{
	
}

/*block for login/logout links */
#loginLinks{
	margin: 0 0 2em 0;
	text-align: right;
}

#loginLinks a {
	color: #e10078 !important;
	/*padding-right: 15px !important;*/    
}

/*main CAS link*/
#loginLink1{
}

/*secondary CAS link*/
#loginLink2{
}

/*PART 4 - SITE NAVIGATION - children of #siteNavBlock*/
/*outer wrapper for the site navigation blocks - it is a class,not an id because it can be overloaded with other values having to do with site type
so for example <div class="tabHolder workspace"> so that different site types can be treated differently via inheritance - children are #siteNavWrap and #navBottom*/
.siteNavWrap{
	width: 100%;
	/* background: #09c url(images/sitenavback.jpg) top left repeat-x; */
	/* background: url("images/banner_kids.jpg") top left no-repeat white; */
	padding: 0;
	margin: 0;
	/* float: left; */
	/* border-top: 1px solid white; */
	clear:both;
}

/*wrapper for the site links and site <select> blocks - children are #siteNav and #tabNav */
#siteNav{
	/* width:100%; */
	/* padding-top: 101px;  */
	/* height: 27px; */
	/* add image as background here */
	margin: 0;
	padding:0;
}

/*wrapper for the site link list   - the #siteLinkList child)*/
#linkNav{
	/* float:left; */
	padding: 0 10px 0 23px;
	background: url("images/courses_bar.jpg") top left no-repeat #ebebe6;
	color: white;
	height: 44px; 
	margin: 0;
	width: auto;
	margin-bottom: -15px; 
}



/*wrapper for the site <select> that is displayed when more than x sites are in the link list*/
#selectNav{
	padding: .4em .4em .2em .2em;
	text-align: right;
	vertical-align: middle;
	float:right;
	margin-top: -15px;
}
/*the <select> contextually defined*/
#selectNav select{
	display:inline;
	font-size: .9em;
	margin: 0 3px;
	padding: 0;
	margin-top: -33px;
}

#selectNav select option{
	background: #fff;
}

/*a ul - the li below are outer wrappers for the links to sites */
#siteLinkList{
/*	white-space: nowrap;*/
	/* line-height:2em; */
	list-style: none;
	/* font-size: 1em; */
	margin: 0;	
	padding: 0;
	height: 27px;
	/* width: auto; */
	vertical-align: top;
	line-height: normal;
}

/* star hack to give the div 'layout' in IE */
* html #siteLinkList {
	height: 1%;
}

#siteLinkList:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}

/*list elements - children are <span> and <a>*/
#siteLinkList li{
	/* display: inline; */
	/*line-height: 2.3em; */
	padding: 0;
	margin: 0;
	display:inline;
	float: left;
}

/*span shim for fine grained manipulation of link display (decorative)*/
#siteLinkList li span{
	margin: 0;
	padding:0;
}

/*links to other sites*/
#siteLinkList a,#siteLinkList a:link,#siteLinkList a:visited{
	color: #fff;
	padding: 0 8px;
	height: 26px;
	line-height: 27px;
	font-size: 12px;
	text-decoration: none;
	margin:0;
	display: block;
	_display: inline-block;
	width: auto;
}

/*the current sites' link*/

#siteLinkList .selectedTab, #siteLinkList .more-active {

    background:url(images/norm_right_on.gif) no-repeat scroll right top;
}

#siteLinkList .selectedTab a,
	#siteLinkList .selectedTab a:link,
	#siteLinkList .selectedTab a:visited,
	#siteLinkList .selectedTab a:hover{
	color: #CA0646;
	font-weight: bold;
	text-decoration: none;
	/*background: url("images/nav_back.gif"); */
	background:url(images/norm_left_on.gif) no-repeat;
	
	/* height: 100%; */
	margin: 0;
	/* line-height: 27px; */
	 padding: 3px 10px 0px 10px; 
	/*border-right: 2px solid #CA0646;
	border-left: 2px solid #CA0646;*/
}

/*hover state for links to other sites*/
#siteLinkList a:hover{
	color: #fff;
	text-decoration: underline;
}

.fixTabsIE{
	visibility: hidden;
	display: none;
	border-width: 0;
}

/*wrapper for the site <select> that is displayed when more than x sites are in the link list*/
.dhtml_more_tabs {
	position: absolute;
	top: 2.5em;
	right: 4px;
	line-height: 1.5em;
	background-color: #FFFFFF; 
	border: 2px solid #013F68;
	border-top-width: 0;
	width: 75%;
	z-index: 9999;
}

html>body .dhtml_more_tabs {
	right: 2px;
}

.dhtml_more_tabs div.termContainer {
	float: left;
	padding: 0.8em;
	text-align: left;
	width: 28%;
}
	
.dhtml_more_tabs h4 {
	font-size: 1.06em;
	margin: 0;
	padding: 0;
	font-weight: normal;
}

.dhtml_more_tabs  ul {
	list-style: none;
	margin: 0;
	padding: 0;	
}

.dhtml_more_tabs  li {
	margin-bottom: 0.4em; 
	line-height: 1.1em;
}

.dhtml_more_tabs div:first-child {
	border-left: none;
}

.dhtml_more_tabs a:link, .dhtml_more_tabs a:visited, .dhtml_more_tabs active{
	color: #35b;
	text-decoration: underline !important;
}

.dhtml_more_tabs a:hover {
	color: #53b;
	text-decoration: underline !important;
}

#more_tabs_instr  {
	color: #333;
	font-size: 1em;
	margin: 0.4em 0.8em 0.8em;
	padding-top: 0.4em;
	clear: both;
	border-top: 1px solid #CCC;
	text-align: left;
	line-height: 1.1em;
}

#portalMask {
	background-color: #EEEEEE; 
	position: absolute;
	z-index: 9000;
	top:0;
	left:0;
	filter:alpha(opacity=50);
	opacity: 0.50;
	-moz-opacity: 0.50;
}

/*block in case need to display any decorative element above or below the .tabHolder block*/
#navBottom{
	display: none;
}

/*PART 5 - SITE TOOL LINKS  - children of #toolMenuWrap	*/
/*wrapper for ul that lists the links to tools*/

#toolMenu ul {
	width: 165px;
	margin: 5px 0 0 0;
	padding: 0;
	list-style-type: none;
}

#toolMenu ul li {	
	font-size: 12px;
	font-family: Verdana,Arial,sans-serif;
	font-weight: normal;
	text-align: right;
	line-height: 0;
	background-position: bottom right;
	background-image: url("images/bg_nav.gif");
}

#toolMenu ul li a {
	display: block;
	color: #44286F;
	font-weight: bold;
	text-decoration: none;
	padding-top: 8px;
	background-position: top right;
	line-height: 1em;
}

#toolMenu ul li a:hover {
	text-decoration: underline;
}

#toolMenu ul li a span {
	display: block;
	padding: 0 16px 8px;
}

#toolMenu li a:link,#toolMenu li a{
    padding-right : 18px !important;
    background-position : 94% 50% !important;
    background-repeat : no-repeat !important;
}

#toolMenu ul li.selectedTool {
	font-weight: bold;
	padding-top: 8px;
	line-height: 1em;
	background-position: top left;
	background-image: url("images/bg_nav.gif");
}

#toolMenu ul li.selectedTool span {
	background-position: bottom left;
	padding: 0 34px 11px;
	height: 1%;
	background-image: url("images/bg_nav.gif");
	display: block; 
	margin: 0;
	margin-bottom: -2px;
	color: #44286F;
}

#tabBottom {
	display: none;
}

/*span shim for fine grained manipulation of link display (decorative)
also hide if are going to be using icon links (as background of <a> nad <li>
*/

#toolMenu li span{
/*comment this line for a return to sanity
display:none*/
}



/*PART 6 - SITE AFFILIATION,SITE TYPE/STATUS AND PRESENCE - children of #toolMenuWrap	*/
/*site logo wrapper*/
#worksiteLogo{
	width: 9.7em;
	height: auto;
	overflow: hidden;
	display: block;
}

/*site logo image - Sakai may output,depending on installation,an image here based in site affiliation. Site owner may also point to a url - overriding the Sakai provided image*/
#worksiteLogo img{
	display: block;
	margin: .5em auto;
}

/*wrapper for the string that Sakai will output based on site type (ie. project,course) this is open ended and institution specific*/
#siteType{
	display: none;
}

/*wrapper for the string that Sakai will output based on site status when status is "Unpublished"*/
#siteStatus{
	text-transform: capitalize;
	text-align: left;
	background: url("images/warn.gif") .2em center no-repeat #fff;
	border: 1px solid  #aaa;
	clear: both;
	color: #aaa;	
	font-size: 	small;
	margin: 5px 2px 15px 2px;
	padding: 3px 3px 3px 2em;
}

/*wrapper for all elements of presence display */
#presenceWrapper{
	width: 165px;
	margin-top: .5em;
}

/*wrapper for title of iframe ("Users present")*/
#presenceTitle{
	font-size: .7em;
	text-align: right;
	margin-right: .5em;
}

/*of presence iframe*/
#presenceIframe{
	height: 100px;
	margin: .3em;
	width: 155px;
}

/*PART 7 - PORTLETS - children of #content*/
/*a page may display portlets in one column or two columns - the next three id selectors address the three possiblities - sole child of column is the .portlet */
#col1{
	padding-right: .5em;
}

#col1of2{
	width: 49%;
	float: left;
	margin: 0;
}

#col2of2{
	width: 50%;
	float: right;
}

/*wrapper class for portlets - decorative -  contains two wrapper block children:.portletTitleWrap and  .portletMainWrap*/
.portlet{
	background-color: white;
}

/*.portletTitleWrap are wrappers for the tool title documents,
below they are contextually defined depending on the column as an example,as you may want to adjust the widths accordingly*/ 
#col1 .portletTitleWrap{
	width: 99%;
	/* border-bottom: 2px solid #09c; */
}

#col1 .portletMainWrap{
	width: 99%;
}

#col1of2 .portletTitleWrap,#col2of2 .portletTitleWrap{
	width: 98.5%;
	/* border-bottom: 2px solid #09c; */
}

#col1of2 .portletMainWrap,#col2of2 .portletMainWrap{
	width: 98.5%;
	margin-bottom: .5em;
}

.portletTitle{
	width: 100%;
	height:100%;
	overflow:hidden;
	border-bottom:1px solid #ddd;		

}

.portletTitle .title img{
	margin: 0 0 0px 0;
	vertical-align: baseline;
	width: 18px;
	border:none;
	height: 16px;
}

.portletTitle .title{
	padding: 2px 4px 3px 0;
	height: 1.75em;
	float: left;
	color: #000;
}

.portletTitle .title h2{
	display: inline;
	margin: 0;
	padding: 0;
	color: #000;
	font-weight: lighter;
	font-size: 20px;
	font-family: verdana;
	
}

.portletTitle .title a{
	 background: url(images/reload.gif) center left no-repeat;
}

.portletTitle .title a:hover{
	 background: url(images/reload_h.gif) center left no-repeat; 
}

.portletTitle .action{
	padding: 5px 4px 0px 2px;
	text-align: right;
	height: 1em;
	vertical-align: bottom;
}

.portletTitle .action img{
	margin: 0;
	border:none;
	vertical-align: text-bottom;
	display: none;
	/* width: 16px !important; */
}

.portletTitle .action a{
	background: url(images/help.gif) center right no-repeat;
	display: block;
	height: 20px;
	width: 20px;
	float:right;
}

.portletTitle .action a:hover{
	background: url(images/help_h.gif) center right no-repeat;
}



/*iframes for portlet title and portlet content*/
/*gone for 2.3
.portletTitleIframe{
	margin: 0;
	height: 1.8em;
	width: 100%;
}
*/
.portletMainIframe{
	text-align: left;
	margin-bottom: .5em;
	height: auto;
	border: none;
}

/*PART 8 - FOOTER BLOCKS - descendants of #footer TODO - unpack the 3 descendants and make them all children*/
/*wrapper for links going to external sites - links are output as a series  separated via pipes (TODO:make a list already)*/
.footerExtNav{
	padding-top: .5em;
	padding-bottom: .5em;
	background: #ebebe6;
	margin-top: 0;
	display: none;
}

/*the links displayed inside the wrapper above*/
.footerExtNav a,.footerExtNav A:link,.footerExtNav A:visited{
	color: #000;
	text-decoration: none;
	margin: 1em;
}

.footerExtNav a:hover{
	color: #aaa;
	text-decoration: underline;
	margin: 1em;
}

/*a second wrapper - server info,build,etc*/
#footerInfo{
	font-size: xx-small;
	text-align: center;
	clear: both;
	padding-bottom: 1em;
	/*background: none;*/
	background: #ebebe6;
}

#footerInfo a {
	color: #44286f;
	text-decoration: none;
}

#footerInfo img{
	margin-top: .5em;
	margin-bottom: .5em;
}

/*a third wrapper - reserved for copyright blurbs*/
.sakaiCopyrightInfo{
	color: #44286f;
	background: #ebebe6;
	display: none;
}

/*PART 8 - CONVENIENCE*/
/*used to hide various blocks from sighted users that are in the source to help with accessibility*/
.skip{
	display: inline;
	position: absolute;
	top: -999px;
	left: -999px;
	height: 0;

}

/* PART 9 - Tool Icons */

.icon-osp-evaluation {
	background-image: url(../../image/silk/thumb_up.png);
}
.icon-osp-glossary {
	background-image: url(../../image/silk/text_list_bullets.png);
}
.icon-osp-matrix {
	background-image: url(../../image/silk/table.png);
}
.icon-osp-presentation {
	background-image: url(../../image/silk/briefcase.png);
}
.icon-osp-presLayout {
	background-image: url(../../image/silk/layout_content.png);
}
.icon-osp-presTemplate {
	background-image: url(../../image/silk/application_view_tile.png);
}
.icon-osp-style {
	background-image: url(../../image/silk/style.png);
}
.icon-osp-wizard {
	background-image: url(../../image/silk/wand.png);
}
.icon-sakai-announcements {
	background-image: url(../../image/silk/flag_blue.png);
}
.icon-sakai-chat {
	background-image: url(../../image/silk/user_comment.png);
}
.icon-sakai-datapoint {
	background-image: url(../../image/silk/chart_line.png);
}
.icon-sakai-discussion {
	background-image: url(../../image/silk/comments.png);
}
.icon-sakai-dropbox {
	background-image: url(../../image/silk/folder_page.png);
}
.icon-sakai-gmt {
	background-image: url(../../image/silk/award_star_gold_3.png);
}
.icon-sakai-help {
	background-image: url(../../image/silk/help.png);
}
.icon-sakai-iframe {
	background-image: url(../../image/silk/page_world.png);
}
.icon-sakai-iframe-site {
	background-image: url(../../image/silk/house.png);
}
.icon-sakai-mailbox {
	background-image: url(../../image/silk/email.png);
}
.icon-sakai-messages {
	background-image: url(../../image/silk/comment.png );
}
.icon-sakai-metaobj {
	background-image: url(../../image/silk/application_form.png);
}
.icon-sakai-membership {
	background-image: url(../../image/silk/group.png);
}
.icon-sakai-news {
	background-image: url(../../image/silk/rss.png);
}
.icon-sakai-podcasts{
	background-image: url(../../image/silk/ipod_cast.png );
}
.icon-sakai-postem{
	background-image: url(../../image/silk/database_table.png );
}
.icon-sakai-preferences{
	background-image: url(../../image/silk/cog.png );
}
.icon-sakai-rutgers-linktool{
	background-image: url(../../image/silk/application.png);
}
.icon-sakai-sections{
	background-image: url(../../image/silk/group_gear.png );
}
.icon-sakai-singleuser{
	background-image: url(../../image/silk/user.png );
}
.icon-sakai-syllabus{
	background-image: url(../../image/silk/script.png );
}
.icon-blogger{
	background-image: url(../../image/silk/book_edit.png );
}
.icon-sakai-assignment-grades{
	background-image: url(../../image/silk/page_edit.png );
}
.icon-sakai-forums{
	background-image: url(../../image/silk/comments.png );
}
.icon-sakai-gradebook-tool{
	background-image: url(../../image/silk/report.png);
}
.icon-sakai-mailtool {
	background-image: url(../../image/silk/email_go.png );
}
.icon-sakai-poll{
	background-image: url(../../image/silk/chart_bar.png);
}
.icon-sakai-sitestats {
	background-image: url(../../image/silk/chart_bar.png);
}
.icon-sakai-presentation {
	background-image: url(../../image/silk/monitor.png);
}
.icon-sakai-profile {
	background-image: url(../../image/silk/vcard_edit.png);
}
.icon-sakai-reports {
	background-image: url(../../image/silk/report_magnify.png);
}
.icon-sakai-resetpass {
	background-image: url(../../image/silk/key.png);
}
.icon-sakai-resources {
	background-image: url(../../image/silk/folder.png);
}
.icon-sakai-rwiki {
	background-image: url(../../image/silk/page_white_edit.png);
}
.icon-sakai-samigo {
	background-image: url(../../image/silk/pencil.png);
}
.icon-sakai-schedule {
	background-image: url(../../image/silk/calendar.png);
}
.icon-sakai-search {
	background-image: url(../../image/silk/find.png);
}
.icon-sakai-siteinfo {
	background-image: url(../../image/silk/application_lightning.png );
}
.icon-sakai-sitesetup{
	background-image: url(../../image/silk/application_lightning.png );
}
.icon-sakai-site-roster {
	background-image: url(../../image/silk/vcard.png);
}

/*admin tools*/
.icon-sakai-users{
	background-image: url(../../image/silk/folder_user.png);
}
.icon-sakai-aliases{
	background-image: url(../../image/silk/tag_blue.png);
}
.icon-sakai-sites{
	background-image: url(../../image/silk/application_cascade.png);
}
.icon-sakai-realms{
	background-image: url(../../image/silk/sitemap_color.png);
}
.icon-sakai-online{
	background-image: url(../../image/silk/report_user.png);
}
.icon-sakai-memory{
	background-image: url(../../image/silk/server_chart.png);
}
.icon-sakai-archive{
	background-image: url(../../image/silk/page_white_compressed.png);
}
.icon-sakai-scheduler{
	background-image: url(../../image/silk/clock.png);
}
.icon-sakai-su{
	background-image: url(../../image/silk/user_go.png);
}
.icon-sakai-usermembership{
	background-image: url(../../image/silk/drive_user.png);
}
.icon-sakai-motd {
	background-image: url(../../image/silk/house.png);
}
.icon-sakai-sitebrowser {
	background-image: url(../../image/silk/world.png);
}
.icon-sakai-createuser {
	background-image: url(../../image/silk/user_add.png);
}

/* Edia tools, contrib tools and misc*/
.icon-edia-sakai-maps {
	background-image: url(../../image/silk/map.png);
}
.icon-edia-sakai-skinmanager {
	background-image: url(../../image/silk/layout_edit.png);
}
.icon-edia-sakai-selector {
	background-image: url(../../image/silk/layout.png);
}
.icon-edia-createaccount {
	background-image: url(../../image/silk/user_add.png);
}
.icon-edia-sakai-invite-participants {
	background-image: url(../../image/silk/user_add.png);
}
.icon-edia-sakai-invite-users {
	background-image: url(../../image/silk/user_add.png);
}
.icon-edia-sakai-createsite {
	background-image: url(../../image/silk/application_add.png);
}
.icon-edia-testweeklab {
	background-image: url(../../image/silk/chart_curve_go.png);
}
.icon-edia-webcourse {
	background-image: url(../../image/silk/user_go.png);
}
.icon-sakai-simplepagetool {
	background-image: url(../../image/silk/page.png);
}
.icon-sakai-melete {
	background-image: url(../../image/silk/book_open.png);
}
.icon-sakai-scorm-tool {
	background-image: url(../../image/silk/package.png);
}
.icon-sakai-sitestats-admin {
	background-image: url(../../image/silk/chart_bar.png);
}
.icon-sakai-admin-prefs {
	background-image: url(../../image/silk/cog.png );
}
.icon-sakai-messagecenter {
	background-image: url(../../image/silk/comments.png );
}

.icon-sakai-mneme {
	background-image: url(../../image/silk/pencil_go.png);
}

.icon-sakai-mneme-admin {
	background-image: url(icons/mneme-admin.png);
}


/** Privacy Popup Styles **/
div#privacy_tool_popup {
    position: absolute;
    background: #fff;
    color: #000;
    border: 4px solid #0198CD;
    width: 450px;
    top: 20%;
    left: 50%;
    margin-left: -225px;
    z-index: 1000;
    padding: 5px 5px 5px 10px;
}

div#privacy_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
   z-index: 0;
}

