body {
    background-image: url('/images/background.jpg');
	padding-top: 8%;
	padding-bottom: 8%;
    }
	
@font-face {
	font-family: CiscoSans;
	src: url(/fonts/CiscoSansTTRegular.ttf);
}
    
@font-face {
	font-family: CiscoSansBold;
	src: url(/fonts/CiscoSansTTBold.ttf) format('truetype');
}

/* Custom bold tag for Mac Chrome */
/* Chrome for Mac does not recognize the standard <b></b> bold tags using Cisco fonts */
/* Use <c-b></c-b> (for Cisco-Bold) instead of standard <b></b> */
c-b {
	font-family: CiscoSansBold;
}
   
h1,p {
	text-align: center;
	color: #454A4B; /* Dark Grey */
	}

section {
    background: #FAFAFA;
    font-family:CiscoSans;
    color: #454A4B; /* Dark Grey */
	margin: auto;
    width: 300px;
    padding: 20px 20px;
    word-wrap:normal;
    border-radius: 1em;
/*	height: 100%; */
    word-wrap:break-word; 
    }
	
p1 {
 	background: #FAFAFA; /* Light Grey */
	border:4px solid #0051af; /* Blue */
	color: #454A4B;
  	text-align: center;
  	text-decoration: none;
  	display: block;
  	font-size: 20px;
  	margin: 10px 80px;
  	padding: 6px 8px;
 	border-radius: 12px;
	}
	
p2  {
	text-align: center;
	color: #454A4B; /* Dark Grey */
	font-size: 16px;
	}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}
	
.left {
	display:inline-block;
	margin-left: 25px;
	}

.button0 {
  	background-color: #0051af; /* Cisco Medium Blue */
  	border: none;
  	color: white;
  	text-align: center;
  	text-decoration: none;
  	display: inline-block;
  	font-size: 20px;
  	margin: 4px 2px;
  	cursor: pointer;
  	padding: 14px 20px;
  	border-radius: 12px;
	}

.button1 {
	border-radius: 10px;
	background-color: #0051af; /* Cisco Medium Blue */
	border: none;
	color: #FAFAFA;
	text-align: center;
  	text-decoration: none;
	display: inline-block;
	font-size: 20px;
	padding: 10px 10px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 4px 2px;
	}

.button1 span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
	}

.button1 span:after {
	content: '\00BB';
	position: absolute;
	opacity: 0;
	top: -1px;
	right: -20px;
	transition: 0.5s;
	}

.button1:hover span {
	padding-right: 25px;
	}

.button1:hover span:after {
	opacity: 1;
	right: 0;
	}	

.button2 {
	border-radius: 10px;
	background-color: #0051af; /* Cisco Medium Blue */
	border: none;
	color: #FAFAFA;
	text-align: center;
  	text-decoration: none;
	display: inline-block;
	font-size: 20px;
	padding: 10px 10px;
	width: 160px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 4px 2px;
	}

.button2 span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
	}

.button2 span:after {
	content: '\00BB';
	position: absolute;
	opacity: 0;
	top: -1px;
	right: -20px;
	transition: 0.5s;
	}

.button2:hover span {
	padding-right: 25px;
	}

.button2:hover span:after {
	opacity: 1;
	right: 0;
	}	
