/**
 * This file will contain base styles for the admin section.
 * This will be things like resetting margins and setting font sizes and link colors.
 * This will not include any layout or page/class specific styles (No class or id selectors)
 */

/* Set page size and default font */
html,body{
  margin:0;
  padding:0;
  font-size: 13px;
  font-family: Arial,Helvetica,sans-serif;
  background-color:#FFF;
  color:#000;
}



/* Set link colors */
a{
  text-decoration:underline;
  color:blue;
}
a:hover{
  text-decoration:underline;
  color:#cc33ff;
}

/* Reset default spacing on most html elements
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,blockquote,th,td{
  margin:0;
  padding:0;
}
 */
/* Tables should have only one border by default */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* Align table cells to the top */
td, th{
  vertical-align: top;
  padding:4px;
}
th{
  text-align:center;
  font-weight:bold;
}
/* Images and fieldsets should not have a border unless specified. */
fieldset,img {
	border: 0;
}
/*because legend doesn't inherit in IE */
legend {
	color: #000;
}
/* Set headings to bold */
h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
}
/* Set heading font sizes */
h1{ font-size:185%; }
h2{ font-size:150%; }
h3{ font-size:130%; }
h4{ font-size:120%; }
h5{ font-size:108%; }
h6{ font-size:100%; }

ul{
  padding-left:13px;
}
ul li{
  list-style-type: disc;
  list-style-position: outside;
  margin:1px 0 1px 0px;
}

/* This will allow input field styles to be changed */
input,button,textarea,select,optgroup,option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}

/* Form Styles */

/* put some padding in the cells */
form td{
  padding: 5px;
  vertical-align:middle;
}
/* This is the container that has the form element */
form td.element{

}

form label{
  font-weight: bold;
}

form input[type=radio]{
  margin-right: 5px;
}