﻿.containerBox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0; padding: 0;
}


/*PIC*/
.pic {
  height: auto;
  width: auto;
  overflow: hidden;
  margin: 20px;
  border: 1px solid #ff8000;

  -webkit-box-shadow: 5px 5px 5px #888;
  box-shadow: 3px 3px 3px #888;
  float: left;
}

/*PIC CENTER*/
.picctr {
  height: auto;
  width: auto;
  overflow: hidden;
  margin: 0px;
  padding:0;
  border: 1px solid #ff8000;

  -webkit-box-shadow: 5px 5px 5px #888;
  box-shadow: 3px 3px 3px #888;
}

.pic:hover {
  cursor: pointer;
}


/*MORPH*/
.morph {
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}


/*FOCUS*/
.focus {
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}

.focus:hover {
  border: 1px solid #ff8000;
  border-radius: 25%;
}

