/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: #f7f7f7;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

header img.logo {
    max-width: 150px;
    margin-bottom: 10px;
}

header nav a {
    color: #333;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav a:hover {
    color: #555;
}

/* Main Container Layout with Sidebar, Content, and Right Column */
.container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Sidebar Styling */
.sidebar {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    margin-right: 20px;
}

.sidebar ul {
    list-style-type: none !important; /* Removes bullets */
    padding-left: 0 !important; /* Ensures no padding */
    margin: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.sidebar ul li a:hover {
    color: #555;
}

/* Main Content Styling */
.content {
    flex: 4;
    padding: 20px;
    border-right: 1px solid #e0e0e0;
}

/* Right Column Styling for Images */
.right-column {
    flex: 3;
    padding: 20px;
    background-color: #f9f9f9;
    margin-left: 20px;
}

.right-column h2 {
    margin-bottom: 15px;
}

.right-column img {
    width: 100%; /* Full width for each image */
    height: auto;
    margin-bottom: 15px;
}

footer {
    padding: 15px;
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
}

/* In-Text Link Styling */
a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 1px solid transparent;
}

a:hover,
a:focus {
    color: #004080;
    border-bottom: 1px solid #004080;
}

a:active {
    color: #00264d;
    border-bottom: 1px solid #00264d;
}

/* List Styling for Indented Lists */
ul, ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

ul li {
    margin-bottom: 0.5em;
    list-style-type: none;
}

ol li {
    margin-bottom: 0.5em;
    list-style-type: decimal;
}

/* Styling for Nested Lists */
ul ul, ol ol {
    padding-left: 1.5em;
    list-style-type: circle;
}

/* "In This Page" Navigation */
.page-navigation {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    font-size: .95em;
    max-width: 400px;
}

.page-navigation h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.page-navigation ul {
    list-style-type: none;
    padding-left: 0;
}

.page-navigation ul li {
    margin-bottom: 5px;
}

.page-navigation ul li a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.page-navigation ul li a:hover {
    color: #004080;
}

/* Font Sizes for Headings */

h1, h2, h3, h4, h5, h6 {
	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
	letter-spacing: .05em;
}

h1 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.5em;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
}

h3 {
    font-size: 1em;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
}

h4 {
    font-size: .9em;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
}

h5 {
    font-size: .8em;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
}

h6 {
    font-size: .8em;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    font-weight: 500;
}
/* Sidebar Styling */
.sidebar {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    margin-right: 20px;
    max-width:400px;
}

.sidebar ul {
    list-style-type: none !important; /* Removes bullets */
    padding-left: 0 !important; /* Ensures no padding */
    margin: 0;
    font-weight:300;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
    font-weight: 400;
    letter-spacing: .1em;
}

.sidebar ul li a:hover {
    color: #555;
}

.student-table {
	font-size:.8em;
}
caption {
	font-size: .6em;
.small-box	{
	width:180px;
	font-size:.9em;
}
/* Footer Styling */


