/*
	styles.css
	Initial code generated by thesitewizard.com's Layout Wizard 1.1.1
*/

body {
	font-family: Arial, Helvetica, sans-serif ;
}

img {
	max-width: 100% ;
	width: auto ;
	height: auto ;
}


div#tswsidecol {
	float: right ;
	width: 20% ;
	color: #000 ;
	/* background-color: #fff ; */
}
div#tswcontent {
	float: right ;
	width: 80% ;
	color: #000 ;
	/* background-color: #fff ; */
}
@media only screen and (max-width: 629px) {
	div#tswsidecol {
		float: none ;
		width: 100% ;
	}
	div#tswcontent {
		float: none ;
		width: 100% ;
	}
}
div#tswcontproper, div#tswsideproper {
	padding-left: 5px ;
	padding-right: 5px ;
}
div#tswcontainer {
	color: inherit ;
	/* background-color: #fff ; */
}
div#tswheader {
	color: #000 ;
	/* background-color: #fff ; */
}

/* CA Adds */
div#bubble {
    background: #fff;
    width:120px;
    height:auto;
    border:1px solid #000;
    position:relative;
    -moz-border-radius:20px 20px 20px 0;
	border-radius: 5px 5px 5px 5px;
	font-size: 70%
}
#bubble:before {
	height:10px;
}

/* All the Hamburger Menu code
  =============================== */

/*
 * Made by Erik Terwan
 * 24th of November 2015
 * All rights reserved
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */

body
{
  margin: 0;
  padding: 0;
  
  /* make it look decent enough */
  /* background: #efefe8; */
  background-image: url("/img/bg20light.gif");
  /* background: #efefe1; /* Light Beige */
  color: black;
  font-family: "Avenir Next", "Avenir", sans-serif;
}

a
{
  text-decoration: none;
  color: blue;
  
  transition: color 0.3s ease;
}

a:hover
{
  color: tomato;
}

#hbgrToggle
{
  display: block;
  position: relative;
  top: 2px;
  left: 5px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#hbgrToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#hbgrToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: black;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#hbgrToggle span:first-child
{
  transform-origin: 0% 0%;
}

#hbgrToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#hbgrToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: black;
}

/*
 * But let's hide the middle one.
 */
#hbgrToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#hbgrToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/* Pop-out menu
 * Make pop-out menu absolute positioned
 * at the top left of the screen
 */
#hbgr
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  /* background: #efefe1; */
  background: white;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#hbgr li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's fade it in from the left
 */
#hbgrToggle input:checked ~ ul
{
  transform: scale(1.0, 1.0);
  opacity: 1;
}
