CSS 3 Font Embed (Example I)
@font-face {
  font-family: Corbel;
  src: url(‘fonts\corbel.ttf’);
}
  
A,A:link,A:active,A:visited
{
	color: #000000;
	text-decoration: none;
}

a img  
{  
border: none;  
} 

A:hover
{
	text-decoration: underline;
	border-style: none;
	color:#000000;
}
  

.Navbar {
  font-family: Sans-serif;
  font-size: 1.0em;
  color:#000000;
  font-weight:bold;
  background-color:#FFFFFF;
  text-align: right;
}

.my_footer {
  font-family: Sans-serif;
  font-size: small;
  color:#000000;
  font-weight:bold;
  
}


.my_header {
  font-family: Sans-serif;
  font-size: 1.0em;
  color:#000000;
  font-weight:bold;
  
}

.my_copyright {
  font-family: Sans-serif;
  font-size: x-small;
}

Table {
  font-family: Sans-serif;
  font-size: 1.0em;
  color:#000000;
  font-weight:bold;
  border: 0px;
  padding: 0px;
  background-repeat:no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  
}

tr {
	background-repeat:no-repeat;
	background-position:center;
}

td {
	background-position: center center;
    background-repeat: no-repeat;

}

.maintable {
	background-color:#FFFFFF;
	width: 960px;
	height: 70%;
	border-bottom-left-radius:5px;
    border-bottom-right-radius:5px;
	background-position:bottom;
}

.plessalainfo {
background:url(../images/nav_color.png);
width: 960px;
}

.maintable2 {
	background-color:#FFFFFF;
	width: 960px;
}

html, body {
	margin: auto;
	width: 960px;
	height: 100%;
	background-color: 282828;
}

.section {
	color: #ffffff;
	background-color:#282828;
}    

.pageheader {
	color: #000000;
	background-color:#FFFFFF;
	font-family: San-Serif;
    font-size: Large;
	font-weight:normal
}  

.my_text {
	color: #000000;
	background-color:#FFFFFF;
	font-family: San-Serif;
    font-size: 30px;
	font-weight:Bold;
}  

input[type=button], textarea
{
    border-radius: 5px;
    font-family: Corbel;
}

.text
{
    background-color: #BFBDBD;
    border:solid 1px #BFBDBD;
    color: #000000;
    height: 28px;
    padding-left:10px;
    width: 350px;
    box-shadow: 2px 2px 0 #828181 inset;
    font-size: 1.0em;
	border-top-left-radius:5px;
    border-top-right-radius:5px;	
	border-bottom-left-radius:5px;
    border-bottom-right-radius:5px;

}

input[type=button]
{
    background-color: #1E1E1E;
    color: #979797;
    height: 24px;
    width: 103px;
    color: #bbbbbb;
    text-transform:uppercase;
    box-shadow:-1px 2px #6E6B6A inset;
}

TEXTAREA
{
    background-color: #BFBDBD;
    border:solid 1px #BFBDBD;
    color: #000000;
    padding-left:10px;
    box-shadow: 2px 2px 0 #828181 inset;
	font-size: 1.0em;
}

SELECT
{
    background-color: #BFBDBD;
    border:solid 1px #BFBDBD;
    color: #000000;
	height: 24px;
    padding-left:10px;
    box-shadow: 2px 2px 0 #828181 inset;
	font-size: 1.0em;
}

.loginbox
{
    background-color: #BFBDBD;
    border:solid 1px #BFBDBD;
    color: #000000;
    height: 28px;
	width: 200px;
    padding-left:10px;
    box-shadow: 2px 2px 0 #828181 inset;
    font-size: 1.0em;
}

/* Pop up stuff*/

h1 {
  font-family: Tahoma, Arial, sans-serif;
  color: orange;
  margin: 100px 0;
}


.box {
  width: 20%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}
.button {
  padding: 0px;
  color: #fff;
  border: 2px solid orange;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.button:hover {
  background: orange;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.popup .close:hover {
  color: orange;
}

.popup .content {
  text-align:center;
  max-height: 30%;
  overflow: auto;
  font-family: Sans-serif;
}

.robotic { 
display: none; 
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}