body {
	background-color: #cacaca;
	cursor: url('support/hcursor.png'), auto;
}

a {
	cursor: url('support/cursor.png'), auto;

}
.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width:85%
}
.textBlock {
	background-color: white;
	padding: 5%;
	padding-top: 3%;
	color: black;
	font-family: verdana;
	font-size: 12pt;
text-align: justify;}
.textBlock h1 {

	color: black;
	padding-top:0.5em;
	padding-bottom: 0.75em;
	font-size: 32pt;
	font-weight:600;	
	text-align: center;
}
.textBlock h2 {

	color: black;
	padding-top:0.5em;
	padding-bottom: 0.4em;
	font-size: 27pt;
	font-weight:600;	
	text-align: left;
}
.textBlock h3 {
		color: black;
	padding-top:0.5em;
	padding-bottom: 0.4em;
	font-size: 21pt;
	font-weight:600;	
	text-align: left;
}
.textBlock a {
	font-weight:600;
	text-decoration: underline;
color: black;
}
.textBlock a:hover {
	font-weight:900;
color: lightseagreen;
}
.textBlock li {
	padding-left:1%;
	list-style-position: inside;
	padding-top:0.5%;
	padding-bottom: 0.5%;
}
.textBlock section
{
	padding-bottom:3%;
}
.collapse {
  cursor: url('support/cursor.png'), auto;
  padding:1%;
margin-top: 0.5%;
  width: 100%;
  background-color: #f6f6f6;
  border: none;
  text-align: left;
  outline: none;
}
.active, .collapse:hover {
  background-color: #dbdbdb;
}
.cCont {
  padding: 2%;
	display: none;
  overflow: hidden;
  background-color: #f6f6f6;
}
.right {
float: right;
padding-left: 2em;
min-width: 15em;
}

.note {
	background-color: yellow;
}

.icon {
	float: left;
	height: 5em;
	padding-right: 1em;
	padding-left: 1em;
}
.navi ul {
	overflow: hidden;
	background-color: #dcdcdc;
	margin-bottom: 2%;
}

.navi li {
	list-style-type: none;
	float: left;
	text-align: center;
		vertical-align: center;

}

.navi li a {
	display: block;
	color: rgb(0, 0, 0);
	padding: 2em 7em;
	text-decoration: none;
}

.navi li a:hover {
	background-color: #717171;
}

.navi p {
	font-size: 40px;
	text-decoration: none;
}

.navi img {
background-color: #dcdcdc;
}


.mainI {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	margin-top: 20px;
}


/*Mii Gallery*/
div.gallery {
  border: 1px solid #ccc;
  height: 320px;
}

div.gallery:hover {
  border: 1px solid #777;
  background-color: #d8e2ec;
  transition: all 0.3s;
}
div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
 font-family: verdana;
  padding: 15px;
  text-align: center;
  font-size: 12pt;

}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 10%;
}
/*Tree Stuff*/
.mainP {
	height: 300px;
}

.subP {
	height: 150px;
}

.textR {
	border: 1px solid #ccc;
	padding: 5px 10px;
	text-decoration: none;
	color: black;
	font-family: verdana;
	font-size: 15px;
	border-radius: 3px;
	-webkit-border-radius: 5px;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.tree li a {
	border: 3px solid black;
	background-color: black;
	padding: 5px 10px;
	text-decoration: none;
	color: #69cdee;
	font-family: bookman;
	font-size: 25px;
	display: grid;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.RC {
	width: 175px;
}

.RCM {
	width: 1300px;
}

/*Now the CSS*/
* {
	margin: 0;
	padding: 0;
}

.tree ul {
	padding-top: 20px;
	position: relative;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.tree li {
	float: left;
	text-align: center;
	list-style-type: none;
	position: relative;
	padding: 20px 5px 0 5px;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before,
.tree li::after {
	content: '';
	position: absolute;
	top: 0;
	right: 50%;
	border-top: 1px solid #ccc;
	width: 50%;
	height: 20px;
}

.tree li::after {
	right: auto;
	left: 50%;
	border-left: 1px solid #ccc;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree li:only-child::after,
.tree li:only-child::before {
	display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child {
	padding-top: 0;
}

/*Remove left connector from first child and 
right connector from last child*/
.tree li:first-child::before,
.tree li:last-child::after {
	border: 0 none;
}

/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before {
	border-right: 1px solid #ccc;
	border-radius: 0 5px 0 0;
	-webkit-border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
	border-radius: 5px 0 0 0;
	-webkit-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	border-left: 1px solid #ccc;
	width: 0;
	height: 20px;
}


/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover,
.tree li a:hover+ul li a {
	background: #c8e4f8;
	color: #000;
	border: 1px solid #94a0b4;
}

/*Connector styles on hover*/
.tree li a:hover+ul li::after,
.tree li a:hover+ul li::before,
.tree li a:hover+ul::before,
.tree li a:hover+ul ul::before {
	border-color: #94a0b4;
}