@charset "utf-8";

img, object, embed, video
	{
		max-width: 100%;
	}
/* IE 6 ne prend pas en charge max-width ; la largeur par défaut est donc fixée à 100% */
.ie6 img
	{
		width:100%;
	}

html
	{
	width: 100%;
	height: 100%;
	margin:0;
	padding:0;
	}

body
	{
	width: 100%;
	height: 100%;
	margin:0;
	padding:0;
	overflow-y: auto;
	overscroll-behavior: none;
	user-select: none;
	}

/* Paramètrage Smartphone */
@media screen and (max-device-width: 481px)
    {
        /* Liste de vos règles */
    }

/* Paramètrage Tablettes */
@media screen and (min-device-width: 480px) and (max-device-width: 961px)
    {
        /* Liste de vos règles */
    }

/* Paramètre Ordinateur */
@media screen and (min-device-width: 960px)
    {
        /* Liste de vos règles */
    }

@media (max-width: 768px) {
	.navbar-bottom {
		position: fixed;
		bottom: 0;
		width: 100%;
		background-color: #f8f9fa;
		border-top: 1px solid #dee2e6;
	}
}
