/* home page speech bubble */

/* ============================================================================================================================
== OVAL THOUGHT BUBBLE (CSS3)
** ============================================================================================================================ */

.oval-thought {
  position:relative;
  width:270px;
  padding:60px 40px;
  margin:1em auto 80px;
  text-align:center;
  color:#fff; 
  background:#075698;

  /* css3 */
  /*
  NOTES:
  -webkit-border-radius:220px 120px; // produces oval in safari 4 and chrome 4
  -webkit-border-radius:220px / 120px; // produces oval in chrome 4 (again!) but not supported in safari 4
  Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
  */
  -webkit-border-top-left-radius:220px 120px;
  -webkit-border-top-right-radius:220px 120px;
  -webkit-border-bottom-right-radius:220px 120px;
  -webkit-border-bottom-left-radius:220px 120px;
  -moz-border-radius:220px / 120px;
  border-radius:220px / 120px;
  /* NOTE: webkit gradient implementation is not as per spec */
  background:-webkit-gradient(linear, left top, left bottom, from(#2e88c4), to(#075698));
  background:-moz-linear-gradient(top, #2e88c4, #075698);
  background:-o-linear-gradient(top, #2e88c4, #075698);
}

.oval-thought p {font-size:1.25em;}

/* creates the larger circle */
.oval-thought:before {
  content:"";
  position:absolute;
  bottom:-20px;
  left:50px;
  width:30px;
  height:30px;
  background:#075698;

  /* css3 */
  -moz-border-radius:30px;
  -webkit-border-radius:30px;
  border-radius:30px;
}

/* creates the smaller circle */
.oval-thought:after {
  content:"";
  position:absolute;
  bottom:-30px;
  left:30px;
  width:15px;
  height:15px;
  background:#075698;
  
  /* css3 */
  -moz-border-radius:15px;
  -webkit-border-radius:15px;
  border-radius:15px;
}


.wii-me {
  /* text-align: center; */
  float:left; 
  margin-left:0; 
  padding-left:0;
  position:absolute;
  top:648px;
}


















/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
