/*The below styles how the header text will look (if enabled)*/
.header {
	font-family: Tahoma;
	font-size: 18px;
	text-align: center;
	margin-bottom: 25px;
}

/*The below styles how the main div which holds the system status DIVS will look*/
.placeholder {
	margin-bottom: 15px;
	text-align: center;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/*The below styles how the system status DIVS will look (the rounded edges of the boxes)*/
/*To change the background colour of these boxes change every occurrence of #EEEEEE*/
.container{
  display:block; 
  }

.container *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#EEEEEE}

.container1{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  border-left:1px solid #EEEEEE;
  border-right:1px solid #EEEEEE;
  background:#EEEEEE}

.container2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #EEEEEE;
  border-right:1px solid #EEEEEE;
  background:#EEEEEE}

.container3{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #EEEEEE;
  border-right:1px solid #EEEEEE;}

.container4{
  border-left:1px solid #EEEEEE;
  border-right:1px solid #EEEEEE}

.container5{
  border-left:1px solid #EEEEEE;
  border-right:1px solid #EEEEEE}

/*The below styles how the content contained within the rounded edged boxes will look*/
/*To change the background colour of this box change #EEEEEE*/
.containercontent{
 height: auto;
 color: #000000;
 text-align: left;
 font-family: Tahoma;
 padding-left: 4px;
 padding-right: 4px;
 padding-bottom: 1px;
 padding-top: 1px;
 background:#EEEEEE}

/*The below styles how links will look*/
a:link, a:visited{
 font-weight: bold;
 text-decoration: none;
 color: #000000;
}

/*The below styles how the server name will look in the system status table*/
.name {
	width: 85%;
	font-weight: bold;
	float: left;
}

/*The below styles how the system status table displays a successful query on the server port*/
.up {
	width: 15%;
	height: 48px;
	background-image: url(up.png);
	background-repeat: no-repeat;
	float: right;
}

/*The below styles how the system status table displays a failed query on the server port*/
.down {
	width: 15%;
	height: 48px;
	background-image: url(down.png);
	background-repeat: no-repeat;
	float: right;
}

/*The below styles how the IP address text will look in the system status table (if enabled)*/
.ip {
	font-style: italic;
	font-size: 12px;
}

/*The below styles how the server description text and error text will look in the system status table*/
.description {
	width: 100%;
	margin-top: 5px;
}

/*The below styles how the footer text will look (if enabled)*/
.footer {
font-family: Tahoma;
font-size: 9px;
text-align: center;
}