/* brochures.html */
body {
	background-color: #D4D2D2;
}

#wrapper {
    width: auto;
    height: auto;
    padding: 10px;
    border: 1px solid rgba(69,54,37,0.2);
    margin-left: 50;
    margin-right: 120;
    margin-top: -5px;
    background-color: #FFFFFF;
    word-wrap: break-word;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 2px 2px 8px #7a8986;
    -webkit-box-shadow: 2px 2px 8px #7a8986;
    border-shadow: 2px 2px 8px #7a8986;
	text-align: Left;
	font-family: helvetica;
	position: relative;
	overflow: auto;
}

html {
  height: 100%;
  width: 100%;
  min-width: 50em;
}

img {
    max-width: 100%;
}

h1 {
	text-align: center;
}

/* Scrollbar */

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
::-webkit-scrollbar {
    width: 0.7%;
}
::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #ccc;
	border: 0px none #ffffff;
    border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
    background-color: #bbbbbb;
	border: 0px none #ffffff;
    border-radius: 50px;
}
::-webkit-scrollbar-track:active {
    background-color: #a3a3a3;
	border: 0px none #ffffff;
    border-radius: 50px;
}
::-webkit-scrollbar-thumb {
    background-color: #777;
	border: 0px none #ffffff;
    border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #444;
	border: 0px none #ffffff;
    border-radius: 50px;
}
::-webkit-scrollbar-thumb:active {
    background-color: #222;
	border: 0px none #ffffff;
    border-radius: 50px;
}
::-webkit-scrollbar-corner {
    background: transparent;
}