
/* 5ths.css

*********************************************************************************
Ref:

Selector			Example		Example Description
--------			-------		-------------------
.class				.intro		Selects all elements with class="intro"
#id					#firstname	Selects all elements with id="firstname"
*					*			Selects all elements
element				p			Selects all <p> elements
element,element		div,p		Selects all<div>elements and all <p> elements			

 *******************************************************************************/

html, body {
	height: 100%;
	position: relative;  }

body {
	margin: 0;
	padding: 0; 
	background-color: rgb(240,240,240);
	font-family: arial, sans-serif;
	font-size: 14px;  }
  
.md-title {
	font-size: 20px;
	margin: 15px 2px;
	color: #008CBA;   }  
   
 #dashboard {
	text-align: left;
	margin: 0px 5px;
    float: left;
    clear: both;
	width: 250px;
	border: 1px;
	}	
  

.button {
	width: 120px;
	background-color: white;
	color: black;  
	border: 2px solid #008CBA;
	border-radius: 7px;
	padding: 5px 0px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	cursor: pointer;
	}
		
		
.button:hover {
	background-color: #008CBA;
	color: white;  
	cursor: pointer;
	}


.button:focus {
	background-color: #008CBA;
	color: white;
	cursor: pointer;
	}



.vertLine {
  border-left: 3px solid #008CBA;
  height: 520px;
  position: absolute;
  left: 270px;
  margin-left: 0px;
  top: -6px;
}

/* Thick blue HR */
hr.thickBlue {
  margin: 0px 5px;
	border: 1px solid #008CBA;     }
	
/* Thick Short blue HR */
hr.thickShortBlue {
  margin: 30px 24px 0px 0px;
	border: 1px solid #008CBA;     }	


#mainpanel {
	font-size: 30px;
	color: #008CBA;
	font-weight: bold;
	text-align: left; 	
	vertical-align: top;
	margin-top: -40px;
	margin-left: 280px;  
	}


#circletitle {
	font-size: 36px;
	fill: #008CBA;
	font-weight: bold;
	text-align: left;
	vertical-align: top;
}

	
h3 	{
	font-size: 18px;
	}

svg text {

	animation: stroke 5s infinite alternate;

}