@media (min-width: 1200px)  {
.body {
	margin-left: 10%;
	margin-right: 10%;
}
}



/** page structure **/
.container {
  margin: 0;
  padding-left: -12%;

  margin: 0 auto;
  max-width: 600px;
}


/** ios1-ios6 bubbles **/
.bubble {
  margin: 0;
  box-sizing: border-box;
  float: left;
  width: auto;
  max-width: 80%;
  position: relative;
  clear: both;
  
  background: #f5977f;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.15, #4bcfff), color-stop(1, #95c2fd));
  background-image: -webkit-linear-gradient(bottom, #4bcfff 15%, #95c2fd 100%);
  background-image: -moz-linear-gradient(bottom, #4bcfff 15%, #95c2fd 100%);
  background-image: -ms-linear-gradient(bottom, #4bcfff 15%, #95c2fd 100%);
  background-image: -o-linear-gradient(bottom, #4bcfff 15%, #95c2fd 100%);
  background-image: linear-gradient(bottom, #4bcfff 15%, #95c2fd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#95c2fd', endColorstr='#4bcfff');
 
  border: solid 1px rgba(0,0,0,0.5);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;

  -webkit-box-shadow: inset 0 8px 5px rgba(255,255,255,0.65), 0 1px 2px rgba(0,0,0,0.2);
  -moz-box-shadow: inset 0 8px 5px rgba(255,255,255,0.65), 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: inset 0 8px 5px rgba(255,255,255,0.65), 0 1px 2px rgba(0,0,0,0.2);
  
  margin-bottom: 5px;
  padding: 6px 20px;
  color: #000;
  text-shadow: 0 1px 1px rgba(255,255,255,0.8);
  word-wrap: break-word;
}

.bubble:before, .bubble:after {
  margin: 0;
  border-radius: 20px / 5px;
  content: '';
  display: block;
  position: absolute;
}
.bubble:before {
  margin: 0;
  border: 10px solid transparent;
  border-bottom-color: rgba(0,0,0,0.5);
  bottom: 0px;
  left: -7px;
  z-index: -2;
}
.bubble:after {
  margin: 0;
  border: 8px solid transparent;
  border-bottom-color: #4bcfff; /* arrow color */
  bottom: 1px;
  left: -5px;
}


.bubble-alt {
  margin: 0;
  float: right;
}
.bubble-alt:before {
  margin: 0;
  left: auto;
  right: -7px;
}
.bubble-alt:after {
  margin: 0;
  left: auto;
  right: -5px;
}

.bubble p {
  margin: 0;
  font-size: 1.4em;
}

/* green bubble */
.green {
  margin: 0;
  background: #7acd47;
  background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.15, #ace44b),color-stop(1, #7acd47));
  background-image: -webkit-linear-gradient(bottom, #ace44b 15%, #7acd47 100%);
  background-image: -moz-linear-gradient(bottom, #ace44b 15%, #7acd47 100%);
  background-image: -ms-linear-gradient(bottom, #ace44b 15%, #7acd47 100%);
  background-image: -o-linear-gradient(bottom, #ace44b 15%, #7acd47 100%);
  background-image: linear-gradient(bottom, #ace44b 15%, #7acd47 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#7acd47', endColorstr='#ace44b');
}
.green:after {
  margin: 0;
  border-bottom-color: #ace44b;
}


/* yellow bubble */
.yellow {
  background: #7acd47;
  background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.15, #fcf3c3),color-stop(1, #f4e371));
  background-image: -webkit-linear-gradient(bottom, #fcf3c3 15%, #f4e371 100%);
  background-image: -moz-linear-gradient(bottom, #fcf3c3 15%, #f4e371 100%);
  background-image: -ms-linear-gradient(bottom, #fcf3c3 15%, #f4e371 100%);
  background-image: -o-linear-gradient(bottom, #fcf3c3 15%, #f4e371 100%);
  background-image: linear-gradient(bottom, #fcf3c3 15%, #f4e371 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#f4e371', endColorstr='#fcf3c3');
}
.yellow:after {
  border-bottom-color: #fcf3c3;
}

