body {
        background: #FAFAFA; /* Light Grey */
        }

@font-face {
	font-family: CiscoSans;
	src: url(/fonts/CiscoSansTTRegular.ttf) format('truetype');
}

@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;
}
   
section {
	background: #FAFAFA; /* Light Grey */
 	color: #454A4B; /* Dark Grey */
    font-family:CiscoSans;
    width: 510px;
    margin-left: 10px;
    margin-right: auto;
    padding: 10px 10px;
    word-wrap:break-word;
    }

section1 {
	background: #FAFAFA; /* Light Grey */
 	color: #454A4B; /* Dark Grey */
    font-family:CiscoSans;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px;
    word-wrap:break-word;
    }

section2 {
	background: #FAFAFA; /* Light Grey */
 	color: #454A4B; /* Dark Grey */
    font-family:CiscoSans;
    width: 400px;
    margin-left: 0px;
    margin-right: 10px;
    padding: 10px 10px;
    word-wrap:normal;
    }
	
h1 {
	font-family:CiscoSans;
	text-align: center;
	color: #454A4B; /* Dark Grey */
	}
	
h2 {
	font-family:CiscoSans;
	font-size: 20px;
	font-style: bold;
	text-align: center;
	color: #e3241b
	}

h3 {
	font-size: 18px;
	font-style: bold;
	text-align: left;
	color: #e3241b
	}
        
ol {
	counter-reset:li; /* Initiate a counter */
	margin-left:2em; /* Remove the default left margin */
	padding-left:0; /* Remove the default left padding */
	font-family: CiscoSans, sans-serif;
	}

ol > li {
	position:relative; /* Create a positioning context */
	margin:0 0 20px 2em; /* Give each list item a left margin to make room for the numbers */
	padding:20px 8px; /* Add some spacing around the content */
	list-style:none; /* Disable the normal item numbering */
	font-family: CiscoSans, sans-serif;
	}

ol > li:before {
	content:counter(li); /* Use the counter as content */
	counter-increment:li; /* Increment the counter by 1 */
	/* Position and style the number */
	position:absolute;
	top: 20px;
	left:-3em;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	width:2em;
	/* Some space between the number and the content in browsers that support
	   generated content but not positioning it (Camino 2 is one example) */
	margin-right:5px;
	margin-left:15px;
	padding: 1px 1px;
	border:4px solid #0051af; /* Cisco Medium Blue */
	color: #454A4B;
	background: #FAFAFA; /* Light Grey */
	font-weight:normal;
	font-family: CiscoSans, sans-serif;
	font-size: 30px;
	text-align:center;
	border-radius: 10px;
	}
	
.center {
  	display: block;
  	margin-left: auto;
  	margin-right: auto;
  	margin-top: 10px;
  	margin-bottom: 10px;
 	}
 	
img {
 	margin-top: 10px;
 	margin-bottom: 10px;
 	}

.image-row {
display: flex;
justify-content: center; /* Align images horizontally */
gap: 10px; /* Add spacing between images */
}
.image-row img {
width: 150px; /* Set image width */
height: auto; /* Maintain aspect ratio */
}

.image-row-2 {
display: flex;
justify-content: center; /* Align images horizontally */
gap: 10px; /* Add spacing between images */
}
.image-row-2 img {
width: 200px; /* Set image width */
height: auto; /* Maintain aspect ratio */
}
 	
textarea {
	overflow-y: scroll;
    height: 30px;
    resize: none;
    }

/** LIGHTBOX MARKUP **/

.lightbox {
  /* Default to hidden */
  display: none;

  /* Overlay entire screen */
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /* A bit of padding around image */
  padding: 1em;

  /* Translucent background */
  background: rgba(0, 0, 0, 0.8);
}

/* Unhide the lightbox when it's the target */
.lightbox:target {
  display: block;
}

.lightbox span {
  /* Full width and height */
  display: block;
  width: 100%;
  height: 100%;

  /* Size and position background image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.button0 {
	background-color: #0051af; /* Cisco Medium Blue */
  	border: none;
  	color: #FAFAFA;
  	text-align: center;
  	text-decoration: none;
  	display: inline-block;
  	font-size: 20px;
  	margin: 4px 2px;
  	cursor: pointer;
  	padding: 10px 10px;
  	border-radius: 10px;
	}
	
.button1 {
	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;
	border-radius: 10px;	
	}

.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 {
	position: absolute;
	opacity: 1;
	right: 0;
	}
	
.collapsible {
	background-color: #e2e2e2;  /* Cisco Light Grey */
	border: none;
	color: #414344;  /* Cisco Dark Grey */
	text-align: center;
  	text-decoration: none;
	display: block;
	font-size: 16px;
	padding: 10px 10px;
	transition: all 0.5s;
	cursor: pointer;
  	margin-left: auto;
  	margin-right: auto;
  	margin-top: 10px;
  	margin-bottom: 10px;
	border-radius: 10px;	
}

.active, .collapsible:hover {
	background: #414344; /* Cisco Dark Grey */
 	color: #e2e2e2; /* Cisco Light Grey */
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #FAFAFA; /* Light Grey */
}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #FAFAFA; /* Light Grey */
   color: #454A4B; /* Dark Grey */
   text-align: center;
}

hr { width:100%; height:1px; background: #fff }

/* Sticky Header Blue */
#page-head {
	font-family:CiscoSans;
	position: fixed; top: 0; left: 0; z-index: 9; /* fixed at top */
	width: 530px; height: 50px; padding: 10px 10px; /* dimensions */
	display: flex; align-items: center; /* alignment */
  	margin-left: auto;
  	margin-right: auto;
	text-align: center;
	background-image: url('/images/header-back-blue.png');
 	color: #454A4B; /* Dark Grey */
    font-family: CiscoSans;
	font-size: 21px;
	font-style: bold;
}
/* Sticky Header Grey */
#page-head2 {
	font-family:CiscoSans;
	position: fixed; top: 0; left: 0; z-index: 9; /* fixed at top */
	width: 530px; height: 50px; padding: 10px 10px; /* dimensions */
	display: flex; align-items: center; /* alignment */
  	margin-left: auto;
  	margin-right: auto;
	text-align: center;
	background-image: url('/images/header-back-grey.png');
 	color: #454A4B; /* Dark Grey */
    font-family: CiscoSans;
	font-size: 21px;
	font-style: bold;
}