/**
file name: research.css for [research.html]
Author: LARS HIDDE
Class/Section: COIN 65.01, Spring 2011 
Created: 6/6/2011 - 6:66p
Copyright (c)2011 
*/


body
  {

  	/* css3 */
	background:-webkit-gradient(linear, 0% 0%, 100% 100%, 
	from(#072a60), to(#fff), color-stop(1,#333333));
	background:-moz-linear-gradient(#072a60, #fff);	
	
	background:-o-linear-gradient(top, #072a60, #fff);
	background:linear-gradient((#072a60, #fff));
  
    color: #444;
  }
  
  /**
  		----------- H1, H2  -----------
*/

  
  h1
  {
  font-family: Futura, "Arial Black", sans-serif;
	/*font-size: 24px;*/
    
    /* css3 */
	background:-webkit-gradient(linear, 0 0, 0 100%, from(#00a1d7), to(#0075c5));
	background:-moz-linear-gradient(#00a1d7, #0075c5);
	background:-o-linear-gradient(top, #00a1d7, #0075c5);
	background:linear-gradient((#00a1d7, #0075c5));

    color: #FFF;
    padding: 20px;
    margin: 0;
    
   
    border-bottom: 1px solid #D501BE;   /** GLOWING RED LINE */
    
    
    /** SHADOW H1 */
          -moz-box-shadow: 0px 5px 13px #888;
		  -webkit-box-shadow: 0px 5px 13px #888;
		  box-shadow: 0px 5px 13px #888;
  }
  
   h2, h3
  {
  
  	font-family: "Times New Roman";
    margin-top: 0;
    color: #3F2222;   /*#3F2222  #526176*/
    font-weight: normal;
  } 
     h3
  {

    font-weight: bold;
  } 
     h4
  {
  	padding: 0 0 1em 0;
  	margin:0;
  	font-family: helvetica;
	color: #00a1d7;
    font-size: 75%;
    font-weight: 600;
  } 
  
/**
  		----------- MAIN CONTENT  -----------
*/


  #container {
  
    text-align: left;
    margin: 0 auto;
    width: 700px;
    background: #FFF /*url(images/nav-back.gif)  repeat-y*/;
    border: 1px solid black;
  
  	}
  
    #content {
    
    float: left;
    width: 460px;
    margin-left: 45px;
    padding: 15px 0;

  	}
  	
  	#terminology p:first-line {
		font-weight: bold;
		/*font-style: italic;*/
		color:#3F2222;
		font-variant:small-caps;
		}

	#terminology .special {
	margin: -5px 0 0 3px;
	padding: 0 0 0 .75em;
	border-left: 7px solid #D501BE;

		}
	
  	
  	#terminology span {
  	font-style: italic;
  	
  	}

 


/**
  		-----------NAVIGATION BOX  -----------
*/


#nav, #nav ul {

	margin: 0;
	list-style-type: none;

	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	}

#nav ul {

	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	
	-moz-box-shadow: 0.7px 0.7px 1px #777777;
	-webkit-box-shadow: 0.7px 0.7px 1px #777777;
	box-shadow: 0.7px 0.7px 1px #777777;
	
	padding: 0 9px 9px;
	background-color: #2C384B/*, moz-opacity:0.7*/;  /*OPACITY*/
	
	border-width: 1px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	
	border-style: solid;
	border-color: #5A5E60;
}

#nav ul ul
{
	position: absolute;
/*
	left: 100%;
	top: 0;
*/
}


#nav  {										/*main menu*/

	width:160px;
	padding: 0;
	display: block;
	font-size: 0;
	float: left;
	
	-moz-box-shadow: 5px 5px 13px #888;
	-webkit-box-shadow: 5px 5px 13px #888;
	box-shadow: 5px 5px 13px #888;

	-moz-border-radius-bottomright: 12px;
	border-bottom-right-radius: 17px;
	}
	
	
	
#nav a  {  									/*main menu*/

	padding: 7px;
	
	background-color: #2C384B;
	border-right: 1px solid #A72222;
	color: #FFC;
	text-decoration: none;

	display: block;
	text-align: center;
	text-decoration: none;
	font: 15px verdana;
	color: #ffffcc;
	}

#nav li.topfirst>a  {					/*main menu*/

	margin-top: -2px; 
	}
	

#nav li  {

	margin: 1px 0 0 0; 
	/*display: block;*/
	white-space: nowrap;
	font-size: 0;
	}

#nav ul li  {

	float: none;
	margin: 9px 0 0;
	}

#nav ul a  {  				/*submenu*/

	text-align: left;
	padding: 8px 0 0 0;
	/*background: #333333;*/   /*submenu*/


	border-width: .5px 0 0 0;	/* submenu - separation line*/	
	border-style: solid;		/* submenu - separation line*/
	border-color: #C87878;  	/* submenu - separation line*/
	
	font: 15px Verdana;
	color: #cccccc;
	text-decoration: none;
	}
	
	
/** HOVER*/

#nav li:hover>* { display: block; }
#nav li:hover { position: relative; }

#nav li:hover>a							/*main menu*/
	{
	background-color: #aaaaaa;  		
/*	border-right: 5px double white;*/
		border-bottom: 0;
	color: #411;
	text-decoration: none;	
	}

#nav li:hover>a,#nav li>a.pressed
	{
	text-decoration: none;
	}

#nav ul li:hover>a,#nav ul li>a.pressed
	{
	
	background-color: #2C384B; 
	/*background-color: #333333; 	*/		/*submenu*/
	/*border-color: #262626;*/
	border-width: .5px 0 0 0;		/* submenu - separation line*/	
	border-style: solid;			/* submenu - separation line*/
	border-color: #A72222;  		/* submenu - separation line*/
	color: #1f80ae;
	text-decoration: none;
	}
	
	#nav li.subfirst>a  {					/*submenu*/
			
	border-width: 0;
	border-style: none;
	padding: 0;
	}

#nav li.subfirst:hover>a  { 			/*submenu*/
	background-color: #2C384B; 
	border-style: none; 
	}
	

/* END HOVER*/













/**
  		----------- FOOTER  -----------
*/
  
  #footer
  {
    clear: both;
    margin 0;
    background: #387A9B;
 
    border-top:1px solid black;
     	-moz-box-shadow: 0px -1px 9px #888;
		-webkit-box-shadow: 0px -1px 9px #888;
		box-shadow: 0px -1px 9px #888;

	font-family: helvetica;
	
    color: #fff;
    padding: 20px 60px 4px 60px;
    font-size: 65%;
    line-height: 100%;
  }
  
  #timestamp {
  text-align: right;
  }
  


  
/**
  		----------- SPECIAL FX  -----------------------------------------------------------------
*/ 

/**
  		----------- BUBBLE  -----------
*/
	
	.bubble {
		width: 80%;
		color:#efefef;
		margin: 0 0 4em 2.2em;
		}
		
	.bubble .pointer {
		height:15px;
		background: #387A9B;

	}
	
	.bubble .pointer span {
		height:100%;
		background:#ffffff;
		float:left;

	}
	.bubble .pointer .one {
		width:50%;
		-moz-border-radius-bottomright: 15px;
		-webkit-border-bottom-right-radius:15px;
		 border-bottom-right-radius:15px;
	}
	.bubble .pointer .two {
		width:50%;
		-moz-border-radius-bottomleft: 15px;
		-webkit-border-bottom-left-radius:15px;
		 border-bottom-left-radius:15px;
	}
	.bubble .code {
	font: bold 1.1em courier, sans-serif;
		padding:7px;
		-moz-border-radius: 10px;
		-webkit-border-radius:10px;
		 border-radius:10px;
		
		color:#000;
		
	background:#387A9B; /* default background for browsers without gradient support */
	
	/* css3 */
	background:-webkit-gradient(linear, 0 0, 0 100%, from(#387A9B), to(#fff/*#f3961c*/));
	background:-moz-linear-gradient(#387A9B, #fff);
	background:-o-linear-gradient(top, #387A9B, #fff);
	background:linear-gradient((#387A9B, #fff));

	}




/**
  		----------- SIDE BAR  -----------------------------------------------------------------
*/ 
  	.special {
	margin: -5px 0 0 3px;
	padding: 0 0 0 .75em;
	border-left: 7px solid #D501BE;

		}

  img {
/*  margin: 5px;*/
  padding: 15px;
  border: none;
  }


/**
  		----------- BOX   -----------------------------------------------------------------
*/ 
.box {
/*border: 1px dotted #444;*/
padding: 7px;
margin: 15px;
background: rgb(183,223,45); /* Old browsers */
background: -moz-linear-gradient(top, rgba(183,223,45,1) 0%, rgba(227,245,171,1) 67%, rgba(248,255,232,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(183,223,45,1)), color-stop(67%,rgba(227,245,171,1)), color-stop(100%,rgba(248,255,232,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(183,223,45,1) 0%,rgba(227,245,171,1) 67%,rgba(248,255,232,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(183,223,45,1) 0%,rgba(227,245,171,1) 67%,rgba(248,255,232,1) 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, rgba(183,223,45,1) 0%,rgba(227,245,171,1) 67%,rgba(248,255,232,1) 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b7df2d', endColorstr='#f8ffe8',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, rgba(183,223,45,1) 0%,rgba(227,245,171,1) 67%,rgba(248,255,232,1) 100%); /* W3C */
}

.nobullets {
list-style-type: none;
margin-bottom: 25px;
}

.lineheight {
line-height: 1.4em;


	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}


.callout {
/*font: 10px futura, sans-serif;*/
font-weight: bold;

}


/* LINE */

li.line  {
/*	display: block;*/
    
	border-bottom: 1px dotted #D501BE;
    width: 100%;
    }
    

/*-----------LINKS-------------*/

a {
font:bold .76em helvetica, sans-serif;
text-decoration: none;

}

a:hover	{
		color: #D501BE;
		border-bottom: 1px solid #D501BE;
		}

/**
  		----------- SPECIAL FX  -----------------------------------------------------------------
*/ 


/*  nextPrevNav  */


.nextPrevNav {
padding-right: 5px;
float: right;
font-size: 16px;
}

#scope {


margin-bottom: 10em;
}

.clearfloat { clear: both; }  /* just in case I need this */
