/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/*
 * Body
 */
body {
    width: 100%;
}

#page-wrapper,
.region-bottom {
  /*
   * If you want to make the page a fixed width and centered in the viewport,
   * this is the standards-compliant way to do that. See also the ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

#page {
    padding-top: 0px;
    padding-bottom: 0px

}

/*
 * Header
 */
#header {
    width: 100%;



}

#header .section {

   	width: 960px;
    	margin-left: auto;
    	margin-right: auto;
    	height: 180px;
    	position: relative;
}

.region-header {


}


/*
 * Main (container for everything else)
 */
#main-wrapper {

  	margin-left: auto;
  	margin-right: auto;
  	width: 1260px;

  	margin-top: 20px; /*anevokatevazei olo to kentriko kommati
  	mazi me to 2o sidebar*/
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;

}

#main {

}

/*
 * Content
 */
#content,
.no-sidebars #content {
  float: left; /* LTR */
  width: 960px;
  margin-left: 0; /* LTR */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

.sidebar-first #content {
  width: 640px;
  margin-left: 320px; /* LTR */ /* The width of .region-sidebar-first. */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
}

.sidebar-second #content {
  width: 660px;
  margin-left: 0; /* LTR */
  margin-right: -660px; /* LTR */ /* Negative value of #content's width + left margin. */
}

.two-sidebars #content {
  width: 660px;
  margin-left: 300px; /* LTR */ /* The width of .region-sidebar-first */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
}

#content .section {
  padding-left: 20px;
	padding-right: 20px
}


.region-highlighted{
}



/*
 * Navigation
 */
#navigation {
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 3em; /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */

                  margin-top: 100px
}

.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 3em; /* Set this to the same value as the navigation height above. */
}

#navigation .section {
}

/*
 * First sidebar
 */
.region-sidebar-first {
 	float: left; /* LTR */
  	width: 300px;
  	margin-left: 0; /* LTR */
  	margin-right: -300px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  	padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

.region-sidebar-first .section {
  	margin: 0 0 0 0; /* LTR */
  	padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  	float: left; /* LTR */
  	width: 300px;
  	margin-left: 960px; /* LTR */ /* Width of content + 		sidebar-first. */
  	margin-right: -1260px; /* LTR */ /* Negative value 		of .region-sidebar-second's width + left margin. */
  	padding: 0; /* DO NOT CHANGE. Add padding or margin 		to .region-sidebar-second .section. */
}

.region-sidebar-second .section {
  	margin: 0 0 0 0px; /* LTR */
  	padding: 0;
}

/*
 * Footer
 */
.region-footer {
    	width: 100%;
    	position: relative;
    	margin-left: auto;
    	margin-right: auto;
}

/*
 * Page bottom
 */
.region-bottom /* See also the #page-wrapper declaration above that this div shares. */ {

}

.region-bottom .content{
	width: 960px;
    	margin-left: auto;
    	margin-right: auto;
}

/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
.region-footer,
.region-bottom {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */

/* #page-wrapper {
  overflow-y: hidden;
}
*/
