<!--
* {
  box-sizing: border-box;
}

body {
  width: 800px;
  margin: auto;
  font-family: Arial;
  color: #fff;
  background: #e1e3e8;
}

a:link {color: #fff; font-weight: bold; text-decoration: none;}
a:visited {color: #fff; font-weight: bold; text-decoration: none;}
a:hover {color: #fff; font-weight: bold; text-decoration: none;}
	
.maincontent {
  text-align: center;
  width: 800px; 
  margin: auto;
  margin-top: 20px;
  padding: 0px 0px;
}

.chatblock {
  position: relative;
  max-width: 800px;
  min-height: 120px;
  background: #e1e3e8;
  margin: auto;
  margin-top: 20px;
  padding: 0px 0px;
  text-align: center;
}

.contentblock {
  max-width: 360px;
  background: #e1e3e8;
  margin: auto;
  margin-top:30px;
  padding: 0px 0px;
  text-align: center;
}

.maintopleft {position: relative; z-index:1; max-width::400px; text-align:left; background:#e1e3e8;}
.maintopright {position: relative; z-index:2; max-width::400px; text-align:left; background:#e1e3e8; left:380px; top: 0px;}

.bubble {
    position: relative;
	z-index: 3;
    background: #822;
    color: #fff;
    font-family: Arial;
    font-size: 14px;
	font-style:italic; 
	font-weight: bold;
    width: 400px;
    border-radius: 15px;
    padding: 10px;
}
.bubble:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    z-index: 2;
    border-style: solid;
    border-width: 0 18px 20px 0;
    border-color: transparent #822 transparent transparent;
    bottom: -19px;
    left: 70%;
    margin-left: -18px;
}

.bubble2 {
    position: relative;
	z-index: 5;
    background: #448;
    color: #fff;
    font-family: Arial;
    font-size: 14px;
	font-style:italic; 
	font-weight: bold;
    width: 400px;
    border-radius: 15px;
    padding: 10px;
}
.bubble2:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    z-index: 4;
    border-style: solid;
    border-width: 20px 18px 0 0;
    border-color: #448 transparent transparent transparent;
    bottom: -19px;
    left: 55%;
    margin-left: -18px;
}


.flex-container {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  padding: 10px;
  justify-content: space-around;
  align-items: flex-start;
  align-content: space-around;
  margin: auto;
  margin-top: 20px;
  text-align: center;
  background:#000;
  border: 2px solid black; 
  border-radius: 15px;
}

.flex-box1, .flex-box2  {
    width: 50%;
    margin: 0px 0px 0px 0px;
    padding-left: 10px;
	font-family: arial;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	background:#000;
	text-align: left; 
}

.textlinks
  {
		font-family: arial;
		font-size: 14px;
		color: #fff;
		background:#000;
		text-align: left; 
	}
	
.divclear {
  clear: both;
  margin-top: 30px;  
}

.footer {
  text-align: center;
  padding: 22px;
  background: #000;
}


@media (max-width: 800px) 
	{
       body { width: 500px; }

    	.chatblock { max-width: 500px; }

		.maincontent { width: 500px; }

		.contentblock { max-width: 360px; }

		.maintopleft { max-width: 400px;}
		.maintopright { max-width: 400px; left:100px; top: 0px;}

		.bubble { font-size: 14px; width: 400px; }
		.bubble:after {
			border-color: #822 transparent;
			border-width: 20px 18px 0;
			bottom: -19px;
			left: 55%;
			margin-left: -18px;
		}

		.bubble2 { font-size: 14px;	width: 400px; }
		.bubble2:after {
			border-color: #448 transparent;
			border-width: 20px 18px 0;
			bottom: -19px;
			left: 60%;
			margin-left: -18px;
		}
		
		.flex-container  { max-width: 500px;  } 	
		.flex-box1, .flex-box2  { width: 50%;  }
	}

@media (max-width: 500px) 
	{
       body { width: 360px; }

	    .chatblock { max-width: 360px; }

		.maincontent { width: 360px; }

		.contentblock { max-width: 360px; }

		.maintopleft { max-width: 300px;}
		.maintopright { max-width: 300px; left:60px; top: 0px;}

		.bubble { font-size: 13px; width: 300px; line-height: 16px;}
		.bubble:after {
			border-color: #822 transparent;
			border-width: 20px 18px 0;
			bottom: -19px;
			left: 50%;
			margin-left: -18px;
		}

		.bubble2 { font-size: 13px;	width: 300px; line-height: 16px;}
		.bubble2:after {
			border-color: #448 transparent;
			border-width: 20px 18px 0;
			bottom: -19px;
			left: 70%;
			margin-left: -18px;
		}
		
		.flex-container  { max-width: 360px;  } 	
		.flex-box1, .flex-box2  { width: 100%; 	line-height: 30px; }
	} 
}



-->