* {
    box-sizing: border-box;
    margin: 0;
}

#main-container {
	width: 100%;
	height: 100vh;  
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-y: scroll;
}

#main-container header {
	width: 100%;
}

ul.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #13294b;
  display: flex;
  justify-content: center;
}

li.nav {
  float: left;
}

li.nav a {
  display: block;
  color: white;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
}

li.nav a:hover {
  background-color: #e6e6e3;
  color: black;
}

#content-container {
	width: 100%;
	flex-grow: 1;
	color: white;
	align-items: left;		
}

#content-container nav {		
	width: 200px;
	height: 99%;
	padding-left: 10px;	
	justify-content: left;
	align-items: left;	
	display: inline-block;
	vertical-align:top;
	background-color: #13294b;
	color: white;
}

#content-container section.main {	
	height: 99%;
	width: calc(99% - 200px);
	padding-left: 10px;
	padding-bottom: 10px;
	align-items: left;
	color: black;	
	display: inline-block;
	flex-grow: 1;
}

#content-container section.main100 {	
	height: 99%;
	padding-left: 10px;
	padding-bottom: 10px;
	align-items: left;
	color: black;	
	flex-grow: 1;
}

#main-container footer {
	width: 100%;	
	flex-shrink: 0;		
	align-items: center;
	justify-content: center;
	flex-direction: column;
}	



hr {border-top: 1px solid gray !important;}
hr.header {border-top: 1px solid gray !important; margin-block-start: 2px;margin-block-end: -2px;}


.clear{ clear:both;}
.column {
    float: left;
    padding: 10px;
    background: white;
}
/* Left column */
.column.leftContent75 {
    width: 75%;
}

/* Left column */
.column.leftContent25 {
    width: 25%;
}

/* Left column */
.column.leftContent50 {
    width: 50%;
}

/* Left column */
.column.UNC50 {
    width: 50%;
}

/* Right column */
.column.rightContent75 {
    width: 75%;
}

/* Right column */
.column.rightContent25 {
    width: 25%;
}

/* Right column */
.column.rightContent50 {
    width: 50%;
}

/* column */
.column.allContent100 {
    width: 100%;
}

/* Logo column */
.column.leftLogo60 {
	display: inline;
    width: 60%;
}

/* Right column */
.column.RightContent40 {
    width: 40%;
}

/* Logo column */
.column.leftLogo100 {
	display: inline;
    width: 100%;
}

#unclinks{font-family: "Times New Roman",serif; font-size:13px; text-align:right; color:#FFFFFF;}
#unclink{font-family:"Times New Roman",serif; font-size:13px; text-align:left; color:#FFFFFF;}
#appDesc{color:#336699;font-size:16pt; font-weight:bold;}
#appProp{color:#336699;font-size:8pt;}
#ehslinks{background-color:#336699; font-family:Verdana, Helvetica, Arial, sans-serif; font-size:13px; text-align:center; color:#FFFFFF; letter-spacing:0.1em;}

#appfoot{background-color:#13294b; color: white; padding:2px; text-align:center; font-size:13px; display: flex; justify-content: center;}
#appcopy{background-color: #ffffff; color: black; text-align:center; font-size:13px; display: flex; justify-content: center;}

@media (max-width: 782px) {
	.column.leftContent {
    	width: 60%;
	}
}
@media (max-width: 1000px) {
	.column.UNC50 {
    	display: none;
	}
	.column.rightContent50 {
		width: 100%;
	}
	#unclinks {
		text-align:center;
	}	
}
@media (max-width: 700px) {
	ul.nav {
	  display: block;
	}
}
img.logo {
    width: 100%;
    height: auto;
    float: left;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

nav.gradient {	
	background-color: #13294b;
  	background-image:
    linear-gradient(
      #13294b, #a7accd
    );
}

