.menu_heading{
	text-align:center;
}
ul{
	color:#722c2e;
}
ol{
	color:#722c2e;
}
.pkp_structure_main p {
	text-align:justify;
}
.pkp_site_name .is_img img{
	display: block;
    max-height: 100% !important;
    max-width: 100% !important;
    width: 80%;
    height: 80%;
}

/* define a fixed width for the entire menu */
.navigation {
  width: 80%;
}

/* reset our lists to remove bullet points and padding */
.mainmenu, .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* make ALL links (main and submenu) have padding and background color */
.mainmenu a {
  display: block;
  background-color: #722c2e;
  text-decoration: none;
  padding: 10px;
  color: white;
}

/* add hover behaviour */
.mainmenu a:hover {
    background-color: #C5C5C5;
}



/* when hovering over a .mainmenu item,
  display the submenu inside it.
  we're changing the submenu's max-height from 0 to 200px;
*/

.mainmenu li:hover .submenu {
  display: block;
  max-height: 200px;
}
.mainmenu li.menu_heading {
  display: block;
  max-height: 200px;
}


/*
  we now overwrite the background-color for .submenu links only.
  CSS reads down the page, so code at the bottom will overwrite the code at the top.
*/

.submenu a {
  background-color: #999;
}

/* hover behaviour for links inside .submenu */
.submenu a:hover {
  background-color: #722c2e;
}

/* this is the initial state of all submenus.
  we set it to max-height: 0, and hide the overflowed content.
*/
.submenu {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.5s ease-out;
}
p{
	color: #722c2e;
}
#navigationPrimary, #navigationPrimary li{
	background-color: 52237f;
	font-weight:bold;
}

#navigationPrimary li:hover {
background: #722c2e;
}

img .coverPage{
	width: 366px;
    height: 436px;
}