/*【Lite】*/

.monospace-font{
    font-family: "MSゴシック", "Courier New", Consolas, monospace;
}

#global-stage {
    position: relative;
    margin: 0px;
    padding: 10px;
    background: white;
}

.msg {
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

.msg.user .icon{
	width:60px;
	height:60px;
	float:right;
	display: inline-block;
    margin: 20px 20px 10px 5px;
    padding: 0;
    border-radius: 10px;        /* CSS3草案 */  
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 10px;   /* Firefox用 */
	background:url(../img/img-user.png) no-repeat left top;
	}
.msg.auto .icon{
	width:100px;
	height:60px;
	float:left;
	display: inline-block;
    margin: 20px 5px 10px 5px;
    padding: 0;
    border-radius: 10px;        /* CSS3草案 */  
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 10px;   /* Firefox用 */   
	background:url(/img/img-soredoko.jpg) no-repeat left top;
	}
.msg.manual .icon{
	width:60px;
	height:60px;
	float:left;
	display: inline-block;
    margin: 20px 5px 10px 5px;
    padding: 0;
    border-radius: 10px;        /* CSS3草案 */  
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 10px;   /* Firefox用 */   
	background:url(../img/img-manual.png) no-repeat left top;
	}

.msg .txt {
  /* max-width: 340px; */
  word-wrap: break-word;
  display: inline-block;
  position: relative;
  margin: 20px;
  padding: 5px 10px;
  border-radius: 15px;
  background: -webkit-linear-gradient(#ffffff, #dbdfe2);
  background: linear-gradient(#ffffff, #dbdfe2);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}

/**アイコン追加**/
.msg .txt.icon{
	float:left;
	width:96px;
}

.msg .txt:after {
  display: block;
  position: absolute;
  margin-top: -6px;
  top: 50%;
  left: -16px;
  border: solid 6px rgba(0, 0, 0, 0);
  border-right: solid 10px #b9b9b9;
  width: 0;
  height: 0;
  content: "";
}

.msg .choices {
  width: 540px;
  text-align: left;
}

.msg.mine {
  text-align: right;
}

.msg.mine .txt {
  background: -webkit-linear-gradient(#c7f377, #97d267);
  background: linear-gradient(#c7f377, #97d267);
}

.msg.mine .txt:after {
  top: 50%;
  left: auto;
  right: -16px;
  border: solid 6px rgba(0, 0, 0, 0);
  border-left: solid 10px #b9b9b9;
  width: 0;
  height: 0;
  content: "";
}

.msg.invisble {
  opacity: 0;
}

