body { 
	background:#ffffff;
	overflow:auto;
	font-family: "Avenir", Arial, Helvetica, sans-serif;
	font-size:14px; 
	text-align: justify;
	line-height:1.5em;
	color:#635d5b;
	margin:0;
}

p1 {
	font-family: "Avenir", Arial, Helvetica, sans-serif;
	font-size:21px;
	color:#635d5b;
	margin-bottom:5px;
}

#menuBackground {
    background:#ffffff;
    width:100%;
    height:50px;
    text-align: center;
}
#menuContainer {
    text-align: center;
	position:relative;
 	z-index:1000;
}

/*Strip the ul of padding and list styling*/
ul {
    list-style-type:none;
    margin:0;
    padding:0;
}

/*Create a horizontal list with spacing*/
li {
    display:inline-block;
    vertical-align: top;
    margin-right:1px;
}

/*Style for menu links*/
li a {
    display:block;
    min-width:150px;
    height:50px;
    text-align:center;
    line-height:50px;
    font-family:"Avenir",Helvetica,Arial,sans-serif;
    color:#635d5b;
    background:#ffffff;
    text-decoration:none;
    font-size: 1rem;
}

/*Hover state for top level links*/
li:hover a {
	background:#ffffff;
	color:#d4be89
/*    background:#19c589*/
}

/*Style for dropdown links*/
li:hover ul a {
    background:#ffffff;
    color:#635d5b;
    height:40px;
    line-height:40px
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
    background:#ffffff;
    color:#d4be89
}

/*Hide dropdown links until they are needed*/
li ul {
    display:none;
	position:absolute
}

/*Make dropdown links vertical*/
li ul li {
    display:block;
}

/*Prevent text wrapping*/
li ul li a {
    width:auto;
    min-width:100px;
    padding:0 20px
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden,.hidden:hover {
    display:block
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
    font-family:"Avenir",Helvetica,Arial,sans-serif;
    text-decoration:none;
    color:#635d5b;
    background:#ffffff;
    text-align:center;
    padding:16px 0;
    display:none;
    width:100%
}

/*Hide checkbox*/
input[type=checkbox] {
    display:none
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu {
    display:block;
    margin:0 auto
}

/*Responsive Styles*/
@media screen and (max-width : 825px) {
    /*Make dropdown links appear inline*/
    ul {
        position:static;
        display:none;
        white-space: initial;
    }
	
	li ul {
	position:relative
	}
	
    /*Make all menu links full width*/
    ul li,li a {
        width:100%
    }
    
    /*Display 'show menu' link*/
    .show-menu {
        display:block
    }
}

.proport {   
  width: auto;
  display: inline-block;    
  margin: 0px;
}

.proport img {
  width: 100%; /* Will shrink image to 30% of its original width */
  height: auto;    
}​

