@charset "UTF-8";
#chatFrame {
  width: 100%;
  height: 600px;
  margin: 0;
  padding: 8px 10px 4px 10px;
  box-sizing: border-box;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#chatFrame > .chatFrameInner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}
#chatFrame .btn {
  float: left;
  min-width: 60px;
  margin: 0 6px;
  padding: 10px;
  border: 1px solid #666;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}
#chatFrame .btn:hover {
  color: #888;
  border: 1px solid #ccc;
}
#chatFrame .btn:active {
  color: #888;
  background-color: #dff;
  border: 1px solid #aaf;
}
#chatFrame .btnOrange {
  color: #fff;
  background-color: #ef7a00;
  border-color: #d06000;
}
#chatFrame .btnOrange:hover {
  border: solid 1px #ccc;
  color: #fff;
}
#chatFrame .btnBlue {
  color: #fff;
  background-color: #005bac;
  border-color: #005bac;
}
#chatFrame .btnBlue:hover {
  border: solid 1px #005bac;
  color: #fff;
}
#chatFrame .plusButton {
  position: relative;
  float: right;
  height: 12px;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 10.5pt;
  margin: 4px 8px 0 0;
  padding: 6px 8px 6px 25px;
  user-select: none;
}
#chatFrame .plusButton:before,
#chatFrame .plusButton:after {
  content: "";
  display: block;
  position: absolute;
  top: 10.5px;
  left: 8px;
  width: 12px;
  height: 2px;
  background: #333;
}
#chatFrame .plusButton:after {
  transform: rotate(90deg);
}
#chatFrame .chatBoards {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f6f6f6;
  width: 250px;
  height: 100%;
  border: 1px solid #aaa;
  overflow: hidden;
  box-sizing: border-box;
  cursor: default;
  z-index: 800;
}
#chatFrame ::-webkit-input-placeholder,
#chatFrame ::-moz-placeholder,
#chatFrame :-ms-input-placeholder {
  color: #ccc;
}
#chatFrame input,
#chatFrame textarea {
  font-family: inherit;
}
.chatBoards .header {
  position: absolute;
  background-color: #f6f6f6;
  font-size: 11pt;
  width: 100%;
  height: 35px;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  z-index: 802;
}
.chatBoards .header p {
  float: left;
  font-weight: bold;
  margin: 10px 0 10px 5px;
}
.chatBoards .header .plusButton {
  cursor: pointer;
}
.chatBoards .list {
  position: absolute;
  width: 100%;
  height: calc(100% - 29px);
  padding-top: 35px;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 801;
}
.chatBoards .list > .listInner {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.chatBoards .list .board {
  position: relative;
  width: 100%;
  min-height: 38px;
  padding: 6px 10px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
}
.chatBoards .list .board .title {
  float: left;
  width: 195px;
  font-size: 10pt;
  word-wrap: normal;
  word-break: break-all;
  margin: 0 0 4px 0;
}
.chatBoards .list .board .creater,
.chatBoards .list .board .date {
  float: left;
  width: 195px;
  font-size: 7pt;
  color: #888;
}
.chatBoards .list .board .unread {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 8px;
  height: 8px;
  font-size: 8pt;
  color: #fff;
  background-color: #f00;
  border: 4px solid #f00;
  border-radius: 10px;
  text-align: center;
}
.chatBoards .list .board .active {
  font-weight: bold;
}
.chatBoards .list .board:hover {
  background-color: #fff;
}
.chatBoards .list .board:last-child {
  margin-bottom: -1px;
}
.chatBoards .chatSearch {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 29px;
  font-size: 9pt;
  padding: 3px 3px 3px 3px;
  border-top: 1px solid #aaa;
  box-sizing: border-box;
}
.chatBoards .chatSearch input {
  width: 199px;
  height: 22px;
  vertical-align: top;
  outline: none;
  box-sizing: border-box;
}
.chatBoards .chatSearch .chatSearchButton {
  display: inline-block;
  width: 40px;
  height: 22px;
  font-size: 11pt;
  text-align: center;
  margin-left: 3px;
  padding: 3px;
  vertical-align: top;
  border: 1px solid #888;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
}
.chatBoards .chatSearch .chatSearchButton:hover {
  opacity: 0.6;
}
#chatFrame .chatMain {
  position: absolute;
  left: 250px;
  top: 0;
  background-color: #fff;
  width: calc(100% - 250px);
  height: 100%;
  border: 1px solid #aaa;
  border-left: 0;
  overflow: hidden;
  cursor: default;
  box-sizing: border-box;
  z-index: 900;
}
.chatMain > .header {
  position: absolute;
  width: 100%;
  height: 35px;
  background-color: #fff;
  border-bottom: 1px solid #aaa;
  box-sizing: border-box;
  z-index: 902;
}
.chatMain > .header .title {
  float: left;
  font-size: 11pt;
  font-weight: bold;
  margin: 10px 0;
}
.chatMain > .header .title > div {
  float: left;
}
.chatMain > .header .edit {
  float: left;
  width: 20px;
  height: 20px;
  margin: -3px 7px;
  background-image: url("../images/pen.png");
  cursor: pointer;
}
.chatMain > .header .notEdit {
  float: left;
  width: 0px;
  height: 20px;
  margin: -3px 7px;
  cursor: default;
}
.chatMain > .header > .chatBoardTitleEdit {
  display: none;
  float: left;
  margin: 2px 0;
}
.chatMain > .header > .chatBoardTitleEdit input:focus {
  border-color: #005bac;
}
.chatMain > .header .chatBoardTitleEdit > .sendButton {
  margin: 5px;
  padding: 3px 5px;
  font-size: 10.5pt;
}
.chatMain > .header .chatBoardTitleEdit input {
  width: 400px;
  height: 17px;
  margin: 4px 0;
  font-size: 11pt;
  font-weight: bold;
  outline: none;
}
.chatMain > .header > .deleteButton {
  float: right;
  background-color: #aaa;
  color: #fff;
  border-radius: 4px;
  margin: 4px 8px 0 0;
  padding: 6px;
  font-size: 11pt;
  user-select: none;
  cursor: pointer;
}
.chatMain > .header > .deleteButton:hover {
  background-color: #f00;
}
.chatMain > .header > .settingButton {
  position: relative;
  float: right;
  height: 12px;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 10.5pt;
  margin: 4px 8px 0 0;
  padding: 6px;
  user-select: none;
  cursor: pointer;
}
.chatMain > .chatBody {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding-top: 35px;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 901;
}
.chatMain > .chatBody > .chatMessages {
  float: left;
  background-color: #fff;
  width: calc(100% - 200px);
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  padding: 0 10px;
}
.chatMessages > .response {
  position: relative;
  float: left;
  background-color: #fff;
  width: 100%;
  margin: -1px 0 0 0;
  padding: 8px 0 0 0;
  border: 0 dashed #ccc;
  border-width: 1px 0;
  overflow: hidden;
  box-sizing: border-box;
}
.chatMessages > .response > .header {
  width: 100%;
  padding: 4px 10px;
  box-sizing: border-box;
  overflow: hidden;
}
.chatMessages > .response > .header > .userName {
  float: left;
  font-weight: bold;
  font-size: 10pt;
}
.chatMessages > .response > .header > .companyName {
  float: left;
  margin: 2px 0 0 6px;
  color: #888;
  font-size: 7pt;
}
.chatMessages > .response > .header > .date {
  float: right;
  margin: 0;
  font-size: 10pt;
}
.chatMessages > .response > .header > .time {
  float: right;
  margin: 0;
  font-size: 10pt;
}
.chatMessages > .response .removeButton {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  color: #fff;
  background-color: #ccc;
  cursor: pointer;
}
.chatMessages > .response .removeButton:before,
.chatMessages > .response .removeButton:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 3px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}
.chatMessages > .response .removeButton:after {
  transform: rotate(135deg);
}
.chatMessages > .response .removeButton:hover {
  background-color: #f00;
}
.chatMessages > .response > .message {
  position: relative;
  padding: 10px;
  font-size: 10pt;
}
.chatMessages > .response > .message > pre {
  line-height: 1.2em;
  white-space: pre-wrap;
  word-break: break-all;
}
.chatMessages > .response > .message > .attachments {
  padding: 3px 10px;
  overflow: hidden;
}
.chatMessages > .response > .message > .attachments > .attachment {
  width: 160px;
  color: #04c;
  cursor: pointer;
}
.chatMessages > .response > .message > .attachments > .attachment > .image {
  position: relative;
  width: 160px;
  height: 160px;
  border: 1px solid #ccc;
}
.chatMessages > .response > .message > .attachments > .attachment > .image > img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.chatMessages > .response > .message > .attachments > .attachment > .title {
  width: 160px;
  margin-top: 4px;
  word-wrap: break-word;
  word-break: break-all;
  text-align: center;
}
.chatMessages > .response > .message > .attachments > .attachment:hover {
  opacity: 0.6;
}
.chatMessages > .response > .message > .readCount {
  position: absolute;
  right: 10px;
  top: 0;
  height: 16px;
  color: #09f;
}
.chatMessages > .paddingDummy {
  border: 0;
  margin: 0;
  padding: 0;
}
.chatMessages > .myResponse {
  background-color: #eff5ff;
}
.chatMessages > .dateLine,
.chatMessages > .unreadLine {
  position: relative;
  float: left;
  width: 100%;
  height: 10px;
  font-size: 10pt;
  color: #000;
  overflow: visible;
  margin: 0 0 11px 0;
  border-bottom: 1px solid #ccc;
  text-align: center;
  line-height: 1.5em;
}
.chatMessages > .dateLine > div,
.chatMessages > .unreadLine > div {
  display: inline-block;
  height: 12px;
  padding: 1px 6px;
  border-radius: 6px;
  background-color: #fff;
}
.chatMessages > .unreadLine {
  border-color: #005abc;
}
.chatMessages > .unreadLine > div {
  color: #005abc;
  font-weight: bold;
}
.chatMain > .chatBody > .chatForm {
  position: absolute;
  bottom: 0px;
  width: calc(100% - 200px);
  height: 100px;
  padding: 10px;
  box-sizing: border-box;
  z-index: 910;
}
.chatForm > .chatFormInner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: rgba(0,0,0,0.2) 0 0 10px;
  overflow: hidden;
}
.chatForm .header {
  position: absolute;
  width: 100%;
  height: 30px;
  border-bottom: 1px solid #aaa;
  box-sizing: border-box;
  z-index: 912;
}
.chatForm .header > .headerInner {
  float: right;
}
.sendButton {
  float: left;
  height: 13px;
  font-size: 10.5pt;
  font-weight: bold;
  color: #fff;
  background-color: #005bac;
  margin: 3px;
  margin-left: 12px;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
}
.chatForm .header .sendButtonhover {
  opacity: 0.6;
}
.chatForm .header .attachmentButton {
  float: left;
  height: 13px;
  font-size: 10.5pt;
  margin: 3px;
  padding: 5px 0 5px 23px;
  background-image: url("../images/clip.png");
  background-repeat: no-repeat;
  background-position: 1px 1px;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
}
.chatForm .header .attachmentButton:hover {
  opacity: 0.6;
}
.chatForm .body {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 34px 6px 4px 6px;
  box-sizing: border-box;
  z-index: 911;
}
.chatForm .body textarea {
  width: 100%;
  height: 100%;
  border: none;
  box-sizing: border-box;
  outline: none;
  resize: none;
  font-size: 10pt;
  overflow-y: scroll;
}
#chatFrame .chatDialog .chatAttachmentDropArea {
  width: 90%;
  margin: auto 5%;
  height: 200px;
  border: solid 1px #808080;
  border-radius: 8px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #eee;
  font-size: 16pt;
  text-align: center;
  color: #999;
  font-weight: bold;
  user-select: none;
}
#chatFrame .chatDialog > .dlgContent {
  display: table;
}
#chatFrame .chatDialog > .dlgContent pre {
  white-space: pre;
  word-break: normal;
}
#chatFrame .chatDialog table.chatAttachmentTable {
  width: 600px;
}
#chatFrame .chatDialog table.chatAttachmentTable th {
  padding: 8px 0;
  box-sizing: border-box;
}
#chatFrame .chatDialog table.chatAttachmentTable th.fileName {
  width: 250px;
}
#chatFrame .chatDialog table.chatAttachmentTable th.rename {
  width: 200px;
}
#chatFrame .chatDialog table.chatAttachmentTable th.fileSize {
  width: 100px;
}
#chatFrame .chatDialog table.chatAttachmentTable th.remove {
  width: 40px;
}
#chatFrame .chatDialog table.chatAttachmentTable td {
  padding: 6px 8px;
  word-break: break-all;
  box-sizing: border-box;
}
#chatFrame .chatDialog table.chatAttachmentTable td.rename {
  padding: 2px 4px;
}
#chatFrame .chatDialog table.chatAttachmentTable td.rename input {
  width: 100%;
  height: 19px;
  outline: none;
  padding: 0 2px;
  box-sizing: border-box;
}
#chatFrame .chatDialog table.chatAttachmentTable td.fileSize {
  text-align: right;
}
#chatFrame .chatDialog table.chatAttachmentTable td.remove {
  position: relative;
  cursor: pointer;
}
#chatFrame .chatDialog table.chatAttachmentTable td.remove:before,
#chatFrame .chatDialog table.chatAttachmentTable td.remove:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 3px;
  background: #f00;
  transform: rotate(45deg);
}
#chatFrame .chatDialog table.chatAttachmentTable td.remove:after {
  transform: rotate(135deg);
}
#chatFrame .chatDialog table.chatAttachmentTable td.error {
  color: #f00;
}
.waitDialog .dlgContent {
  min-width: 240px;
  min-height: 100px;
}
.waitDialog .dlgBody {
  height: 48px;
  background-image: url("../images/loading.gif");
  background-repeat: no-repeat;
  background-position: center;
}
.chatMain > .chatBody > .chatMembers {
  position: relative;
  float: left;
  background-color: #f6f6f6;
  width: 200px;
  height: 100%;
  border: 1px solid #aaa;
  border-width: 0 0 0 1px;
  font-size: 11pt;
  overflow: hidden;
  box-sizing: border-box;
  cursor: default;
  z-index: 920;
}
.chatMembers .header {
  position: absolute;
  background-color: #f6f6f6;
  font-size: 11pt;
  width: 100%;
  height: 35px;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  z-index: 922;
}
.chatMembers .header p {
  float: left;
  font-weight: bold;
  margin: 10px 0 10px 5px;
}
.chatMembers .header .memberEditButton {
  float: right;
  height: 12px;
  background-color: #fff;
  background-image: url("../images/person.png");
  background-repeat: no-repeat;
  background-position: 2px 2px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 10.5pt;
  margin: 4px 8px 0 0;
  padding: 6px 8px 6px 25px;
  cursor: pointer;
  user-select: none;
}
.chatMembers .list {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 35px;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 921;
}
.chatMembers .list > .listInner {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.chatMembers .list .member {
  position: relative;
  width: 100%;
  min-height: 38px;
  padding: 6px 10px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
}
.chatMembers .list .member .name {
  float: left;
  width: 170px;
  font-size: 10pt;
  word-wrap: normal;
  word-break: break-all;
  box-sizing: border-box;
}
.chatMembers .list .member .company {
  float: left;
  width: 170px;
  color: #888;
  padding: 6px 0 0 0;
  font-size: 7pt;
  word-wrap: normal;
  word-break: break-all;
  box-sizing: border-box;
}
.chatMembers .list .member:hover {
  background-color: #fff;
}
.chatMembers .list .member:last-child {
  margin-bottom: -1px;
}
#chatFrame .cbsFrame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  user-select: none;
}
#chatFrame .cbsFrame > div {
  width: 100%;
  padding: 2px 2px 10px 2px;
  box-sizing: border-box;
}
#chatFrame .cbsFrame > div p {
  margin-bottom: 4px;
}
#chatFrame .cbsFrame > div input,
#chatFrame .cbsFrame > div textarea {
  width: 100%;
  font-size: 13pt;
  outline: none;
  padding: 2px 4px;
  border: 1px solid #888;
  border-radius: 5px;
  box-sizing: border-box;
}
#chatFrame .cbsFrame > div input {
  height: 1.6em;
}
#chatFrame .cbsFrame > div textarea {
  height: 4.8em;
  resize: none;
}
#chatFrame .cbsFrame > div input:focus,
#chatFrame .cbsFrame > div textarea:focus {
  border: 1px solid #09f;
}
#chatFrame .cbsFrame > div input[type=checkbox] {
  width: 1em;
  height: 1em;
  vertical-align: text-top;
}
#chatFrame .cbsFrame > div:last-child {
  padding: 2px 2px 2px 2px;
}
#chatFrame .cbsFrame .cbsBoardMembers {
  width: 100%;
  height: 300px;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table {
  display: none;
  width: 638px;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  cursor: default;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table > table {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  user-select: none;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table thead {
  height: 31px;
  box-sizing: border-box;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table tbody {
  display: block;
  position: absolute;
  top: 37px;
  margin: -2px 0 0 -2px;
  height: calc(100% - 37px);
  overflow-x: hidden;
  overflow-y: scroll;
  cursor: pointer;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table tbody > tr {
  cursor: pointer;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table tbody > tr:hover {
  opacity: 0.6;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table th {
  padding: 8px 0;
  font-size: 10pt;
  box-sizing: border-box;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table td {
  padding: 6px 8px;
  word-break: break-all;
  box-sizing: border-box;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table .select {
  width: 60px;
  padding: 3px;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table th.select > input {
  height: 15px;
  margin: 0 0 0 2px;
  vertical-align: middle;
  cursor: pointer;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table td.select > input {
  display: block;
  width: 100%;
  height: 18px;
  margin: 0;
  cursor: pointer;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table .long {
  width: 200px;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table .middle {
  width: 150px;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table .short {
  width: 100px;
}
#chatFrame .cbsFrame .cbsBoardMembers > .table .pad {
  width: auto;
  border: 0;
  background-color: #fff;
}
#chatFrame .cbsFrame .tabLabels2 {
  z-index: 1001;
}
#chatFrame .cbsFrame .tabBody {
  padding: 2px;
  overflow: hidden;
}
#chatFrame .cbsFrame .cbsBoardMembersJoinedOnly {
  position: relative;
  float: right;
  height: 0;
  font-size: 11pt;
  z-index: 1002;
}
#chatFrame .cbsFrame .cbsBoardMembersJoinedOnly > input,
#chatFrame .cbsFrame .cbsBoardMembersJoinedOnly > label {
  cursor: pointer;
}
#chatFrame .cbsFrame .shareReleaseMsg {
  color: #000;
  margin-left: 40px;
  margin-top: 5px;
  pointer-events: none;
}
.cbsFrame > .buttons {
  display: inline-block;
  position: relative;
  left: 50%;
  width: 210px;
  margin-left: -105px;
  overflow: hidden;
}
#chatFrame .chatSearchResult {
  display: none;
  z-index: 930;
}
.chatSearchResult > .header > .title {
  width: 100%;
}
.chatSearchResult > .header > .title > .headerIcon {
  float: left;
  width: 20px;
  height: 20px;
  margin: -3px 7px;
  background-image: url("../images/lens.png");
}
.chatSearchResult > .csrFrame {
  width: 100%;
  height: 100%;
  padding: 35px 0 0 0;
  overflow: hidden;
  box-sizing: border-box;
}
.chatSearchResult > .csrFrame > .boards {
  float: left;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 8px;
  box-sizing: border-box;
}
.chatSearchResult > .csrFrame > .boards > .board {
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid #005bac;
  border-radius: 5px;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
}
.chatSearchResult > .csrFrame > .boards > .board > .header {
  width: 100%;
  height: 26px;
  border-bottom: 1px solid #005bac;
  box-sizing: border-box;
}
.chatSearchResult > .csrFrame > .boards > .board > .header > .title {
  float: left;
  width: 100%;
  height: 100%;
  padding: 7px;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.chatSearchResult > .csrFrame > .boards > .board > .body {
  width: 100%;
  height: 26px;
  padding: 7px;
  box-sizing: border-box;
}
.chatSearchResult > .csrFrame > .boards > .board:last-child {
  margin-bottom: 0;
}
.chatSearchResult > .csrFrame > .messages {
  float: left;
  width: 50%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
}
.chatPreview {
  margin-top: 15px;
}
.chatPreview > p {
  margin: 5px 0;
  line-height: 1.1em;
}
.filePreview > .image,
.filePreview > .file {
  position: relative;
  width: 640px;
  height: 480px;
  border: 1px solid #ccc;
}
.filePreview > .file {
  width: 640px;
  height: 240px;
}
.filePreview img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.filePreview > .title {
  width: 640px;
  margin-top: 4px;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
  text-align: center;
}
#chatFrame .notificationFrame {
  width: 850px;
  height: 365px;
}
