/* 메인용 로고 및 검색창 중앙 정렬용  */
	.outer {
	  display: table;
	  width: 100%;
	  height: 100%;
	}
	.inner {
	  display: table-cell;
	  vertical-align: middle;
	  text-align: center;
	}
	.centered {
	  position: relative;
	  display: inline-block;   
	}
