/* Defaults */
html, body {
 height: 100%;
}

body {
 margin: 0;
}

a img {
 border: none;
}

img.right {
 float: right;
}

img.left {
 float: left;
}

form {
 margin: 0;
}

input, select {
 vertical-align: middle;
}

input[type=text],
input[type=password],
select,
textarea {
 background-color: window;
}

input[type=checkbox],
input[type=radio] {
 width: 13px;
 height: 13px;
 margin: 0;
}

input[type=submit] {
 background-color: buttonFace;
}

/* Cols, rows */

ul.rows, ol.rows,
ul.cols, ol.cols {
 margin: 0;
 padding: 0;
 list-style: none;
}

ul.rows, ol.rows {
 display: block;
}

ul.cols, ol.cols {
 display: table;
}

ul.rows > li, ol.rows > li {
 display: block;
 margin: 0;
 padding: 0;
}

ul.cols > li, ol.cols > li {
 display: table-cell;
 vertical-align: top;
}

* html ul.cols > li, * html ol.cols > li {
 display: inline-block;
}

*:first-child+html ul.cols > li, *:first-child+html ol.cols > li {
 display: inline-block;
 vertical-align: top;
}

