@charset "UTF-8";

/*---------------------------
- Title: Layout Module
- Author: http://vicuna.jp/

- Modified by: YOUR NAME
- Last modify: 2009.0308
- Licence: MIT Licence
---------------------------*/

body {
    margin: 0;
    text-align: center;
}

div#header,
div#content {
    width: 940px;
    margin: 0 auto;
    position: relative;
    text-align: left;
}

div#content {
    margin-top: 10px;
}

div#footer {
	width: 940px;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
}

div#footer div.box {
    width: 940px;
    margin: 0 auto;
    position: relative;
    text-align: left;
}

div#shoes {
    width: 100%;
    height: 30px;
    position: fixed;
    bottom: 0px;
    left: 0px;
}

div#shoes div.box {
    width: 940px;
    margin: 0 auto;
    position: relative;
    text-align: left;
}


/*========================================

    Double Column Layout - Sidebar on left

    <body class="double-left">

    ┏┓┏━━━┓
    ┃┃┃━━━┃
    ┗┛┗━━━┛

========================================*/

body.double-left div#main {
    width: 700px;
    float: right;
    clear: right;
    position: relative;
}

/* Utilities
---------------*/
body.double-left div#utilities {
    width: 220px;
    float: left;
    clear: left;
    position: relative;
}

