/****1)BALISES*****/

body{
    background-color: #f3f3f3;
}

/****2)HEADER*****/

header:nth-of-type(1){
    display: none;
}

header:nth-of-type(2){
	margin: 0 auto 0 auto;
    width: 980px;
    height: 264px;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 0.75em;
    color:#FFFFFF;
    text-align:right;
	position:relative;
}

/****4)NAV*****/

nav {
    text-align:right;
    width: 100%;
}

nav ul {
	display:flex; /* on définit le flex container */
	flex-direction: row; /* direction, row, column, column-reverse ... */
	list-style-type: none;
	justify-content: flex-start;
	padding:0;
	margin: 0;
}

nav ul:nth-of-type(1) {
    width: 100%;
    height: 35px;
}

nav ul:nth-of-type(1) li:first-child {
    flex: 1;
	text-align:left;
}

nav ul:nth-of-type(2) {
	width: 100%;
    height: 35px;
	margin: 184px 0 0 0;
}

nav ul:nth-of-type(3) {
    display:none;
}

nav li {
	/* border : thin solid red; */
	margin: 5px 5px 0 5px;
	padding: 0;
	box-sizing: border-box;
}
nav li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1.1rem;
    text-decoration: none;
	color: #FFFFFF;
	box-sizing: border-box;
	padding : 0 5px 0 5px;
}

/****3)MAIN*****/

main {
	width:980px;
	margin : 0 auto 0 auto;
	background-color:#FFF;
	overflow:auto;
}

/****5)SECTION 1*****/

main p:nth-of-type(1) {
	display:none;
}

main>section:first-of-type{
	width: 190px;
	float:left;
	padding-left:10px;
}
main>section:first-of-type article{
    margin: 0;
	padding: 0;
    box-sizing: border-box;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
	font-size: 1em;
}

/****6)SECTION 2*****/

main>section:last-of-type{
	width: 780px;
	float:left;
}
main>section:last-of-type article{
    margin: 0;
	padding: 0;
    box-sizing: border-box;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: auto;
	font-size: 1em
}

/****7)Footer*****/

footer{
	margin: 0 auto 0 auto;
	padding: 10px 0 10px 0; 
	width:980px;
	height: 175px;
    background-color: #122e39;
    clear: left;
}

footer div {
	float: left;
}

footer div:nth-of-type(1) {
    width: 290px;
	padding-right:10px;
	margin: 0;
}

footer div:nth-of-type(2) {
    width: 190px;
	padding-top:15px;
	margin: 0;
}

footer div:nth-of-type(3) {
    width: 190px;
	padding-right:10px;
	padding-left:30px;
	padding-top:15px;
	margin: 0;
	line-height:1.7;
}

footer div:nth-of-type(4) {
    width: 110px;
	padding-top:15px;
	padding-right:10px;
	margin: 0;
	line-height:1.2;
}

footer div:nth-of-type(5) {
    width: 120px;
	padding-top:15px;
	margin: 0;
	line-height:1.2;
}

footer ul {
	margin: 0;
	padding:0;
}

footer li{
	margin: 0;
	padding:0;
}

footer div:nth-of-type(4) li, footer div:nth-of-type(5) {
	line-height:3em;
}

/* ----------------------------------- */
/* ----------------------------------- */

/* RECHERCHE */

.search input{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#000000;
	padding:5px;
	border:2px solid #b9bbbc;
	border-right:0px;
	width:355px;
	float:left;
}

.search input[type=submit]{
	background:url(https://www.catsuka.com/videos/player/loupe.jpg) no-repeat;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	width:25px;
	padding:5px;
	cursor: pointer;
	border:2px solid #b9bbbc;
	border-left:0px;
	float:left;
}

/* ----------------------------------- */
/* ----------------------------------- */

/* LISTES PRODUITS */

.liste_produits_tab ul{
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.liste_produits_tab li {
  padding-left:4px;
  padding-right:4px;
  padding-top:10px;
  padding-bottom:10px;
  margin-right:4px;
  margin-bottom:4px;
  border: 0px;
  width: 248px;
  height: 262px;
  text-align: center;
  font-size: 12px;
  background-image: radial-gradient(circle at bottom right, white, #f5f5f5);
}

.liste_produits_tab_image {
}

.liste_produits_tab_infos {
  padding-top:6px;
}

.liste_produits_list ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.liste_produits_list li {
  background-image: radial-gradient(circle at bottom right, white, #f5f5f5);
  padding-left:6px;
  padding-right:6px;
  padding-top:10px;
  padding-bottom:10px;
  margin-bottom:4px;
  border-bottom: 1px solid #d8d8d8;
  text-align: left;
  font-size: 12px;
}

.liste_produits_list_image {
  float:left;
  text-align:center;
  width: 244px;
  height: 160px;
}

.liste_produits_list_infos {
  float:left;
  height: 160px;
  line-height: 160px;
}

.liste_produits_list_infos span {
  vertical-align:middle;
  display:inline-block;
  line-height:1.2;
}

.liste_produits_recherche ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.liste_produits_recherche li {
  padding:6px;
  border: 1px solid silver;
  text-align: left;
  font-size: 12px;
}

.liste_produits_recherche_image {
  float:left;
  text-align:center;
  width: 248px;
  height: 160px;
}

.liste_produits_recherche_infos {
  float:left;
  height: 160px;
  line-height: 160px;
}

.liste_produits_recherche_infos span {
  vertical-align:middle;
  display:inline-block;
  line-height:1.2;
  text-align: left;
}

/* alignement liens */
.liste_produits_recherche_infos div:first-of-type
{
  text-align: left;
}

.liste_produits_calendar ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.liste_produits_calendar li {
  padding:6px;
  text-align: left;
  font-size: 12px;
}

.liste_produits_calendar_image {
  float:left;
  text-align:center;
  width: 248px;
  height: 160px;
}

.liste_produits_calendar_infos {
  float:left;
  height: 160px;
  line-height: 160px;
}

.liste_produits_calendar_infos span {
  vertical-align:middle;
  display:inline-block;
  line-height:1.2;
  text-align: left;
}

/* alignement liens */
.liste_produits_calendar_infos div:first-of-type
{
  text-align: left;
}


.siema {
  padding:0;
  border: 0px;
  width: 100%;
  height: 255px;
  text-align: center;
  font-size: 12px;
}

.filters_titre {
  padding:5px;
  background-color:#e6e6e6;
  float:left;
}

.filters_choix {
  padding:5px;
  margin-right:5px;
  float:left;
}

.liste_rubriques_associees ul{
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color:#122e39;
}
.liste_rubriques_associees li {
  padding:5px;
  margin:4px;
  border: 0px;
  text-align: center;
  font-size: 12px;
  background-color:#e0e7e9;
}
.liste_rubriques_associees li a {
	font-size: 12px;
	color: #000000;
	font-weight: normal;
    text-decoration: none;
}
.liste_rubriques_associees li a:hover {
	font-size: 12px;
	color: #FF4F1E;
	font-weight: normal;
    text-decoration: none;
}

/* ----------------------------------- */
/* ----------------------------------- */

.produit_image {
  float:left;
  text-align:center;
  padding:0px;
  width: 280px;
}

.produit_image img {
  max-width: 250px;
}

.produit_infos {
  background-image: linear-gradient(to top, white, #f5f5f5);
  border-top: 1px solid #d8d8d8;
  float:left;
  padding:10px;
  width: 480px;
}

.produit_infos_plus {
  background-image: linear-gradient(to left, white, #f5f5f5);
  border-left: 1px solid #d8d8d8;
  padding:10px;
  max-width: 100%;
}

.amazon_conteneur_liens_long {

}

.amazon_conteneur_liens_long span {

}

.amazon_lien_primaire_long {
  float:left;
  line-height:2.5;
  margin-right:10px;
}

.amazon_lien_primaire_long a {
	font-size: 14px;
	background-color:#ffa500;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #ffa500;

}
.amazon_lien_primaire_long a:hover {
	font-size: 14px;
	background-color:#ffa500;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #000000;
}

.amazon_lien_secondaire_long {
  float:left;
  line-height:2.5;
  margin-right:10px;
}

.amazon_lien_secondaire_long a {
	font-size: 14px;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #ffa500;

}
.amazon_lien_secondaire_long a:hover {
	font-size: 14px;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #000000;
}

.amazon_conteneur_liens_court {
	text-align:center;
    margin-top:2px;
}

.amazon_conteneur_liens_court span {
	padding:3px;
	font-size: 13px;
	font-weight:normal;
}

.amazon_lien_primaire_court {
  display: inline-block;
  margin-top:7px;
  margin-right:3px;
}

.amazon_lien_primaire_court a {
	font-size: 13px;
	border: 1px solid #6b6b6b;
	padding:2px;
    text-decoration: none;
	font-weight: normal;
	color:#000000;
}
.amazon_lien_primaire_court a:hover {
	font-size: 13px;
	border: 1px solid #6b6b6b;
	background-color:#000000;
	padding:2px;
    text-decoration: none;
	font-weight:normal;
	color:#ffffff;
}

.amazon_lien_secondaire_court {

}
.amazon_lien_secondaire_court:hover {

}

.fnac_lien_primaire_long {
  float:left;
  line-height:2.5;
  margin-right:10px;
}

.fnac_lien_primaire_long a {
	font-size: 14px;
	background-color:#e6cc8f;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #b58616;

}
.fnac_lien_primaire_long a:hover {
	font-size: 14px;
	background-color:#e6cc8f;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #000000;
}

.cdjapan_lien_primaire_long {
  float:left;
  line-height:2.5;
  margin-right:10px;
}

.cdjapan_lien_primaire_long a {
	font-size: 14px;
	background-color:#bbceff;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #a3b6ff;

}
.cdjapan_lien_primaire_long a:hover {
	font-size: 14px;
	background-color:#bbceff;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #000000;
}

.playasia_lien_primaire_long {
  float:left;
  line-height:2.5;
  margin-right:10px;
}

.playasia_lien_primaire_long a {
	font-size: 14px;
	background-color:#bbfeff;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #7dd3d4;

}
.playasia_lien_primaire_long a:hover {
	font-size: 14px;
	background-color:#bbfeff;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #000000;
}

.crunchyroll_lien_primaire_long {
  float:left;
  line-height:2.5;
  margin-right:10px;
}

.crunchyroll_lien_primaire_long a {
	font-size: 14px;
	background-color:#fad5d5;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #ec9e9e;

}
.crunchyroll_lien_primaire_long a:hover {
	font-size: 14px;
	background-color:#fad5d5;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #000000;
}

.blackscreen_lien_primaire_long {
  float:left;
  line-height:2.5;
  margin-right:10px;
}

.blackscreen_lien_primaire_long a {
	font-size: 14px;
	background-color:#cfcfcf;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #000000;

}
.blackscreen_lien_primaire_long a:hover {
	font-size: 14px;
	background-color:#cfcfcf;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #000000;
}

.specialstore_lien_primaire_long {
  float:left;
  line-height:2.5;
  margin-right:10px;
}

.specialstore_lien_primaire_long a {
	font-size: 14px;
	background-color:#cae7b2;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #57ac13;

}
.specialstore_lien_primaire_long a:hover {
	font-size: 14px;
	background-color:#cae7b2;
	color: #000000;
    text-decoration: underline;
	padding:5px;
	border: 1px solid #57ac13;
}

.indies {
  border-bottom: 1px solid #d8d8d8;
  padding-top:10px;
  margin-bottom:10px;
}

.indies_icon {
  float:left;
  text-align:center;
  width: 220px;
  height: 100px;
}

.indies_infos {
  float:left;
  height: 100px;
  width: 560px;
  /* line-height: 76px; */
}

.themes_xmas ul {
  justify-content:space-between;display:flex;flex-direction:row;list-style-type:none;margin:0;padding:0;
}