﻿/* Classes that gets re-used in several different places */ 
.link {}
.link:hover {cursor: pointer;}
.gradient_header 
{
    background: url(./Images/neuro/gradient.gif) repeat-x;
}

.DiscreteTxt
{
	font-size: 0.8em;
	color: #a0a0a0;
}



/*Hover Menu*/
.popupMenu
{
	border:1px outset white;padding:2px;
	position: absolute;
	visibility: hidden;
	background-color: #FFFFCC;
	opacity: .9;
	filter: alpha(opacity=90);
}

.SmallDrop
{
	border: #778899 1px solid; 
	padding-top: 0px; padding-bottom: 1px; padding-left: 0px; padding-right: 0px; 
	margin: -1px;
	overflow: auto; 
	/*
		width: auto;
		padding: 0px;
		margin: 0px;
	*/
	font-family: Arial; 
	font-size: 0.8em;
	width: 50px; height: 16px;
	background-color: #ffffff;
	color: black;
	font-weight: bold;
}

.popupHover
{
	white-space: nowrap;
	/*background-color: #9BC7E1; */
	font-weight: bold;
	font-size: 12px;
	background-image:url(./images/bg/header-opened.png);
	background-repeat:repeat-x;
	background-position:left top;
	background-color:#F5F7F8;	
}

/* For ajax modalpop */
.modalBackground {
	background-color:Gray;
	filter:alpha(opacity=70);
	opacity:0.7;
	}	
	
.modalPopup {
	background-color:#ffffdd;
	border-width:1px;
	border-style:solid;
	border-color:Gray;
	padding:3px;
	width:250px;
}

.errorBox {
    border: solid 1px red;
    padding: 3px;
}

.aliright
{text-align: right;}
.alileft
{text-align: left;}
.alicenter
{text-align: center;}

.notify
{
	color: Black;
	background-color:#ffffdd;
	border-width:1px;
	border-style:solid;
	border-color:Gray;
	padding:3px;
	position: relative;
}

.repeatedImageBackground
{ /* a div uses this class, to mark beginning of a background x-repeated. */
	position: relative;  
	display: block; 
	z-index:300; 
	padding: 0px; 
	margin:0px; 
	height: 100%;
	color: Black;
}

.repeatedImageBackground p
{ /* textual content */
	z-index: 400; position: relative; top: 2px; display: block; margin:0px; padding:0px; color: Gray; color: Black;
}
.repeatedImageBackground p a
{color: Black; cursor: wait;}

/* usage example: <div class="repeatedImageBackground"><p><a style="cursor: default;" class="showTip">http://fusion.adtoma.com/script.js</a></p><div class="yellow" style="width: 63%;"></div></div> */
.repeatedImageBackground div
{
	position: absolute; top:0px; z-index:1; height: 100%; white-space: nowrap;
}
.repeatedImageBackground div.gray
{
	background: url(./Images/backgrounds/sticker_gray.gif) repeat-x;
}
.repeatedImageBackground div.lightgreen
{
	background: url(./Images/backgrounds/sticker_lightgreen.gif) repeat-x;
}
.repeatedImageBackground div.orange
{
	background: url(./Images/backgrounds/sticker_orange.gif) repeat-x;
}
.repeatedImageBackground div.red
{
	background: url(./Images/backgrounds/sticker_red.gif) repeat-x;
}
.repeatedImageBackground div.purple
{
	background: url(./Images/backgrounds/sticker_purple.gif) repeat-x;
}
.repeatedImageBackground div.transparent
{
	background: url(./Images/backgrounds/sticker_transparent.gif) repeat-x;
}
.repeatedImageBackground div.turq
{
	background: url(./Images/backgrounds/sticker_turq.gif) repeat-x;
}
.repeatedImageBackground div.yellow
{
	background: url(./Images/backgrounds/sticker_yellow.gif) repeat-x;
}

/* 
For disabling a page with opacity obscuring. Use it on an iframe. 
Example: <iframe class="overlay" frameborder="0" style="background-color: white"></iframe>  
*/
.overlay {
    position: fixed;
    z-index: 999999;
    top: 0px;
    left: 0px;
    background-color: white;
    width: 100%;
    height: 100%;
    filter: Alpha(Opacity=70);
    opacity: 0.70;
    -moz-opacity: 0.70;
}
* html .overlay 
{
    /* IE Fix */
    position: absolute;
    height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
    width: expression(document.body.scrollWidth > document.body.offsetWidth ? document.body.scrollWidth : document.body.offsetWidth + 'px');
}

/* 
For enabling and centering a box, preceding whatever is disabled by .overlay class, taking the form of a nice popupbox
Example: <asp:Panel ID="Panel1" runat="server" style="width: 300px; height:150px;" CssClass="loader">  
*/
.loader {
    vertical-align: middle; 
    text-align: center; 
    position: fixed;
    z-index: 10000000; 
    background-color: white; 
    border: 1px solid gray; 
    top: 50%;
    left: 50%;        
}
	
* html .loader 
{
    /* IE Fix */
    position: absolute;
    margin-top: expression((document.body.scrollHeight / 4) + (0 - parseInt(this.offsetParent.clientHeight / 2) + (document.documentElement && document.documentElement.scrollTop || document.body.scrollTop)) + 'px');
}

