/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	p.header {
    font-size: 50px;
    line-height: 60px;
}
header p.header img {
    width: 52px;
    margin-right: 0px;
}
header .right ul li span {
    margin-right: 0px;
    display: block;
}
header .right {
    text-align: center;
}
p.mini {
    padding: 22px 0px;
    text-align: center;
}
h1{
	text-align: center;
	width: 100%;
}
h1 span{
	float: inherit;
	display: inline-block;
}

div.info ul li {
    width: 70%;
    margin: 1%;
}

img.prise{
	width: 100%;
	display: inline-block;
}

div.prise h1{
	text-align: center;
}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}