/*
  Standard styles for the savvy7 GmbH.
*/

body {
    background-color: #f8f8f8;
    background-image: none;

    border-spacing: 0px;

    padding: 0px;
    margin: 0px;

    font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
    font-size: 10pt;
    color: #000;
}

/* Divs and tables of the interface... */

#content {
    width: 420px;

    background-color: #fff;
    border: 1px solid #ddd;

    -webkit-box-shadow: 5px 2px 10px 3px rgba(0, 0, 0, 0.2); /* WebKit */
    -moz-box-shadow: 5px 2px 10px 3px rgba(0, 0, 0, 0.2); /* Firefox */
    box-shadow: 2px 2px 10px 3px rgba(0, 0, 0, 0.2); /* Standard */

    margin: 40px 7% 20px 7%;
    padding: 5px 20px 10px 20px;
}

.wide {
    width: 90% !important;
}

pre {
  overflow: hidden;
}

.address {
    margin: 10px 0px 20px 0px;

    text-align: left;
}

.screenshot {
    margin: 20px 0px 20px 0px;

    text-align: center;
}
.screenshot img {
    border: 1px solid #e0e0e0;
}

.iphone-download {
    margin: 20px 0px 20px 0px;

    text-align: center;
}
.iphone-download img {
    border: none !important;
}

.title {
    margin: 10px 0px 0px 0px;

    text-align: left;
    font-weight: bold;
}

.text {
    margin: 20px 0px 0px 0px;

    text-align: left;
}

/* Get rid of anoying paddings but keep in certain classes */

form, table, tr, td {
    padding: 0px;
    margin: 0px;
}

hr {
    margin-top: 15px;
    margin-bottom: 15px;
}

/*
  Paragraphs have to start with no margin to work inside DIVs: This the
  only place they are used of (because of textile library RedCloth).
*/

p {
    margin-top: 0px;
    margin-bottom: 5px;
}

/* Headings all have a box and float in the text. */

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #000000;
}

/* The sizes of the different headings. */

h1 {
    font-size: 180%;
}
h2 {
    font-size: 160%;
}
h3 {
    font-size: 140%;
}
h4 {
    font-size: 120%;
}
h5 {
    font-size: 100%;
}
h6 {
    font-size: 100%;
}

/* We define our own list styles. */

ul {
    list-style-type: square;
    margin-left: 0px;
    padding-left: 25px;
}

ol {
    list-style-type: upper-roman;
    margin-left: 0px;
    padding-left: 30px;
}

dt {
    font-weight: bold;
    margin-left: 0px;
    padding-left: 25px;
}

li {
    padding-left: 0px;
    list-style-position: inside;
}

code {
    font-family: "monospace";
    color: #0000aa;
}

em {
    color: #444444;
}

strong {
    color: #000000;
}

textarea {
    font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
    font-size: 10pt;
}

/* We define our own link behaviour to look less clumsy. */

a:link, a:visited, a:active {
    color: #000000;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: #000000;
    text-decoration: underline;
}

