* {
	box-sizing: border-box;
	line-height: 1.5;
}

html {
	height: 100%;
	font-size: 62.5%;
}

body, #root {
	margin: 0;
	padding: 0;
	height: 100%;
	background-color: #e1e4e8;
	color: #333333;
	font-size: 1.6rem;
}

.pcRoot {
	min-width: 900px;
}


header.MuiAppBar-root {
  display: flex;
  flex-grow: 1;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 70px;
	/* height: 70px; */
	background: rgb(0,70,139);
	background: -moz-linear-gradient(left,  rgba(0,70,139,1) 0%, rgba(67,120,182,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(0,70,139,1) 0%,rgba(67,120,182,1) 100%);
	background: linear-gradient(to right,  rgba(0,70,139,1) 0%,rgba(67,120,182,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00468b', endColorstr='#4378b6',GradientType=1 );
	color: #ffffff;
}

.MuiToolbar-root {
  width: 100%;
  padding : 0px;
  min-height: 70px;
}

header * {
	line-height: 1;
}

#siteTitle {
	padding: 16px 40px 0;
	font-size: 3.2rem;
	font-weight: bold;
	font-family: Georgia, 'Times New Roman', serif;
}

#siteTitle a, #siteTitle a:hover, #siteTitle a:active, #siteTitle a:visited {
	color: #ffffff;
  text-decoration: none;
}

#loginUser {
	position: relative;
	padding: 4px 32px 0 10px;
	font-size: 1.4rem;
	white-space: nowrap;
	color :  #ffffff;
}

#personIcon {
	font-weight: bold;
	font-size: 5rem;
}

#navBar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 70px;
	background: rgb(0,98,197);
	background: -moz-linear-gradient(left,  rgba(0,98,197,1) 0%, rgba(94,167,219,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(0,98,197,1) 0%,rgba(94,167,219,1) 100%);
	background: linear-gradient(to right,  rgba(0,98,197,1) 0%,rgba(94,167,219,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0062c5', endColorstr='#5ea7db',GradientType=1 );
	color: #ffffff;
}

#navBar > div,
#navBar > ol {
	margin: 0 40px;
}

#navBar li {
	display: inline-block;
	margin: 0 40px 0 0;
}

#navBar li a {
	color: #ffffff;
	font-weight: bold;
}

#navBar li a:hover {
	color: #accb39;
	text-decoration: none;
}

#main {
	margin: 40px;
	border-radius: 16px;
	background-color: #ffffff;
	box-shadow: 4px 4px 8px rgba(0,0,0,.15);
}

#mainCon {
	padding: 40px;
}