Difference between revisions of "MediaWiki:Common.css"

From Game Detectives Wiki
Jump to: navigation, search
Line 3,007: Line 3,007:
 
   -moz-animation-duration: 200s;
 
   -moz-animation-duration: 200s;
 
   -o-animation-duration: 200s;
 
   -o-animation-duration: 200s;
   animation-delay: 5s;
+
   animation-delay: 3s;
 
   background-color: #ffcccc;
 
   background-color: #ffcccc;
 
}
 
}

Revision as of 15:52, 28 August 2018

/* CSS placed here will be applied to all skins */

body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; }

/* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
th.mbox-text, td.mbox-text {   /* The message body cell(s) */
  border: none;
  /* @noflip */
  padding: 0.25em 0.9em;     /* 0.9em left/right */
  width: 100%;               /* Make all mboxes the same width regardless of text length */
}
td.mbox-image {                /* The left image cell */
  border: none;
  /* @noflip */
  padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */
  text-align: center;
}
td.mbox-imageright {           /* The right image cell */
  border: none;
  /* @noflip */
  padding: 2px 0.9em 2px 0;  /* 0px left, 0.9em right */
  text-align: center;
}
td.mbox-empty-cell {           /* An empty narrow cell */
  border: none;
  padding: 0;
  width: 1px;
}

/* Article message box styles */
table.ambox {
  margin: 0 10%;                  /* 10% = Will not overlap with other elements */
  border: 1px solid #a2a9b1;
  /* @noflip */
  border-left: 10px solid #36c;  /* Default "notice" blue */
  background: #fbfbfb;
}
table.ambox + table.ambox {      /* Single border between stacked boxes. */
  margin-top: -1px;
}
.ambox th.mbox-text,
.ambox td.mbox-text {            /* The message body cell(s) */
  padding: 0.25em 0.5em;       /* 0.5em left/right */
}
.ambox td.mbox-image {           /* The left image cell */
  /* @noflip */
  padding: 2px 0 2px 0.5em;    /* 0.5em left, 0px right */
}
.ambox td.mbox-imageright {      /* The right image cell */
  /* @noflip */
  padding: 2px 0.5em 2px 0;    /* 0px left, 0.5em right */
}

table.ambox-notice {
  /* @noflip */
  border-left: 10px solid #36c;    /* Blue */
}
table.ambox-speedy {
  /* @noflip */
  border-left: 10px solid #b32424;    /* Red */
  background: #fee7e6;                   /* Pink */
}
table.ambox-delete {
  /* @noflip */
  border-left: 10px solid #b32424;    /* Red */
}
table.ambox-content {
  /* @noflip */
  border-left: 10px solid #f28500;    /* Orange */
}
table.ambox-style {
  /* @noflip */
  border-left: 10px solid #fc3;    /* Yellow */
}
table.ambox-move {
  /* @noflip */
  border-left: 10px solid #9932cc;    /* Purple */
}
table.ambox-protection {
  /* @noflip */
  border-left: 10px solid #a2a9b1;       /* Gray-gold */
}
/* These mbox-small classes must be placed after all other
   ambox/tmbox/ombox etc classes. "html body.mediawiki" is so
   they override "table.ambox + table.ambox" above. */
html body.mediawiki .mbox-small {   /* For the "small=yes" option. */
  /* @noflip */
  clear: right;
  /* @noflip */
  float: right;
  /* @noflip */
  margin: 4px 0 4px 1em;
  box-sizing: border-box;
  width: 238px;
  font-size: 88%;
  line-height: 1.25em;
}
html body.mediawiki .mbox-small-left {   /* For the "small=left" option. */
  /* @noflip */
  margin: 4px 1em 4px 0;
  box-sizing: border-box;
  overflow: hidden;
  width: 238px;
  border-collapse: collapse;
  font-size: 88%;
  line-height: 1.25em;
}

/* Style for compact ambox */
/* Hide the images */
.compact-ambox table .mbox-image,
.compact-ambox table .mbox-imageright,
.compact-ambox table .mbox-empty-cell {
  display: none;
}
/* Remove borders, backgrounds, padding, etc. */
.compact-ambox table.ambox {
  border: none;
  border-collapse: collapse;
  background: transparent;
  margin: 0 0 0 1.6em !important;
  padding: 0 !important;
  width: auto;
  display: block;
}
body.mediawiki .compact-ambox table.mbox-small-left {
  font-size: 100%;
  width: auto;
  margin: 0;
}
/* Style the text cell as a list item and remove its padding */
.compact-ambox table .mbox-text {
  padding: 0 !important;
  margin: 0 !important;
}
.compact-ambox table .mbox-text-span {
  display: list-item;
  line-height: 1.5em;
  list-style-type: square;
  list-style-image: url(/w/skins/MonoBook/bullet.gif);
}
.skin-vector .compact-ambox table .mbox-text-span {
  list-style-type: disc;
  list-style-image: url(/w/skins/Vector/images/bullet-icon.svg);
  list-style-image: url(/w/skins/Vector/images/bullet-icon.png)\9;
}
/* Allow for hiding text in compact form */
.compact-ambox .hide-when-compact {
  display: none;
}

/* Other pages message box styles */
table.ombox {
  margin: 4px 10%;
  border-collapse: collapse;
  border: 1px solid #a2a9b1;       /* Default "notice" gray */
  background: #f8f9fa;
  box-sizing: border-box;
}

table.ombox-notice {
  border: 1px solid #a2a9b1;       /* Gray */
}
table.ombox-speedy {
  border: 2px solid #b32424;    /* Red */
  background: #fee7e6;             /* Pink */
}
table.ombox-delete {
  border: 2px solid #b32424;    /* Red */
}
table.ombox-content {
  border: 1px solid #f28500;    /* Orange */
}
table.ombox-style {
  border: 1px solid #fc3;    /* Yellow */
}
table.ombox-move {
  border: 1px solid #9932cc;    /* Purple */
}
table.ombox-protection {
  border: 2px solid #a2a9b1;       /* Gray-gold */
}

/* SMW table styles */
.smwtable .row-even {
  background-color: #fff;
}
.smwtable .row-odd {
  background-color: #e6e6e6;
}
.smwtable .smwtype_txt{
  text-align: center;
}
.smwtable .smwtype_dat{
  text-align: center;
}

@keyframes flashOdd {
  25% {background-color: #ffcccc;}
  50% {background-color: #eee;}
  75% {background-color: #ffcccc;}
  100% {background-color: #eee;}
}
@keyframes flashEven {
  25% {background-color: #ffcccc;}
  50% {background-color: #fff;}
  75% {background-color: #ffcccc;}
  100% {background-color: #fff;}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 0.3;}
}

@keyframes PulseOdd {
  0% {background-color: #ffcccc;}
  25% {background-color: #eee;}
  50% {background-color: #ffcccc;}
  75% {background-color: #fff;}
  100% {background-color: #ffcccc;}
}

@keyframes PulseEven {
  0% {background-color: #ffcccc;}
  25% {background-color: #fff;}
  50% {background-color: #ffcccc;}
  75% {background-color: #fff;}
  100% {background-color: #ffcccc;}
}

@keyframes PulseCP {
0.050000% {background-color: #eee;}
0.050001% {background-color: #ffcccc;}
0.200001% {background-color: #ffcccc;}
0.200002% {background-color: #eee;}
0.250002% {background-color: #eee;}
0.250003% {background-color: #ffcccc;}
0.300003% {background-color: #ffcccc;}
0.300004% {background-color: #eee;}
0.350004% {background-color: #eee;}
0.350005% {background-color: #ffcccc;}
0.400005% {background-color: #ffcccc;}
0.400006% {background-color: #eee;}
0.450006% {background-color: #eee;}
0.450007% {background-color: #ffcccc;}
0.500007% {background-color: #ffcccc;}
0.500008% {background-color: #eee;}
0.650008% {background-color: #eee;}
0.700008% {background-color: #eee;}
0.700009% {background-color: #ffcccc;}
0.750009% {background-color: #ffcccc;}
0.750010% {background-color: #eee;}
0.900010% {background-color: #eee;}
0.950010% {background-color: #eee;}
0.950011% {background-color: #ffcccc;}
1.000011% {background-color: #ffcccc;}
1.000012% {background-color: #eee;}
1.150012% {background-color: #eee;}
1.200012% {background-color: #eee;}
1.200013% {background-color: #ffcccc;}
1.250013% {background-color: #ffcccc;}
1.250014% {background-color: #eee;}
1.300014% {background-color: #eee;}
1.300015% {background-color: #ffcccc;}
1.450015% {background-color: #ffcccc;}
1.450016% {background-color: #eee;}
1.500016% {background-color: #eee;}
1.500017% {background-color: #ffcccc;}
1.650017% {background-color: #ffcccc;}
1.650018% {background-color: #eee;}
1.700018% {background-color: #eee;}
1.700019% {background-color: #ffcccc;}
1.750019% {background-color: #ffcccc;}
1.750020% {background-color: #eee;}
2.100020% {background-color: #eee;}
2.150020% {background-color: #eee;}
2.150021% {background-color: #ffcccc;}
2.200021% {background-color: #ffcccc;}
2.200022% {background-color: #eee;}
2.250022% {background-color: #eee;}
2.250023% {background-color: #ffcccc;}
2.300023% {background-color: #ffcccc;}
2.300024% {background-color: #eee;}
2.350024% {background-color: #eee;}
2.350025% {background-color: #ffcccc;}
2.400025% {background-color: #ffcccc;}
2.400026% {background-color: #eee;}
2.550026% {background-color: #eee;}
2.600026% {background-color: #eee;}
2.600027% {background-color: #ffcccc;}
2.650027% {background-color: #ffcccc;}
2.650028% {background-color: #eee;}
2.800028% {background-color: #eee;}
2.850028% {background-color: #eee;}
2.850029% {background-color: #ffcccc;}
2.900029% {background-color: #ffcccc;}
2.900030% {background-color: #eee;}
3.050030% {background-color: #eee;}
3.100030% {background-color: #eee;}
3.100031% {background-color: #ffcccc;}
3.150031% {background-color: #ffcccc;}
3.150032% {background-color: #eee;}
3.200032% {background-color: #eee;}
3.200033% {background-color: #ffcccc;}
3.350033% {background-color: #ffcccc;}
3.350034% {background-color: #eee;}
3.400034% {background-color: #eee;}
3.400035% {background-color: #ffcccc;}
3.550035% {background-color: #ffcccc;}
3.550036% {background-color: #eee;}
3.600036% {background-color: #eee;}
3.600037% {background-color: #ffcccc;}
3.650037% {background-color: #ffcccc;}
3.650038% {background-color: #eee;}
4.000038% {background-color: #eee;}
4.050038% {background-color: #eee;}
4.050039% {background-color: #ffcccc;}
4.100039% {background-color: #ffcccc;}
4.100040% {background-color: #eee;}
4.150040% {background-color: #eee;}
4.150041% {background-color: #ffcccc;}
4.200041% {background-color: #ffcccc;}
4.200042% {background-color: #eee;}
4.250042% {background-color: #eee;}
4.250043% {background-color: #ffcccc;}
4.300043% {background-color: #ffcccc;}
4.300044% {background-color: #eee;}
4.450044% {background-color: #eee;}
4.500044% {background-color: #eee;}
4.500045% {background-color: #ffcccc;}
4.550045% {background-color: #ffcccc;}
4.550046% {background-color: #eee;}
4.700046% {background-color: #eee;}
4.750046% {background-color: #eee;}
4.750047% {background-color: #ffcccc;}
4.800047% {background-color: #ffcccc;}
4.800048% {background-color: #eee;}
4.950048% {background-color: #eee;}
5.000048% {background-color: #eee;}
5.000049% {background-color: #ffcccc;}
5.050049% {background-color: #ffcccc;}
5.050050% {background-color: #eee;}
5.100050% {background-color: #eee;}
5.100051% {background-color: #ffcccc;}
5.250051% {background-color: #ffcccc;}
5.250052% {background-color: #eee;}
5.300052% {background-color: #eee;}
5.300053% {background-color: #ffcccc;}
5.450053% {background-color: #ffcccc;}
5.450054% {background-color: #eee;}
5.500054% {background-color: #eee;}
5.500055% {background-color: #ffcccc;}
5.550055% {background-color: #ffcccc;}
5.550056% {background-color: #eee;}
5.900056% {background-color: #eee;}
5.950056% {background-color: #eee;}
5.950057% {background-color: #ffcccc;}
6.000057% {background-color: #ffcccc;}
6.000058% {background-color: #eee;}
6.050058% {background-color: #eee;}
6.050059% {background-color: #ffcccc;}
6.100059% {background-color: #ffcccc;}
6.100060% {background-color: #eee;}
6.150060% {background-color: #eee;}
6.150061% {background-color: #ffcccc;}
6.200061% {background-color: #ffcccc;}
6.200062% {background-color: #eee;}
6.350062% {background-color: #eee;}
6.400062% {background-color: #eee;}
6.400063% {background-color: #ffcccc;}
6.450063% {background-color: #ffcccc;}
6.450064% {background-color: #eee;}
6.600064% {background-color: #eee;}
6.650064% {background-color: #eee;}
6.650065% {background-color: #ffcccc;}
6.700065% {background-color: #ffcccc;}
6.700066% {background-color: #eee;}
6.850066% {background-color: #eee;}
6.900066% {background-color: #eee;}
6.900067% {background-color: #ffcccc;}
6.950067% {background-color: #ffcccc;}
6.950068% {background-color: #eee;}
7.000068% {background-color: #eee;}
7.000069% {background-color: #ffcccc;}
7.150069% {background-color: #ffcccc;}
7.150070% {background-color: #eee;}
7.200070% {background-color: #eee;}
7.200071% {background-color: #ffcccc;}
7.350071% {background-color: #ffcccc;}
7.350072% {background-color: #eee;}
7.400072% {background-color: #eee;}
7.400073% {background-color: #ffcccc;}
7.450073% {background-color: #ffcccc;}
7.450074% {background-color: #eee;}
7.800074% {background-color: #eee;}
7.850074% {background-color: #eee;}
7.850075% {background-color: #ffcccc;}
7.900075% {background-color: #ffcccc;}
7.900076% {background-color: #eee;}
7.950076% {background-color: #eee;}
7.950077% {background-color: #ffcccc;}
8.000077% {background-color: #ffcccc;}
8.000078% {background-color: #eee;}
8.050078% {background-color: #eee;}
8.050079% {background-color: #ffcccc;}
8.100079% {background-color: #ffcccc;}
8.100080% {background-color: #eee;}
8.250080% {background-color: #eee;}
8.300080% {background-color: #eee;}
8.300081% {background-color: #ffcccc;}
8.350081% {background-color: #ffcccc;}
8.350082% {background-color: #eee;}
8.500082% {background-color: #eee;}
8.550082% {background-color: #eee;}
8.550083% {background-color: #ffcccc;}
8.600083% {background-color: #ffcccc;}
8.600084% {background-color: #eee;}
8.750084% {background-color: #eee;}
8.800084% {background-color: #eee;}
8.800085% {background-color: #ffcccc;}
8.850085% {background-color: #ffcccc;}
8.850086% {background-color: #eee;}
8.900086% {background-color: #eee;}
8.900087% {background-color: #ffcccc;}
9.050087% {background-color: #ffcccc;}
9.050088% {background-color: #eee;}
9.100088% {background-color: #eee;}
9.100089% {background-color: #ffcccc;}
9.250089% {background-color: #ffcccc;}
9.250090% {background-color: #eee;}
9.300090% {background-color: #eee;}
9.300091% {background-color: #ffcccc;}
9.350091% {background-color: #ffcccc;}
9.350092% {background-color: #eee;}
9.700092% {background-color: #eee;}
9.750092% {background-color: #eee;}
9.750093% {background-color: #ffcccc;}
9.800093% {background-color: #ffcccc;}
9.800094% {background-color: #eee;}
9.850094% {background-color: #eee;}
9.850095% {background-color: #ffcccc;}
9.900095% {background-color: #ffcccc;}
9.900096% {background-color: #eee;}
9.950096% {background-color: #eee;}
9.950097% {background-color: #ffcccc;}
10.000097% {background-color: #ffcccc;}
10.000098% {background-color: #eee;}
10.150098% {background-color: #eee;}
10.200098% {background-color: #eee;}
10.200099% {background-color: #ffcccc;}
10.250099% {background-color: #ffcccc;}
10.250100% {background-color: #eee;}
10.400100% {background-color: #eee;}
10.450100% {background-color: #eee;}
10.450101% {background-color: #ffcccc;}
10.500101% {background-color: #ffcccc;}
10.500102% {background-color: #eee;}
10.650102% {background-color: #eee;}
10.700102% {background-color: #eee;}
10.700103% {background-color: #ffcccc;}
10.750103% {background-color: #ffcccc;}
10.750104% {background-color: #eee;}
10.800104% {background-color: #eee;}
10.800105% {background-color: #ffcccc;}
10.950105% {background-color: #ffcccc;}
10.950106% {background-color: #eee;}
11.000106% {background-color: #eee;}
11.000107% {background-color: #ffcccc;}
11.150107% {background-color: #ffcccc;}
11.150108% {background-color: #eee;}
11.200108% {background-color: #eee;}
11.200109% {background-color: #ffcccc;}
11.250109% {background-color: #ffcccc;}
11.250110% {background-color: #eee;}
11.600110% {background-color: #eee;}
11.650110% {background-color: #eee;}
11.650111% {background-color: #ffcccc;}
11.700111% {background-color: #ffcccc;}
11.700112% {background-color: #eee;}
11.750112% {background-color: #eee;}
11.750113% {background-color: #ffcccc;}
11.800113% {background-color: #ffcccc;}
11.800114% {background-color: #eee;}
11.850114% {background-color: #eee;}
11.850115% {background-color: #ffcccc;}
11.900115% {background-color: #ffcccc;}
11.900116% {background-color: #eee;}
12.050116% {background-color: #eee;}
12.100116% {background-color: #eee;}
12.100117% {background-color: #ffcccc;}
12.150117% {background-color: #ffcccc;}
12.150118% {background-color: #eee;}
12.300118% {background-color: #eee;}
12.350118% {background-color: #eee;}
12.350119% {background-color: #ffcccc;}
12.400119% {background-color: #ffcccc;}
12.400120% {background-color: #eee;}
12.550120% {background-color: #eee;}
12.600120% {background-color: #eee;}
12.600121% {background-color: #ffcccc;}
12.650121% {background-color: #ffcccc;}
12.650122% {background-color: #eee;}
12.700122% {background-color: #eee;}
12.700123% {background-color: #ffcccc;}
12.850123% {background-color: #ffcccc;}
12.850124% {background-color: #eee;}
12.900124% {background-color: #eee;}
12.900125% {background-color: #ffcccc;}
13.050125% {background-color: #ffcccc;}
13.050126% {background-color: #eee;}
13.100126% {background-color: #eee;}
13.100127% {background-color: #ffcccc;}
13.150127% {background-color: #ffcccc;}
13.150128% {background-color: #eee;}
13.500128% {background-color: #eee;}
13.550128% {background-color: #eee;}
13.550129% {background-color: #ffcccc;}
13.600129% {background-color: #ffcccc;}
13.600130% {background-color: #eee;}
13.650130% {background-color: #eee;}
13.650131% {background-color: #ffcccc;}
13.700131% {background-color: #ffcccc;}
13.700132% {background-color: #eee;}
13.750132% {background-color: #eee;}
13.750133% {background-color: #ffcccc;}
13.800133% {background-color: #ffcccc;}
13.800134% {background-color: #eee;}
13.950134% {background-color: #eee;}
14.000134% {background-color: #eee;}
14.000135% {background-color: #ffcccc;}
14.050135% {background-color: #ffcccc;}
14.050136% {background-color: #eee;}
14.200136% {background-color: #eee;}
14.250136% {background-color: #eee;}
14.250137% {background-color: #ffcccc;}
14.300137% {background-color: #ffcccc;}
14.300138% {background-color: #eee;}
14.450138% {background-color: #eee;}
14.500138% {background-color: #eee;}
14.500139% {background-color: #ffcccc;}
14.550139% {background-color: #ffcccc;}
14.550140% {background-color: #eee;}
14.600140% {background-color: #eee;}
14.600141% {background-color: #ffcccc;}
14.750141% {background-color: #ffcccc;}
14.750142% {background-color: #eee;}
14.800142% {background-color: #eee;}
14.800143% {background-color: #ffcccc;}
14.950143% {background-color: #ffcccc;}
14.950144% {background-color: #eee;}
15.000144% {background-color: #eee;}
15.000145% {background-color: #ffcccc;}
15.050145% {background-color: #ffcccc;}
15.050146% {background-color: #eee;}
15.400146% {background-color: #eee;}
15.450146% {background-color: #eee;}
15.450147% {background-color: #ffcccc;}
15.500147% {background-color: #ffcccc;}
15.500148% {background-color: #eee;}
15.550148% {background-color: #eee;}
15.550149% {background-color: #ffcccc;}
15.600149% {background-color: #ffcccc;}
15.600150% {background-color: #eee;}
15.650150% {background-color: #eee;}
15.650151% {background-color: #ffcccc;}
15.700151% {background-color: #ffcccc;}
15.700152% {background-color: #eee;}
15.850152% {background-color: #eee;}
15.900152% {background-color: #eee;}
15.900153% {background-color: #ffcccc;}
15.950153% {background-color: #ffcccc;}
15.950154% {background-color: #eee;}
16.100154% {background-color: #eee;}
16.150154% {background-color: #eee;}
16.150155% {background-color: #ffcccc;}
16.200155% {background-color: #ffcccc;}
16.200156% {background-color: #eee;}
16.350156% {background-color: #eee;}
16.400156% {background-color: #eee;}
16.400157% {background-color: #ffcccc;}
16.450157% {background-color: #ffcccc;}
16.450158% {background-color: #eee;}
16.500158% {background-color: #eee;}
16.500159% {background-color: #ffcccc;}
16.650159% {background-color: #ffcccc;}
16.650160% {background-color: #eee;}
16.700160% {background-color: #eee;}
16.700161% {background-color: #ffcccc;}
16.850161% {background-color: #ffcccc;}
16.850162% {background-color: #eee;}
16.900162% {background-color: #eee;}
16.900163% {background-color: #ffcccc;}
16.950163% {background-color: #ffcccc;}
16.950164% {background-color: #eee;}
17.300164% {background-color: #eee;}
17.350164% {background-color: #eee;}
17.350165% {background-color: #ffcccc;}
17.400165% {background-color: #ffcccc;}
17.400166% {background-color: #eee;}
17.450166% {background-color: #eee;}
17.450167% {background-color: #ffcccc;}
17.500167% {background-color: #ffcccc;}
17.500168% {background-color: #eee;}
17.550168% {background-color: #eee;}
17.550169% {background-color: #ffcccc;}
17.600169% {background-color: #ffcccc;}
17.600170% {background-color: #eee;}
17.750170% {background-color: #eee;}
17.800170% {background-color: #eee;}
17.800171% {background-color: #ffcccc;}
17.850171% {background-color: #ffcccc;}
17.850172% {background-color: #eee;}
18.000172% {background-color: #eee;}
18.050172% {background-color: #eee;}
18.050173% {background-color: #ffcccc;}
18.100173% {background-color: #ffcccc;}
18.100174% {background-color: #eee;}
18.250174% {background-color: #eee;}
18.300174% {background-color: #eee;}
18.300175% {background-color: #ffcccc;}
18.350175% {background-color: #ffcccc;}
18.350176% {background-color: #eee;}
18.400176% {background-color: #eee;}
18.400177% {background-color: #ffcccc;}
18.550177% {background-color: #ffcccc;}
18.550178% {background-color: #eee;}
18.600178% {background-color: #eee;}
18.600179% {background-color: #ffcccc;}
18.750179% {background-color: #ffcccc;}
18.750180% {background-color: #eee;}
18.800180% {background-color: #eee;}
18.800181% {background-color: #ffcccc;}
18.850181% {background-color: #ffcccc;}
18.850182% {background-color: #eee;}
19.200182% {background-color: #eee;}
19.250182% {background-color: #eee;}
19.250183% {background-color: #ffcccc;}
19.300183% {background-color: #ffcccc;}
19.300184% {background-color: #eee;}
19.350184% {background-color: #eee;}
19.350185% {background-color: #ffcccc;}
19.400185% {background-color: #ffcccc;}
19.400186% {background-color: #eee;}
19.450186% {background-color: #eee;}
19.450187% {background-color: #ffcccc;}
19.500187% {background-color: #ffcccc;}
19.500188% {background-color: #eee;}
19.650188% {background-color: #eee;}
19.700188% {background-color: #eee;}
19.700189% {background-color: #ffcccc;}
19.750189% {background-color: #ffcccc;}
19.750190% {background-color: #eee;}
19.900190% {background-color: #eee;}
19.950190% {background-color: #eee;}
19.950191% {background-color: #ffcccc;}
20.000191% {background-color: #ffcccc;}
20.000192% {background-color: #eee;}
20.150192% {background-color: #eee;}
20.200192% {background-color: #eee;}
20.200193% {background-color: #ffcccc;}
20.250193% {background-color: #ffcccc;}
20.250194% {background-color: #eee;}
20.300194% {background-color: #eee;}
20.300195% {background-color: #ffcccc;}
20.450195% {background-color: #ffcccc;}
20.450196% {background-color: #eee;}
20.500196% {background-color: #eee;}
20.500197% {background-color: #ffcccc;}
20.650197% {background-color: #ffcccc;}
20.650198% {background-color: #eee;}
20.700198% {background-color: #eee;}
20.700199% {background-color: #ffcccc;}
20.750199% {background-color: #ffcccc;}
20.750200% {background-color: #eee;}
21.100200% {background-color: #eee;}
21.150200% {background-color: #eee;}
21.150201% {background-color: #ffcccc;}
21.200201% {background-color: #ffcccc;}
21.200202% {background-color: #eee;}
21.250202% {background-color: #eee;}
21.250203% {background-color: #ffcccc;}
21.300203% {background-color: #ffcccc;}
21.300204% {background-color: #eee;}
21.350204% {background-color: #eee;}
21.350205% {background-color: #ffcccc;}
21.400205% {background-color: #ffcccc;}
21.400206% {background-color: #eee;}
21.550206% {background-color: #eee;}
21.600206% {background-color: #eee;}
21.600207% {background-color: #ffcccc;}
21.650207% {background-color: #ffcccc;}
21.650208% {background-color: #eee;}
21.800208% {background-color: #eee;}
21.850208% {background-color: #eee;}
21.850209% {background-color: #ffcccc;}
21.900209% {background-color: #ffcccc;}
21.900210% {background-color: #eee;}
22.050210% {background-color: #eee;}
22.100210% {background-color: #eee;}
22.100211% {background-color: #ffcccc;}
22.150211% {background-color: #ffcccc;}
22.150212% {background-color: #eee;}
22.200212% {background-color: #eee;}
22.200213% {background-color: #ffcccc;}
22.350213% {background-color: #ffcccc;}
22.350214% {background-color: #eee;}
22.400214% {background-color: #eee;}
22.400215% {background-color: #ffcccc;}
22.550215% {background-color: #ffcccc;}
22.550216% {background-color: #eee;}
22.600216% {background-color: #eee;}
22.600217% {background-color: #ffcccc;}
22.650217% {background-color: #ffcccc;}
22.650218% {background-color: #eee;}
23.000218% {background-color: #eee;}
23.050218% {background-color: #eee;}
23.050219% {background-color: #ffcccc;}
23.100219% {background-color: #ffcccc;}
23.100220% {background-color: #eee;}
23.150220% {background-color: #eee;}
23.150221% {background-color: #ffcccc;}
23.200221% {background-color: #ffcccc;}
23.200222% {background-color: #eee;}
23.250222% {background-color: #eee;}
23.250223% {background-color: #ffcccc;}
23.300223% {background-color: #ffcccc;}
23.300224% {background-color: #eee;}
23.450224% {background-color: #eee;}
23.500224% {background-color: #eee;}
23.500225% {background-color: #ffcccc;}
23.550225% {background-color: #ffcccc;}
23.550226% {background-color: #eee;}
23.700226% {background-color: #eee;}
23.750226% {background-color: #eee;}
23.750227% {background-color: #ffcccc;}
23.800227% {background-color: #ffcccc;}
23.800228% {background-color: #eee;}
23.950228% {background-color: #eee;}
24.000228% {background-color: #eee;}
24.000229% {background-color: #ffcccc;}
24.050229% {background-color: #ffcccc;}
24.050230% {background-color: #eee;}
24.100230% {background-color: #eee;}
24.100231% {background-color: #ffcccc;}
24.250231% {background-color: #ffcccc;}
24.250232% {background-color: #eee;}
24.300232% {background-color: #eee;}
24.300233% {background-color: #ffcccc;}
24.450233% {background-color: #ffcccc;}
24.450234% {background-color: #eee;}
24.500234% {background-color: #eee;}
24.500235% {background-color: #ffcccc;}
24.550235% {background-color: #ffcccc;}
24.550236% {background-color: #eee;}
24.900236% {background-color: #eee;}
24.950236% {background-color: #eee;}
24.950237% {background-color: #ffcccc;}
25.000237% {background-color: #ffcccc;}
25.000238% {background-color: #eee;}
25.050238% {background-color: #eee;}
25.050239% {background-color: #ffcccc;}
25.100239% {background-color: #ffcccc;}
25.100240% {background-color: #eee;}
25.150240% {background-color: #eee;}
25.150241% {background-color: #ffcccc;}
25.200241% {background-color: #ffcccc;}
25.200242% {background-color: #eee;}
25.350242% {background-color: #eee;}
25.400242% {background-color: #eee;}
25.400243% {background-color: #ffcccc;}
25.450243% {background-color: #ffcccc;}
25.450244% {background-color: #eee;}
25.600244% {background-color: #eee;}
25.650244% {background-color: #eee;}
25.650245% {background-color: #ffcccc;}
25.700245% {background-color: #ffcccc;}
25.700246% {background-color: #eee;}
25.850246% {background-color: #eee;}
25.900246% {background-color: #eee;}
25.900247% {background-color: #ffcccc;}
25.950247% {background-color: #ffcccc;}
25.950248% {background-color: #eee;}
26.000248% {background-color: #eee;}
26.000249% {background-color: #ffcccc;}
26.150249% {background-color: #ffcccc;}
26.150250% {background-color: #eee;}
26.200250% {background-color: #eee;}
26.200251% {background-color: #ffcccc;}
26.350251% {background-color: #ffcccc;}
26.350252% {background-color: #eee;}
26.400252% {background-color: #eee;}
26.400253% {background-color: #ffcccc;}
26.450253% {background-color: #ffcccc;}
26.450254% {background-color: #eee;}
26.800254% {background-color: #eee;}
26.850254% {background-color: #eee;}
26.850255% {background-color: #ffcccc;}
26.900255% {background-color: #ffcccc;}
26.900256% {background-color: #eee;}
26.950256% {background-color: #eee;}
26.950257% {background-color: #ffcccc;}
27.000257% {background-color: #ffcccc;}
27.000258% {background-color: #eee;}
27.050258% {background-color: #eee;}
27.050259% {background-color: #ffcccc;}
27.100259% {background-color: #ffcccc;}
27.100260% {background-color: #eee;}
27.250260% {background-color: #eee;}
27.300260% {background-color: #eee;}
27.300261% {background-color: #ffcccc;}
27.350261% {background-color: #ffcccc;}
27.350262% {background-color: #eee;}
27.500262% {background-color: #eee;}
27.550262% {background-color: #eee;}
27.550263% {background-color: #ffcccc;}
27.600263% {background-color: #ffcccc;}
27.600264% {background-color: #eee;}
27.750264% {background-color: #eee;}
27.800264% {background-color: #eee;}
27.800265% {background-color: #ffcccc;}
27.850265% {background-color: #ffcccc;}
27.850266% {background-color: #eee;}
27.900266% {background-color: #eee;}
27.900267% {background-color: #ffcccc;}
28.050267% {background-color: #ffcccc;}
28.050268% {background-color: #eee;}
28.100268% {background-color: #eee;}
28.100269% {background-color: #ffcccc;}
28.250269% {background-color: #ffcccc;}
28.250270% {background-color: #eee;}
28.300270% {background-color: #eee;}
28.300271% {background-color: #ffcccc;}
28.350271% {background-color: #ffcccc;}
28.350272% {background-color: #eee;}
28.700272% {background-color: #eee;}
28.750272% {background-color: #eee;}
28.750273% {background-color: #ffcccc;}
28.800273% {background-color: #ffcccc;}
28.800274% {background-color: #eee;}
28.850274% {background-color: #eee;}
28.850275% {background-color: #ffcccc;}
28.900275% {background-color: #ffcccc;}
28.900276% {background-color: #eee;}
28.950276% {background-color: #eee;}
28.950277% {background-color: #ffcccc;}
29.000277% {background-color: #ffcccc;}
29.000278% {background-color: #eee;}
29.150278% {background-color: #eee;}
29.200278% {background-color: #eee;}
29.200279% {background-color: #ffcccc;}
29.250279% {background-color: #ffcccc;}
29.250280% {background-color: #eee;}
29.400280% {background-color: #eee;}
29.450280% {background-color: #eee;}
29.450281% {background-color: #ffcccc;}
29.500281% {background-color: #ffcccc;}
29.500282% {background-color: #eee;}
29.650282% {background-color: #eee;}
29.700282% {background-color: #eee;}
29.700283% {background-color: #ffcccc;}
29.750283% {background-color: #ffcccc;}
29.750284% {background-color: #eee;}
29.800284% {background-color: #eee;}
29.800285% {background-color: #ffcccc;}
29.950285% {background-color: #ffcccc;}
29.950286% {background-color: #eee;}
30.000286% {background-color: #eee;}
30.000287% {background-color: #ffcccc;}
30.150287% {background-color: #ffcccc;}
30.150288% {background-color: #eee;}
30.200288% {background-color: #eee;}
30.200289% {background-color: #ffcccc;}
30.250289% {background-color: #ffcccc;}
30.250290% {background-color: #eee;}
30.600290% {background-color: #eee;}
30.650290% {background-color: #eee;}
30.650291% {background-color: #ffcccc;}
30.700291% {background-color: #ffcccc;}
30.700292% {background-color: #eee;}
30.750292% {background-color: #eee;}
30.750293% {background-color: #ffcccc;}
30.800293% {background-color: #ffcccc;}
30.800294% {background-color: #eee;}
30.850294% {background-color: #eee;}
30.850295% {background-color: #ffcccc;}
30.900295% {background-color: #ffcccc;}
30.900296% {background-color: #eee;}
31.050296% {background-color: #eee;}
31.100296% {background-color: #eee;}
31.100297% {background-color: #ffcccc;}
31.150297% {background-color: #ffcccc;}
31.150298% {background-color: #eee;}
31.300298% {background-color: #eee;}
31.350298% {background-color: #eee;}
31.350299% {background-color: #ffcccc;}
31.400299% {background-color: #ffcccc;}
31.400300% {background-color: #eee;}
31.550300% {background-color: #eee;}
31.600300% {background-color: #eee;}
31.600301% {background-color: #ffcccc;}
31.650301% {background-color: #ffcccc;}
31.650302% {background-color: #eee;}
31.700302% {background-color: #eee;}
31.700303% {background-color: #ffcccc;}
31.850303% {background-color: #ffcccc;}
31.850304% {background-color: #eee;}
31.900304% {background-color: #eee;}
31.900305% {background-color: #ffcccc;}
32.050305% {background-color: #ffcccc;}
32.050306% {background-color: #eee;}
32.100306% {background-color: #eee;}
32.100307% {background-color: #ffcccc;}
32.150307% {background-color: #ffcccc;}
32.150308% {background-color: #eee;}
32.500308% {background-color: #eee;}
32.550308% {background-color: #eee;}
32.550309% {background-color: #ffcccc;}
32.600309% {background-color: #ffcccc;}
32.600310% {background-color: #eee;}
32.650310% {background-color: #eee;}
32.650311% {background-color: #ffcccc;}
32.700311% {background-color: #ffcccc;}
32.700312% {background-color: #eee;}
32.750312% {background-color: #eee;}
32.750313% {background-color: #ffcccc;}
32.800313% {background-color: #ffcccc;}
32.800314% {background-color: #eee;}
32.950314% {background-color: #eee;}
33.000314% {background-color: #eee;}
33.000315% {background-color: #ffcccc;}
33.050315% {background-color: #ffcccc;}
33.050316% {background-color: #eee;}
33.200316% {background-color: #eee;}
33.250316% {background-color: #eee;}
33.250317% {background-color: #ffcccc;}
33.300317% {background-color: #ffcccc;}
33.300318% {background-color: #eee;}
33.450318% {background-color: #eee;}
33.500318% {background-color: #eee;}
33.500319% {background-color: #ffcccc;}
33.550319% {background-color: #ffcccc;}
33.550320% {background-color: #eee;}
33.600320% {background-color: #eee;}
33.600321% {background-color: #ffcccc;}
33.750321% {background-color: #ffcccc;}
33.750322% {background-color: #eee;}
33.800322% {background-color: #eee;}
33.800323% {background-color: #ffcccc;}
33.950323% {background-color: #ffcccc;}
33.950324% {background-color: #eee;}
34.000324% {background-color: #eee;}
34.000325% {background-color: #ffcccc;}
34.050325% {background-color: #ffcccc;}
34.050326% {background-color: #eee;}
34.400326% {background-color: #eee;}
34.450326% {background-color: #eee;}
34.450327% {background-color: #ffcccc;}
34.500327% {background-color: #ffcccc;}
34.500328% {background-color: #eee;}
34.550328% {background-color: #eee;}
34.550329% {background-color: #ffcccc;}
34.600329% {background-color: #ffcccc;}
34.600330% {background-color: #eee;}
34.650330% {background-color: #eee;}
34.650331% {background-color: #ffcccc;}
34.700331% {background-color: #ffcccc;}
34.700332% {background-color: #eee;}
34.850332% {background-color: #eee;}
34.900332% {background-color: #eee;}
34.900333% {background-color: #ffcccc;}
34.950333% {background-color: #ffcccc;}
34.950334% {background-color: #eee;}
35.100334% {background-color: #eee;}
35.150334% {background-color: #eee;}
35.150335% {background-color: #ffcccc;}
35.200335% {background-color: #ffcccc;}
35.200336% {background-color: #eee;}
35.350336% {background-color: #eee;}
35.400336% {background-color: #eee;}
35.400337% {background-color: #ffcccc;}
35.450337% {background-color: #ffcccc;}
35.450338% {background-color: #eee;}
35.500338% {background-color: #eee;}
35.500339% {background-color: #ffcccc;}
35.650339% {background-color: #ffcccc;}
35.650340% {background-color: #eee;}
35.700340% {background-color: #eee;}
35.700341% {background-color: #ffcccc;}
35.850341% {background-color: #ffcccc;}
35.850342% {background-color: #eee;}
35.900342% {background-color: #eee;}
35.900343% {background-color: #ffcccc;}
35.950343% {background-color: #ffcccc;}
35.950344% {background-color: #eee;}
36.300344% {background-color: #eee;}
36.350344% {background-color: #eee;}
36.350345% {background-color: #ffcccc;}
36.400345% {background-color: #ffcccc;}
36.400346% {background-color: #eee;}
36.450346% {background-color: #eee;}
36.450347% {background-color: #ffcccc;}
36.500347% {background-color: #ffcccc;}
36.500348% {background-color: #eee;}
36.550348% {background-color: #eee;}
36.550349% {background-color: #ffcccc;}
36.600349% {background-color: #ffcccc;}
36.600350% {background-color: #eee;}
36.750350% {background-color: #eee;}
36.800350% {background-color: #eee;}
36.800351% {background-color: #ffcccc;}
36.850351% {background-color: #ffcccc;}
36.850352% {background-color: #eee;}
37.000352% {background-color: #eee;}
37.050352% {background-color: #eee;}
37.050353% {background-color: #ffcccc;}
37.100353% {background-color: #ffcccc;}
37.100354% {background-color: #eee;}
37.250354% {background-color: #eee;}
37.300354% {background-color: #eee;}
37.300355% {background-color: #ffcccc;}
37.350355% {background-color: #ffcccc;}
37.350356% {background-color: #eee;}
37.400356% {background-color: #eee;}
37.400357% {background-color: #ffcccc;}
37.550357% {background-color: #ffcccc;}
37.550358% {background-color: #eee;}
37.600358% {background-color: #eee;}
37.600359% {background-color: #ffcccc;}
37.750359% {background-color: #ffcccc;}
37.750360% {background-color: #eee;}
37.800360% {background-color: #eee;}
37.800361% {background-color: #ffcccc;}
37.850361% {background-color: #ffcccc;}
37.850362% {background-color: #eee;}
38.200362% {background-color: #eee;}
38.250362% {background-color: #eee;}
38.250363% {background-color: #ffcccc;}
38.300363% {background-color: #ffcccc;}
38.300364% {background-color: #eee;}
38.350364% {background-color: #eee;}
38.350365% {background-color: #ffcccc;}
38.400365% {background-color: #ffcccc;}
38.400366% {background-color: #eee;}
38.450366% {background-color: #eee;}
38.450367% {background-color: #ffcccc;}
38.500367% {background-color: #ffcccc;}
38.500368% {background-color: #eee;}
38.650368% {background-color: #eee;}
38.700368% {background-color: #eee;}
38.700369% {background-color: #ffcccc;}
38.750369% {background-color: #ffcccc;}
38.750370% {background-color: #eee;}
38.900370% {background-color: #eee;}
38.950370% {background-color: #eee;}
38.950371% {background-color: #ffcccc;}
39.000371% {background-color: #ffcccc;}
39.000372% {background-color: #eee;}
39.150372% {background-color: #eee;}
39.200372% {background-color: #eee;}
39.200373% {background-color: #ffcccc;}
39.250373% {background-color: #ffcccc;}
39.250374% {background-color: #eee;}
39.300374% {background-color: #eee;}
39.300375% {background-color: #ffcccc;}
39.450375% {background-color: #ffcccc;}
39.450376% {background-color: #eee;}
39.500376% {background-color: #eee;}
39.500377% {background-color: #ffcccc;}
39.650377% {background-color: #ffcccc;}
39.650378% {background-color: #eee;}
39.700378% {background-color: #eee;}
39.700379% {background-color: #ffcccc;}
39.750379% {background-color: #ffcccc;}
39.750380% {background-color: #eee;}
40.100380% {background-color: #eee;}
40.150380% {background-color: #eee;}
40.150381% {background-color: #ffcccc;}
40.200381% {background-color: #ffcccc;}
40.200382% {background-color: #eee;}
40.250382% {background-color: #eee;}
40.250383% {background-color: #ffcccc;}
40.300383% {background-color: #ffcccc;}
40.300384% {background-color: #eee;}
40.350384% {background-color: #eee;}
40.350385% {background-color: #ffcccc;}
40.400385% {background-color: #ffcccc;}
40.400386% {background-color: #eee;}
40.550386% {background-color: #eee;}
40.600386% {background-color: #eee;}
40.600387% {background-color: #ffcccc;}
40.650387% {background-color: #ffcccc;}
40.650388% {background-color: #eee;}
40.800388% {background-color: #eee;}
40.850388% {background-color: #eee;}
40.850389% {background-color: #ffcccc;}
40.900389% {background-color: #ffcccc;}
40.900390% {background-color: #eee;}
41.050390% {background-color: #eee;}
41.100390% {background-color: #eee;}
41.100391% {background-color: #ffcccc;}
41.150391% {background-color: #ffcccc;}
41.150392% {background-color: #eee;}
41.200392% {background-color: #eee;}
41.200393% {background-color: #ffcccc;}
41.350393% {background-color: #ffcccc;}
41.350394% {background-color: #eee;}
41.400394% {background-color: #eee;}
41.400395% {background-color: #ffcccc;}
41.550395% {background-color: #ffcccc;}
41.550396% {background-color: #eee;}
41.600396% {background-color: #eee;}
41.600397% {background-color: #ffcccc;}
41.650397% {background-color: #ffcccc;}
41.650398% {background-color: #eee;}
42.000398% {background-color: #eee;}
42.050398% {background-color: #eee;}
42.050399% {background-color: #ffcccc;}
42.100399% {background-color: #ffcccc;}
42.100400% {background-color: #eee;}
42.150400% {background-color: #eee;}
42.150401% {background-color: #ffcccc;}
42.200401% {background-color: #ffcccc;}
42.200402% {background-color: #eee;}
42.250402% {background-color: #eee;}
42.250403% {background-color: #ffcccc;}
42.300403% {background-color: #ffcccc;}
42.300404% {background-color: #eee;}
42.450404% {background-color: #eee;}
42.500404% {background-color: #eee;}
42.500405% {background-color: #ffcccc;}
42.550405% {background-color: #ffcccc;}
42.550406% {background-color: #eee;}
42.700406% {background-color: #eee;}
42.750406% {background-color: #eee;}
42.750407% {background-color: #ffcccc;}
42.800407% {background-color: #ffcccc;}
42.800408% {background-color: #eee;}
42.950408% {background-color: #eee;}
43.000408% {background-color: #eee;}
43.000409% {background-color: #ffcccc;}
43.050409% {background-color: #ffcccc;}
43.050410% {background-color: #eee;}
43.100410% {background-color: #eee;}
43.100411% {background-color: #ffcccc;}
43.250411% {background-color: #ffcccc;}
43.250412% {background-color: #eee;}
43.300412% {background-color: #eee;}
43.300413% {background-color: #ffcccc;}
43.450413% {background-color: #ffcccc;}
43.450414% {background-color: #eee;}
43.500414% {background-color: #eee;}
43.500415% {background-color: #ffcccc;}
43.550415% {background-color: #ffcccc;}
43.550416% {background-color: #eee;}
43.900416% {background-color: #eee;}
43.950416% {background-color: #eee;}
43.950417% {background-color: #ffcccc;}
44.000417% {background-color: #ffcccc;}
44.000418% {background-color: #eee;}
44.050418% {background-color: #eee;}
44.050419% {background-color: #ffcccc;}
44.100419% {background-color: #ffcccc;}
44.100420% {background-color: #eee;}
44.150420% {background-color: #eee;}
44.150421% {background-color: #ffcccc;}
44.200421% {background-color: #ffcccc;}
44.200422% {background-color: #eee;}
44.350422% {background-color: #eee;}
44.400422% {background-color: #eee;}
44.400423% {background-color: #ffcccc;}
44.450423% {background-color: #ffcccc;}
44.450424% {background-color: #eee;}
44.600424% {background-color: #eee;}
44.650424% {background-color: #eee;}
44.650425% {background-color: #ffcccc;}
44.700425% {background-color: #ffcccc;}
44.700426% {background-color: #eee;}
44.850426% {background-color: #eee;}
44.900426% {background-color: #eee;}
44.900427% {background-color: #ffcccc;}
44.950427% {background-color: #ffcccc;}
44.950428% {background-color: #eee;}
45.000428% {background-color: #eee;}
45.000429% {background-color: #ffcccc;}
45.150429% {background-color: #ffcccc;}
45.150430% {background-color: #eee;}
45.200430% {background-color: #eee;}
45.200431% {background-color: #ffcccc;}
45.350431% {background-color: #ffcccc;}
45.350432% {background-color: #eee;}
45.400432% {background-color: #eee;}
45.400433% {background-color: #ffcccc;}
45.450433% {background-color: #ffcccc;}
45.450434% {background-color: #eee;}
45.800434% {background-color: #eee;}
45.850434% {background-color: #eee;}
45.850435% {background-color: #ffcccc;}
45.900435% {background-color: #ffcccc;}
45.900436% {background-color: #eee;}
45.950436% {background-color: #eee;}
45.950437% {background-color: #ffcccc;}
46.000437% {background-color: #ffcccc;}
46.000438% {background-color: #eee;}
46.050438% {background-color: #eee;}
46.050439% {background-color: #ffcccc;}
46.100439% {background-color: #ffcccc;}
46.100440% {background-color: #eee;}
46.250440% {background-color: #eee;}
46.300440% {background-color: #eee;}
46.300441% {background-color: #ffcccc;}
46.350441% {background-color: #ffcccc;}
46.350442% {background-color: #eee;}
46.500442% {background-color: #eee;}
46.550442% {background-color: #eee;}
46.550443% {background-color: #ffcccc;}
46.600443% {background-color: #ffcccc;}
46.600444% {background-color: #eee;}
46.750444% {background-color: #eee;}
46.800444% {background-color: #eee;}
46.800445% {background-color: #ffcccc;}
46.850445% {background-color: #ffcccc;}
46.850446% {background-color: #eee;}
46.900446% {background-color: #eee;}
46.900447% {background-color: #ffcccc;}
47.050447% {background-color: #ffcccc;}
47.050448% {background-color: #eee;}
47.100448% {background-color: #eee;}
47.100449% {background-color: #ffcccc;}
47.250449% {background-color: #ffcccc;}
47.250450% {background-color: #eee;}
47.300450% {background-color: #eee;}
47.300451% {background-color: #ffcccc;}
47.350451% {background-color: #ffcccc;}
47.350452% {background-color: #eee;}
47.700452% {background-color: #eee;}
47.750452% {background-color: #eee;}
47.750453% {background-color: #ffcccc;}
47.800453% {background-color: #ffcccc;}
47.800454% {background-color: #eee;}
47.850454% {background-color: #eee;}
47.850455% {background-color: #ffcccc;}
47.900455% {background-color: #ffcccc;}
47.900456% {background-color: #eee;}
47.950456% {background-color: #eee;}
47.950457% {background-color: #ffcccc;}
48.000457% {background-color: #ffcccc;}
48.000458% {background-color: #eee;}
48.150458% {background-color: #eee;}
48.200458% {background-color: #eee;}
48.200459% {background-color: #ffcccc;}
48.250459% {background-color: #ffcccc;}
48.250460% {background-color: #eee;}
48.400460% {background-color: #eee;}
48.450460% {background-color: #eee;}
48.450461% {background-color: #ffcccc;}
48.500461% {background-color: #ffcccc;}
48.500462% {background-color: #eee;}
48.650462% {background-color: #eee;}
48.700462% {background-color: #eee;}
48.700463% {background-color: #ffcccc;}
48.750463% {background-color: #ffcccc;}
48.750464% {background-color: #eee;}
48.800464% {background-color: #eee;}
48.800465% {background-color: #ffcccc;}
48.950465% {background-color: #ffcccc;}
48.950466% {background-color: #eee;}
49.000466% {background-color: #eee;}
49.000467% {background-color: #ffcccc;}
49.150467% {background-color: #ffcccc;}
49.150468% {background-color: #eee;}
49.200468% {background-color: #eee;}
49.200469% {background-color: #ffcccc;}
49.250469% {background-color: #ffcccc;}
49.250470% {background-color: #eee;}
49.600470% {background-color: #eee;}
49.650470% {background-color: #eee;}
49.650471% {background-color: #ffcccc;}
49.700471% {background-color: #ffcccc;}
49.700472% {background-color: #eee;}
49.750472% {background-color: #eee;}
49.750473% {background-color: #ffcccc;}
49.800473% {background-color: #ffcccc;}
49.800474% {background-color: #eee;}
49.850474% {background-color: #eee;}
49.850475% {background-color: #ffcccc;}
49.900475% {background-color: #ffcccc;}
49.900476% {background-color: #eee;}
50.050476% {background-color: #eee;}
50.100476% {background-color: #eee;}
50.100477% {background-color: #ffcccc;}
50.150477% {background-color: #ffcccc;}
50.150478% {background-color: #eee;}
50.300478% {background-color: #eee;}
50.350478% {background-color: #eee;}
50.350479% {background-color: #ffcccc;}
50.400479% {background-color: #ffcccc;}
50.400480% {background-color: #eee;}
50.550480% {background-color: #eee;}
50.600480% {background-color: #eee;}
50.600481% {background-color: #ffcccc;}
50.650481% {background-color: #ffcccc;}
50.650482% {background-color: #eee;}
50.700482% {background-color: #eee;}
50.700483% {background-color: #ffcccc;}
50.850483% {background-color: #ffcccc;}
50.850484% {background-color: #eee;}
50.900484% {background-color: #eee;}
50.900485% {background-color: #ffcccc;}
51.050485% {background-color: #ffcccc;}
51.050486% {background-color: #eee;}
51.100486% {background-color: #eee;}
51.100487% {background-color: #ffcccc;}
51.150487% {background-color: #ffcccc;}
51.150488% {background-color: #eee;}
51.500488% {background-color: #eee;}
51.550488% {background-color: #eee;}
51.550489% {background-color: #ffcccc;}
51.600489% {background-color: #ffcccc;}
51.600490% {background-color: #eee;}
51.650490% {background-color: #eee;}
51.650491% {background-color: #ffcccc;}
51.700491% {background-color: #ffcccc;}
51.700492% {background-color: #eee;}
51.750492% {background-color: #eee;}
51.750493% {background-color: #ffcccc;}
51.800493% {background-color: #ffcccc;}
51.800494% {background-color: #eee;}
51.950494% {background-color: #eee;}
52.000494% {background-color: #eee;}
52.000495% {background-color: #ffcccc;}
52.050495% {background-color: #ffcccc;}
52.050496% {background-color: #eee;}
52.200496% {background-color: #eee;}
52.250496% {background-color: #eee;}
52.250497% {background-color: #ffcccc;}
52.300497% {background-color: #ffcccc;}
52.300498% {background-color: #eee;}
52.450498% {background-color: #eee;}
52.500498% {background-color: #eee;}
52.500499% {background-color: #ffcccc;}
52.550499% {background-color: #ffcccc;}
52.550500% {background-color: #eee;}
52.600500% {background-color: #eee;}
52.600501% {background-color: #ffcccc;}
52.750501% {background-color: #ffcccc;}
52.750502% {background-color: #eee;}
52.800502% {background-color: #eee;}
52.800503% {background-color: #ffcccc;}
52.950503% {background-color: #ffcccc;}
52.950504% {background-color: #eee;}
53.000504% {background-color: #eee;}
53.000505% {background-color: #ffcccc;}
53.050505% {background-color: #ffcccc;}
53.050506% {background-color: #eee;}
53.400506% {background-color: #eee;}
53.450506% {background-color: #eee;}
53.450507% {background-color: #ffcccc;}
53.500507% {background-color: #ffcccc;}
53.500508% {background-color: #eee;}
53.550508% {background-color: #eee;}
53.550509% {background-color: #ffcccc;}
53.600509% {background-color: #ffcccc;}
53.600510% {background-color: #eee;}
53.650510% {background-color: #eee;}
53.650511% {background-color: #ffcccc;}
53.700511% {background-color: #ffcccc;}
53.700512% {background-color: #eee;}
53.850512% {background-color: #eee;}
53.900512% {background-color: #eee;}
53.900513% {background-color: #ffcccc;}
53.950513% {background-color: #ffcccc;}
53.950514% {background-color: #eee;}
54.100514% {background-color: #eee;}
54.150514% {background-color: #eee;}
54.150515% {background-color: #ffcccc;}
54.200515% {background-color: #ffcccc;}
54.200516% {background-color: #eee;}
54.350516% {background-color: #eee;}
54.400516% {background-color: #eee;}
54.400517% {background-color: #ffcccc;}
54.450517% {background-color: #ffcccc;}
54.450518% {background-color: #eee;}
54.500518% {background-color: #eee;}
54.500519% {background-color: #ffcccc;}
54.650519% {background-color: #ffcccc;}
54.650520% {background-color: #eee;}
54.700520% {background-color: #eee;}
54.700521% {background-color: #ffcccc;}
54.850521% {background-color: #ffcccc;}
54.850522% {background-color: #eee;}
54.900522% {background-color: #eee;}
54.900523% {background-color: #ffcccc;}
54.950523% {background-color: #ffcccc;}
54.950524% {background-color: #eee;}
55.300524% {background-color: #eee;}
55.350524% {background-color: #eee;}
55.350525% {background-color: #ffcccc;}
55.400525% {background-color: #ffcccc;}
55.400526% {background-color: #eee;}
55.450526% {background-color: #eee;}
55.450527% {background-color: #ffcccc;}
55.500527% {background-color: #ffcccc;}
55.500528% {background-color: #eee;}
55.550528% {background-color: #eee;}
55.550529% {background-color: #ffcccc;}
55.600529% {background-color: #ffcccc;}
55.600530% {background-color: #eee;}
55.750530% {background-color: #eee;}
55.800530% {background-color: #eee;}
55.800531% {background-color: #ffcccc;}
55.850531% {background-color: #ffcccc;}
55.850532% {background-color: #eee;}
56.000532% {background-color: #eee;}
56.050532% {background-color: #eee;}
56.050533% {background-color: #ffcccc;}
56.100533% {background-color: #ffcccc;}
56.100534% {background-color: #eee;}
56.250534% {background-color: #eee;}
56.300534% {background-color: #eee;}
56.300535% {background-color: #ffcccc;}
56.350535% {background-color: #ffcccc;}
56.350536% {background-color: #eee;}
56.400536% {background-color: #eee;}
56.400537% {background-color: #ffcccc;}
56.550537% {background-color: #ffcccc;}
56.550538% {background-color: #eee;}
56.600538% {background-color: #eee;}
56.600539% {background-color: #ffcccc;}
56.750539% {background-color: #ffcccc;}
56.750540% {background-color: #eee;}
56.800540% {background-color: #eee;}
56.800541% {background-color: #ffcccc;}
56.850541% {background-color: #ffcccc;}
56.850542% {background-color: #eee;}
57.200542% {background-color: #eee;}
57.250542% {background-color: #eee;}
57.250543% {background-color: #ffcccc;}
57.300543% {background-color: #ffcccc;}
57.300544% {background-color: #eee;}
57.350544% {background-color: #eee;}
57.350545% {background-color: #ffcccc;}
57.400545% {background-color: #ffcccc;}
57.400546% {background-color: #eee;}
57.450546% {background-color: #eee;}
57.450547% {background-color: #ffcccc;}
57.500547% {background-color: #ffcccc;}
57.500548% {background-color: #eee;}
57.650548% {background-color: #eee;}
57.700548% {background-color: #eee;}
57.700549% {background-color: #ffcccc;}
57.750549% {background-color: #ffcccc;}
57.750550% {background-color: #eee;}
57.900550% {background-color: #eee;}
57.950550% {background-color: #eee;}
57.950551% {background-color: #ffcccc;}
58.000551% {background-color: #ffcccc;}
58.000552% {background-color: #eee;}
58.150552% {background-color: #eee;}
58.200552% {background-color: #eee;}
58.200553% {background-color: #ffcccc;}
58.250553% {background-color: #ffcccc;}
58.250554% {background-color: #eee;}
58.300554% {background-color: #eee;}
58.300555% {background-color: #ffcccc;}
58.450555% {background-color: #ffcccc;}
58.450556% {background-color: #eee;}
58.500556% {background-color: #eee;}
58.500557% {background-color: #ffcccc;}
58.650557% {background-color: #ffcccc;}
58.650558% {background-color: #eee;}
58.700558% {background-color: #eee;}
58.700559% {background-color: #ffcccc;}
58.750559% {background-color: #ffcccc;}
58.750560% {background-color: #eee;}
59.100560% {background-color: #eee;}
59.150560% {background-color: #eee;}
59.150561% {background-color: #ffcccc;}
59.200561% {background-color: #ffcccc;}
59.200562% {background-color: #eee;}
59.250562% {background-color: #eee;}
59.250563% {background-color: #ffcccc;}
59.300563% {background-color: #ffcccc;}
59.300564% {background-color: #eee;}
59.350564% {background-color: #eee;}
59.350565% {background-color: #ffcccc;}
59.400565% {background-color: #ffcccc;}
59.400566% {background-color: #eee;}
59.550566% {background-color: #eee;}
59.600566% {background-color: #eee;}
59.600567% {background-color: #ffcccc;}
59.650567% {background-color: #ffcccc;}
59.650568% {background-color: #eee;}
59.800568% {background-color: #eee;}
59.850568% {background-color: #eee;}
59.850569% {background-color: #ffcccc;}
59.900569% {background-color: #ffcccc;}
59.900570% {background-color: #eee;}
60.050570% {background-color: #eee;}
60.100570% {background-color: #eee;}
60.100571% {background-color: #ffcccc;}
60.150571% {background-color: #ffcccc;}
60.150572% {background-color: #eee;}
60.200572% {background-color: #eee;}
60.200573% {background-color: #ffcccc;}
60.350573% {background-color: #ffcccc;}
60.350574% {background-color: #eee;}
60.400574% {background-color: #eee;}
60.400575% {background-color: #ffcccc;}
60.550575% {background-color: #ffcccc;}
60.550576% {background-color: #eee;}
60.600576% {background-color: #eee;}
60.600577% {background-color: #ffcccc;}
60.650577% {background-color: #ffcccc;}
60.650578% {background-color: #eee;}
61.000578% {background-color: #eee;}
61.050578% {background-color: #eee;}
61.050579% {background-color: #ffcccc;}
61.100579% {background-color: #ffcccc;}
61.100580% {background-color: #eee;}
61.150580% {background-color: #eee;}
61.150581% {background-color: #ffcccc;}
61.200581% {background-color: #ffcccc;}
61.200582% {background-color: #eee;}
61.250582% {background-color: #eee;}
61.250583% {background-color: #ffcccc;}
61.300583% {background-color: #ffcccc;}
61.300584% {background-color: #eee;}
61.450584% {background-color: #eee;}
61.500584% {background-color: #eee;}
61.500585% {background-color: #ffcccc;}
61.550585% {background-color: #ffcccc;}
61.550586% {background-color: #eee;}
61.700586% {background-color: #eee;}
61.750586% {background-color: #eee;}
61.750587% {background-color: #ffcccc;}
61.800587% {background-color: #ffcccc;}
61.800588% {background-color: #eee;}
61.950588% {background-color: #eee;}
62.000588% {background-color: #eee;}
62.000589% {background-color: #ffcccc;}
62.050589% {background-color: #ffcccc;}
62.050590% {background-color: #eee;}
62.100590% {background-color: #eee;}
62.100591% {background-color: #ffcccc;}
62.250591% {background-color: #ffcccc;}
62.250592% {background-color: #eee;}
62.300592% {background-color: #eee;}
62.300593% {background-color: #ffcccc;}
62.450593% {background-color: #ffcccc;}
62.450594% {background-color: #eee;}
62.500594% {background-color: #eee;}
62.500595% {background-color: #ffcccc;}
62.550595% {background-color: #ffcccc;}
62.550596% {background-color: #eee;}
62.900596% {background-color: #eee;}
62.950596% {background-color: #eee;}
62.950597% {background-color: #ffcccc;}
63.000597% {background-color: #ffcccc;}
63.000598% {background-color: #eee;}
63.050598% {background-color: #eee;}
63.050599% {background-color: #ffcccc;}
63.100599% {background-color: #ffcccc;}
63.100600% {background-color: #eee;}
63.150600% {background-color: #eee;}
63.150601% {background-color: #ffcccc;}
63.200601% {background-color: #ffcccc;}
63.200602% {background-color: #eee;}
63.350602% {background-color: #eee;}
63.400602% {background-color: #eee;}
63.400603% {background-color: #ffcccc;}
63.450603% {background-color: #ffcccc;}
63.450604% {background-color: #eee;}
63.600604% {background-color: #eee;}
63.650604% {background-color: #eee;}
63.650605% {background-color: #ffcccc;}
63.700605% {background-color: #ffcccc;}
63.700606% {background-color: #eee;}
63.850606% {background-color: #eee;}
63.900606% {background-color: #eee;}
63.900607% {background-color: #ffcccc;}
63.950607% {background-color: #ffcccc;}
63.950608% {background-color: #eee;}
64.000608% {background-color: #eee;}
64.000609% {background-color: #ffcccc;}
64.150609% {background-color: #ffcccc;}
64.150610% {background-color: #eee;}
64.200610% {background-color: #eee;}
64.200611% {background-color: #ffcccc;}
64.350611% {background-color: #ffcccc;}
64.350612% {background-color: #eee;}
64.400612% {background-color: #eee;}
64.400613% {background-color: #ffcccc;}
64.450613% {background-color: #ffcccc;}
64.450614% {background-color: #eee;}
64.800614% {background-color: #eee;}
64.850614% {background-color: #eee;}
64.850615% {background-color: #ffcccc;}
64.900615% {background-color: #ffcccc;}
64.900616% {background-color: #eee;}
64.950616% {background-color: #eee;}
64.950617% {background-color: #ffcccc;}
65.000617% {background-color: #ffcccc;}
65.000618% {background-color: #eee;}
65.050618% {background-color: #eee;}
65.050619% {background-color: #ffcccc;}
65.100619% {background-color: #ffcccc;}
65.100620% {background-color: #eee;}
65.250620% {background-color: #eee;}
65.300620% {background-color: #eee;}
65.300621% {background-color: #ffcccc;}
65.350621% {background-color: #ffcccc;}
65.350622% {background-color: #eee;}
65.500622% {background-color: #eee;}
65.550622% {background-color: #eee;}
65.550623% {background-color: #ffcccc;}
65.600623% {background-color: #ffcccc;}
65.600624% {background-color: #eee;}
65.750624% {background-color: #eee;}
65.800624% {background-color: #eee;}
65.800625% {background-color: #ffcccc;}
65.850625% {background-color: #ffcccc;}
65.850626% {background-color: #eee;}
65.900626% {background-color: #eee;}
65.900627% {background-color: #ffcccc;}
66.050627% {background-color: #ffcccc;}
66.050628% {background-color: #eee;}
66.100628% {background-color: #eee;}
66.100629% {background-color: #ffcccc;}
66.250629% {background-color: #ffcccc;}
66.250630% {background-color: #eee;}
66.300630% {background-color: #eee;}
66.300631% {background-color: #ffcccc;}
66.350631% {background-color: #ffcccc;}
66.350632% {background-color: #eee;}
66.700632% {background-color: #eee;}
66.750632% {background-color: #eee;}
66.750633% {background-color: #ffcccc;}
66.800633% {background-color: #ffcccc;}
66.800634% {background-color: #eee;}
66.850634% {background-color: #eee;}
66.850635% {background-color: #ffcccc;}
66.900635% {background-color: #ffcccc;}
66.900636% {background-color: #eee;}
66.950636% {background-color: #eee;}
66.950637% {background-color: #ffcccc;}
67.000637% {background-color: #ffcccc;}
67.000638% {background-color: #eee;}
67.150638% {background-color: #eee;}
67.200638% {background-color: #eee;}
67.200639% {background-color: #ffcccc;}
67.250639% {background-color: #ffcccc;}
67.250640% {background-color: #eee;}
67.400640% {background-color: #eee;}
67.450640% {background-color: #eee;}
67.450641% {background-color: #ffcccc;}
67.500641% {background-color: #ffcccc;}
67.500642% {background-color: #eee;}
67.650642% {background-color: #eee;}
67.700642% {background-color: #eee;}
67.700643% {background-color: #ffcccc;}
67.750643% {background-color: #ffcccc;}
67.750644% {background-color: #eee;}
67.800644% {background-color: #eee;}
67.800645% {background-color: #ffcccc;}
67.950645% {background-color: #ffcccc;}
67.950646% {background-color: #eee;}
68.000646% {background-color: #eee;}
68.000647% {background-color: #ffcccc;}
68.150647% {background-color: #ffcccc;}
68.150648% {background-color: #eee;}
68.200648% {background-color: #eee;}
68.200649% {background-color: #ffcccc;}
68.250649% {background-color: #ffcccc;}
68.250650% {background-color: #eee;}
68.600650% {background-color: #eee;}
68.650650% {background-color: #eee;}
68.650651% {background-color: #ffcccc;}
68.700651% {background-color: #ffcccc;}
68.700652% {background-color: #eee;}
68.750652% {background-color: #eee;}
68.750653% {background-color: #ffcccc;}
68.800653% {background-color: #ffcccc;}
68.800654% {background-color: #eee;}
68.850654% {background-color: #eee;}
68.850655% {background-color: #ffcccc;}
68.900655% {background-color: #ffcccc;}
68.900656% {background-color: #eee;}
69.050656% {background-color: #eee;}
69.100656% {background-color: #eee;}
69.100657% {background-color: #ffcccc;}
69.150657% {background-color: #ffcccc;}
69.150658% {background-color: #eee;}
69.300658% {background-color: #eee;}
69.350658% {background-color: #eee;}
69.350659% {background-color: #ffcccc;}
69.400659% {background-color: #ffcccc;}
69.400660% {background-color: #eee;}
69.550660% {background-color: #eee;}
69.600660% {background-color: #eee;}
69.600661% {background-color: #ffcccc;}
69.650661% {background-color: #ffcccc;}
69.650662% {background-color: #eee;}
69.700662% {background-color: #eee;}
69.700663% {background-color: #ffcccc;}
69.850663% {background-color: #ffcccc;}
69.850664% {background-color: #eee;}
69.900664% {background-color: #eee;}
69.900665% {background-color: #ffcccc;}
70.050665% {background-color: #ffcccc;}
70.050666% {background-color: #eee;}
70.100666% {background-color: #eee;}
70.100667% {background-color: #ffcccc;}
70.150667% {background-color: #ffcccc;}
70.150668% {background-color: #eee;}
70.500668% {background-color: #eee;}
70.550668% {background-color: #eee;}
70.550669% {background-color: #ffcccc;}
70.600669% {background-color: #ffcccc;}
70.600670% {background-color: #eee;}
70.650670% {background-color: #eee;}
70.650671% {background-color: #ffcccc;}
70.700671% {background-color: #ffcccc;}
70.700672% {background-color: #eee;}
70.750672% {background-color: #eee;}
70.750673% {background-color: #ffcccc;}
70.800673% {background-color: #ffcccc;}
70.800674% {background-color: #eee;}
70.950674% {background-color: #eee;}
71.000674% {background-color: #eee;}
71.000675% {background-color: #ffcccc;}
71.050675% {background-color: #ffcccc;}
71.050676% {background-color: #eee;}
71.200676% {background-color: #eee;}
71.250676% {background-color: #eee;}
71.250677% {background-color: #ffcccc;}
71.300677% {background-color: #ffcccc;}
71.300678% {background-color: #eee;}
71.450678% {background-color: #eee;}
71.500678% {background-color: #eee;}
71.500679% {background-color: #ffcccc;}
71.550679% {background-color: #ffcccc;}
71.550680% {background-color: #eee;}
71.600680% {background-color: #eee;}
71.600681% {background-color: #ffcccc;}
71.750681% {background-color: #ffcccc;}
71.750682% {background-color: #eee;}
71.800682% {background-color: #eee;}
71.800683% {background-color: #ffcccc;}
71.950683% {background-color: #ffcccc;}
71.950684% {background-color: #eee;}
72.000684% {background-color: #eee;}
72.000685% {background-color: #ffcccc;}
72.050685% {background-color: #ffcccc;}
72.050686% {background-color: #eee;}
72.400686% {background-color: #eee;}
72.450686% {background-color: #eee;}
72.450687% {background-color: #ffcccc;}
72.500687% {background-color: #ffcccc;}
72.500688% {background-color: #eee;}
72.550688% {background-color: #eee;}
72.550689% {background-color: #ffcccc;}
72.600689% {background-color: #ffcccc;}
72.600690% {background-color: #eee;}
72.650690% {background-color: #eee;}
72.650691% {background-color: #ffcccc;}
72.700691% {background-color: #ffcccc;}
72.700692% {background-color: #eee;}
72.850692% {background-color: #eee;}
72.900692% {background-color: #eee;}
72.900693% {background-color: #ffcccc;}
72.950693% {background-color: #ffcccc;}
72.950694% {background-color: #eee;}
73.100694% {background-color: #eee;}
73.150694% {background-color: #eee;}
73.150695% {background-color: #ffcccc;}
73.200695% {background-color: #ffcccc;}
73.200696% {background-color: #eee;}
73.350696% {background-color: #eee;}
73.400696% {background-color: #eee;}
73.400697% {background-color: #ffcccc;}
73.450697% {background-color: #ffcccc;}
73.450698% {background-color: #eee;}
73.500698% {background-color: #eee;}
73.500699% {background-color: #ffcccc;}
73.650699% {background-color: #ffcccc;}
73.650700% {background-color: #eee;}
73.700700% {background-color: #eee;}
73.700701% {background-color: #ffcccc;}
73.850701% {background-color: #ffcccc;}
73.850702% {background-color: #eee;}
73.900702% {background-color: #eee;}
73.900703% {background-color: #ffcccc;}
73.950703% {background-color: #ffcccc;}
73.950704% {background-color: #eee;}
74.300704% {background-color: #eee;}
74.350704% {background-color: #eee;}
74.350705% {background-color: #ffcccc;}
74.400705% {background-color: #ffcccc;}
74.400706% {background-color: #eee;}
74.450706% {background-color: #eee;}
74.450707% {background-color: #ffcccc;}
74.500707% {background-color: #ffcccc;}
74.500708% {background-color: #eee;}
74.550708% {background-color: #eee;}
74.550709% {background-color: #ffcccc;}
74.600709% {background-color: #ffcccc;}
74.600710% {background-color: #eee;}
74.750710% {background-color: #eee;}
74.800710% {background-color: #eee;}
74.800711% {background-color: #ffcccc;}
74.850711% {background-color: #ffcccc;}
74.850712% {background-color: #eee;}
75.000712% {background-color: #eee;}
75.050712% {background-color: #eee;}
75.050713% {background-color: #ffcccc;}
75.100713% {background-color: #ffcccc;}
75.100714% {background-color: #eee;}
75.250714% {background-color: #eee;}
75.300714% {background-color: #eee;}
75.300715% {background-color: #ffcccc;}
75.350715% {background-color: #ffcccc;}
75.350716% {background-color: #eee;}
75.400716% {background-color: #eee;}
75.400717% {background-color: #ffcccc;}
75.550717% {background-color: #ffcccc;}
75.550718% {background-color: #eee;}
75.600718% {background-color: #eee;}
75.600719% {background-color: #ffcccc;}
75.750719% {background-color: #ffcccc;}
75.750720% {background-color: #eee;}
75.800720% {background-color: #eee;}
75.800721% {background-color: #ffcccc;}
75.850721% {background-color: #ffcccc;}
75.850722% {background-color: #eee;}
76.200722% {background-color: #eee;}
76.250722% {background-color: #eee;}
76.250723% {background-color: #ffcccc;}
76.300723% {background-color: #ffcccc;}
76.300724% {background-color: #eee;}
76.350724% {background-color: #eee;}
76.350725% {background-color: #ffcccc;}
76.400725% {background-color: #ffcccc;}
76.400726% {background-color: #eee;}
76.450726% {background-color: #eee;}
76.450727% {background-color: #ffcccc;}
76.500727% {background-color: #ffcccc;}
76.500728% {background-color: #eee;}
76.650728% {background-color: #eee;}
76.700728% {background-color: #eee;}
76.700729% {background-color: #ffcccc;}
76.750729% {background-color: #ffcccc;}
76.750730% {background-color: #eee;}
76.900730% {background-color: #eee;}
76.950730% {background-color: #eee;}
76.950731% {background-color: #ffcccc;}
77.000731% {background-color: #ffcccc;}
77.000732% {background-color: #eee;}
77.150732% {background-color: #eee;}
77.200732% {background-color: #eee;}
77.200733% {background-color: #ffcccc;}
77.250733% {background-color: #ffcccc;}
77.250734% {background-color: #eee;}
77.300734% {background-color: #eee;}
77.300735% {background-color: #ffcccc;}
77.450735% {background-color: #ffcccc;}
77.450736% {background-color: #eee;}
77.500736% {background-color: #eee;}
77.500737% {background-color: #ffcccc;}
77.650737% {background-color: #ffcccc;}
77.650738% {background-color: #eee;}
77.700738% {background-color: #eee;}
77.700739% {background-color: #ffcccc;}
77.750739% {background-color: #ffcccc;}
77.750740% {background-color: #eee;}
78.100740% {background-color: #eee;}
78.150740% {background-color: #eee;}
78.150741% {background-color: #ffcccc;}
78.200741% {background-color: #ffcccc;}
78.200742% {background-color: #eee;}
78.250742% {background-color: #eee;}
78.250743% {background-color: #ffcccc;}
78.300743% {background-color: #ffcccc;}
78.300744% {background-color: #eee;}
78.350744% {background-color: #eee;}
78.350745% {background-color: #ffcccc;}
78.400745% {background-color: #ffcccc;}
78.400746% {background-color: #eee;}
78.550746% {background-color: #eee;}
78.600746% {background-color: #eee;}
78.600747% {background-color: #ffcccc;}
78.650747% {background-color: #ffcccc;}
78.650748% {background-color: #eee;}
78.800748% {background-color: #eee;}
78.850748% {background-color: #eee;}
78.850749% {background-color: #ffcccc;}
78.900749% {background-color: #ffcccc;}
78.900750% {background-color: #eee;}
79.050750% {background-color: #eee;}
79.100750% {background-color: #eee;}
79.100751% {background-color: #ffcccc;}
79.150751% {background-color: #ffcccc;}
79.150752% {background-color: #eee;}
79.200752% {background-color: #eee;}
79.200753% {background-color: #ffcccc;}
79.350753% {background-color: #ffcccc;}
79.350754% {background-color: #eee;}
79.400754% {background-color: #eee;}
79.400755% {background-color: #ffcccc;}
79.550755% {background-color: #ffcccc;}
79.550756% {background-color: #eee;}
79.600756% {background-color: #eee;}
79.600757% {background-color: #ffcccc;}
79.650757% {background-color: #ffcccc;}
79.650758% {background-color: #eee;}
80.000758% {background-color: #eee;}
80.050758% {background-color: #eee;}
80.050759% {background-color: #ffcccc;}
80.100759% {background-color: #ffcccc;}
80.100760% {background-color: #eee;}
80.150760% {background-color: #eee;}
80.150761% {background-color: #ffcccc;}
80.200761% {background-color: #ffcccc;}
80.200762% {background-color: #eee;}
80.250762% {background-color: #eee;}
80.250763% {background-color: #ffcccc;}
80.300763% {background-color: #ffcccc;}
80.300764% {background-color: #eee;}
80.450764% {background-color: #eee;}
80.500764% {background-color: #eee;}
80.500765% {background-color: #ffcccc;}
80.550765% {background-color: #ffcccc;}
80.550766% {background-color: #eee;}
80.700766% {background-color: #eee;}
80.750766% {background-color: #eee;}
80.750767% {background-color: #ffcccc;}
80.800767% {background-color: #ffcccc;}
80.800768% {background-color: #eee;}
80.950768% {background-color: #eee;}
81.000768% {background-color: #eee;}
81.000769% {background-color: #ffcccc;}
81.050769% {background-color: #ffcccc;}
81.050770% {background-color: #eee;}
81.100770% {background-color: #eee;}
81.100771% {background-color: #ffcccc;}
81.250771% {background-color: #ffcccc;}
81.250772% {background-color: #eee;}
81.300772% {background-color: #eee;}
81.300773% {background-color: #ffcccc;}
81.450773% {background-color: #ffcccc;}
81.450774% {background-color: #eee;}
81.500774% {background-color: #eee;}
81.500775% {background-color: #ffcccc;}
81.550775% {background-color: #ffcccc;}
81.550776% {background-color: #eee;}
81.900776% {background-color: #eee;}
81.950776% {background-color: #eee;}
81.950777% {background-color: #ffcccc;}
82.000777% {background-color: #ffcccc;}
82.000778% {background-color: #eee;}
82.050778% {background-color: #eee;}
82.050779% {background-color: #ffcccc;}
82.100779% {background-color: #ffcccc;}
82.100780% {background-color: #eee;}
82.150780% {background-color: #eee;}
82.150781% {background-color: #ffcccc;}
82.200781% {background-color: #ffcccc;}
82.200782% {background-color: #eee;}
82.350782% {background-color: #eee;}
82.400782% {background-color: #eee;}
82.400783% {background-color: #ffcccc;}
82.450783% {background-color: #ffcccc;}
82.450784% {background-color: #eee;}
82.600784% {background-color: #eee;}
82.650784% {background-color: #eee;}
82.650785% {background-color: #ffcccc;}
82.700785% {background-color: #ffcccc;}
82.700786% {background-color: #eee;}
82.850786% {background-color: #eee;}
82.900786% {background-color: #eee;}
82.900787% {background-color: #ffcccc;}
82.950787% {background-color: #ffcccc;}
82.950788% {background-color: #eee;}
83.000788% {background-color: #eee;}
83.000789% {background-color: #ffcccc;}
83.150789% {background-color: #ffcccc;}
83.150790% {background-color: #eee;}
83.200790% {background-color: #eee;}
83.200791% {background-color: #ffcccc;}
83.350791% {background-color: #ffcccc;}
83.350792% {background-color: #eee;}
83.400792% {background-color: #eee;}
83.400793% {background-color: #ffcccc;}
83.450793% {background-color: #ffcccc;}
83.450794% {background-color: #eee;}
83.800794% {background-color: #eee;}
83.850794% {background-color: #eee;}
83.850795% {background-color: #ffcccc;}
83.900795% {background-color: #ffcccc;}
83.900796% {background-color: #eee;}
83.950796% {background-color: #eee;}
83.950797% {background-color: #ffcccc;}
84.000797% {background-color: #ffcccc;}
84.000798% {background-color: #eee;}
84.050798% {background-color: #eee;}
84.050799% {background-color: #ffcccc;}
84.100799% {background-color: #ffcccc;}
84.100800% {background-color: #eee;}
84.250800% {background-color: #eee;}
84.300800% {background-color: #eee;}
84.300801% {background-color: #ffcccc;}
84.350801% {background-color: #ffcccc;}
84.350802% {background-color: #eee;}
84.500802% {background-color: #eee;}
84.550802% {background-color: #eee;}
84.550803% {background-color: #ffcccc;}
84.600803% {background-color: #ffcccc;}
84.600804% {background-color: #eee;}
84.750804% {background-color: #eee;}
84.800804% {background-color: #eee;}
84.800805% {background-color: #ffcccc;}
84.850805% {background-color: #ffcccc;}
84.850806% {background-color: #eee;}
84.900806% {background-color: #eee;}
84.900807% {background-color: #ffcccc;}
85.050807% {background-color: #ffcccc;}
85.050808% {background-color: #eee;}
85.100808% {background-color: #eee;}
85.100809% {background-color: #ffcccc;}
85.250809% {background-color: #ffcccc;}
85.250810% {background-color: #eee;}
85.300810% {background-color: #eee;}
85.300811% {background-color: #ffcccc;}
85.350811% {background-color: #ffcccc;}
85.350812% {background-color: #eee;}
85.700812% {background-color: #eee;}
85.750812% {background-color: #eee;}
85.750813% {background-color: #ffcccc;}
85.800813% {background-color: #ffcccc;}
85.800814% {background-color: #eee;}
85.850814% {background-color: #eee;}
85.850815% {background-color: #ffcccc;}
85.900815% {background-color: #ffcccc;}
85.900816% {background-color: #eee;}
85.950816% {background-color: #eee;}
85.950817% {background-color: #ffcccc;}
86.000817% {background-color: #ffcccc;}
86.000818% {background-color: #eee;}
86.150818% {background-color: #eee;}
86.200818% {background-color: #eee;}
86.200819% {background-color: #ffcccc;}
86.250819% {background-color: #ffcccc;}
86.250820% {background-color: #eee;}
86.400820% {background-color: #eee;}
86.450820% {background-color: #eee;}
86.450821% {background-color: #ffcccc;}
86.500821% {background-color: #ffcccc;}
86.500822% {background-color: #eee;}
86.650822% {background-color: #eee;}
86.700822% {background-color: #eee;}
86.700823% {background-color: #ffcccc;}
86.750823% {background-color: #ffcccc;}
86.750824% {background-color: #eee;}
86.800824% {background-color: #eee;}
86.800825% {background-color: #ffcccc;}
86.950825% {background-color: #ffcccc;}
86.950826% {background-color: #eee;}
87.000826% {background-color: #eee;}
87.000827% {background-color: #ffcccc;}
87.150827% {background-color: #ffcccc;}
87.150828% {background-color: #eee;}
87.200828% {background-color: #eee;}
87.200829% {background-color: #ffcccc;}
87.250829% {background-color: #ffcccc;}
87.250830% {background-color: #eee;}
87.600830% {background-color: #eee;}
87.650830% {background-color: #eee;}
87.650831% {background-color: #ffcccc;}
87.700831% {background-color: #ffcccc;}
87.700832% {background-color: #eee;}
87.750832% {background-color: #eee;}
87.750833% {background-color: #ffcccc;}
87.800833% {background-color: #ffcccc;}
87.800834% {background-color: #eee;}
87.850834% {background-color: #eee;}
87.850835% {background-color: #ffcccc;}
87.900835% {background-color: #ffcccc;}
87.900836% {background-color: #eee;}
88.050836% {background-color: #eee;}
88.100836% {background-color: #eee;}
88.100837% {background-color: #ffcccc;}
88.150837% {background-color: #ffcccc;}
88.150838% {background-color: #eee;}
88.300838% {background-color: #eee;}
88.350838% {background-color: #eee;}
88.350839% {background-color: #ffcccc;}
88.400839% {background-color: #ffcccc;}
88.400840% {background-color: #eee;}
88.550840% {background-color: #eee;}
88.600840% {background-color: #eee;}
88.600841% {background-color: #ffcccc;}
88.650841% {background-color: #ffcccc;}
88.650842% {background-color: #eee;}
88.700842% {background-color: #eee;}
88.700843% {background-color: #ffcccc;}
88.850843% {background-color: #ffcccc;}
88.850844% {background-color: #eee;}
88.900844% {background-color: #eee;}
88.900845% {background-color: #ffcccc;}
89.050845% {background-color: #ffcccc;}
89.050846% {background-color: #eee;}
89.100846% {background-color: #eee;}
89.100847% {background-color: #ffcccc;}
89.150847% {background-color: #ffcccc;}
89.150848% {background-color: #eee;}
89.500848% {background-color: #eee;}
89.550848% {background-color: #eee;}
89.550849% {background-color: #ffcccc;}
89.600849% {background-color: #ffcccc;}
89.600850% {background-color: #eee;}
89.650850% {background-color: #eee;}
89.650851% {background-color: #ffcccc;}
89.700851% {background-color: #ffcccc;}
89.700852% {background-color: #eee;}
89.750852% {background-color: #eee;}
89.750853% {background-color: #ffcccc;}
89.800853% {background-color: #ffcccc;}
89.800854% {background-color: #eee;}
89.950854% {background-color: #eee;}
90.000854% {background-color: #eee;}
90.000855% {background-color: #ffcccc;}
90.050855% {background-color: #ffcccc;}
90.050856% {background-color: #eee;}
90.200856% {background-color: #eee;}
90.250856% {background-color: #eee;}
90.250857% {background-color: #ffcccc;}
90.300857% {background-color: #ffcccc;}
90.300858% {background-color: #eee;}
90.450858% {background-color: #eee;}
90.500858% {background-color: #eee;}
90.500859% {background-color: #ffcccc;}
90.550859% {background-color: #ffcccc;}
90.550860% {background-color: #eee;}
90.600860% {background-color: #eee;}
90.600861% {background-color: #ffcccc;}
90.750861% {background-color: #ffcccc;}
90.750862% {background-color: #eee;}
90.800862% {background-color: #eee;}
90.800863% {background-color: #ffcccc;}
90.950863% {background-color: #ffcccc;}
90.950864% {background-color: #eee;}
91.000864% {background-color: #eee;}
91.000865% {background-color: #ffcccc;}
91.050865% {background-color: #ffcccc;}
91.050866% {background-color: #eee;}
91.400866% {background-color: #eee;}
91.450866% {background-color: #eee;}
91.450867% {background-color: #ffcccc;}
91.500867% {background-color: #ffcccc;}
91.500868% {background-color: #eee;}
91.550868% {background-color: #eee;}
91.550869% {background-color: #ffcccc;}
91.600869% {background-color: #ffcccc;}
91.600870% {background-color: #eee;}
91.650870% {background-color: #eee;}
91.650871% {background-color: #ffcccc;}
91.700871% {background-color: #ffcccc;}
91.700872% {background-color: #eee;}
91.850872% {background-color: #eee;}
91.900872% {background-color: #eee;}
91.900873% {background-color: #ffcccc;}
91.950873% {background-color: #ffcccc;}
91.950874% {background-color: #eee;}
92.100874% {background-color: #eee;}
92.150874% {background-color: #eee;}
92.150875% {background-color: #ffcccc;}
92.200875% {background-color: #ffcccc;}
92.200876% {background-color: #eee;}
92.350876% {background-color: #eee;}
92.400876% {background-color: #eee;}
92.400877% {background-color: #ffcccc;}
92.450877% {background-color: #ffcccc;}
92.450878% {background-color: #eee;}
92.500878% {background-color: #eee;}
92.500879% {background-color: #ffcccc;}
92.650879% {background-color: #ffcccc;}
92.650880% {background-color: #eee;}
92.700880% {background-color: #eee;}
92.700881% {background-color: #ffcccc;}
92.850881% {background-color: #ffcccc;}
92.850882% {background-color: #eee;}
92.900882% {background-color: #eee;}
92.900883% {background-color: #ffcccc;}
92.950883% {background-color: #ffcccc;}
92.950884% {background-color: #eee;}
93.300884% {background-color: #eee;}
93.350884% {background-color: #eee;}
93.350885% {background-color: #ffcccc;}
93.400885% {background-color: #ffcccc;}
93.400886% {background-color: #eee;}
93.450886% {background-color: #eee;}
93.450887% {background-color: #ffcccc;}
93.500887% {background-color: #ffcccc;}
93.500888% {background-color: #eee;}
93.550888% {background-color: #eee;}
93.550889% {background-color: #ffcccc;}
93.600889% {background-color: #ffcccc;}
93.600890% {background-color: #eee;}
93.750890% {background-color: #eee;}
93.800890% {background-color: #eee;}
93.800891% {background-color: #ffcccc;}
93.850891% {background-color: #ffcccc;}
93.850892% {background-color: #eee;}
94.000892% {background-color: #eee;}
94.050892% {background-color: #eee;}
94.050893% {background-color: #ffcccc;}
94.100893% {background-color: #ffcccc;}
94.100894% {background-color: #eee;}
94.250894% {background-color: #eee;}
94.300894% {background-color: #eee;}
94.300895% {background-color: #ffcccc;}
94.350895% {background-color: #ffcccc;}
94.350896% {background-color: #eee;}
94.400896% {background-color: #eee;}
94.400897% {background-color: #ffcccc;}
94.550897% {background-color: #ffcccc;}
94.550898% {background-color: #eee;}
94.600898% {background-color: #eee;}
94.600899% {background-color: #ffcccc;}
94.750899% {background-color: #ffcccc;}
94.750900% {background-color: #eee;}
94.800900% {background-color: #eee;}
94.800901% {background-color: #ffcccc;}
94.850901% {background-color: #ffcccc;}
94.850902% {background-color: #eee;}
95.200902% {background-color: #eee;}
95.250902% {background-color: #eee;}
95.250903% {background-color: #ffcccc;}
95.300903% {background-color: #ffcccc;}
95.300904% {background-color: #eee;}
95.350904% {background-color: #eee;}
95.350905% {background-color: #ffcccc;}
95.400905% {background-color: #ffcccc;}
95.400906% {background-color: #eee;}
95.450906% {background-color: #eee;}
95.450907% {background-color: #ffcccc;}
95.500907% {background-color: #ffcccc;}
95.500908% {background-color: #eee;}
95.650908% {background-color: #eee;}
95.700908% {background-color: #eee;}
95.700909% {background-color: #ffcccc;}
95.750909% {background-color: #ffcccc;}
95.750910% {background-color: #eee;}
95.900910% {background-color: #eee;}
95.950910% {background-color: #eee;}
95.950911% {background-color: #ffcccc;}
96.000911% {background-color: #ffcccc;}
96.000912% {background-color: #eee;}
96.150912% {background-color: #eee;}
96.200912% {background-color: #eee;}
96.200913% {background-color: #ffcccc;}
96.250913% {background-color: #ffcccc;}
96.250914% {background-color: #eee;}
96.300914% {background-color: #eee;}
96.300915% {background-color: #ffcccc;}
96.450915% {background-color: #ffcccc;}
96.450916% {background-color: #eee;}
96.500916% {background-color: #eee;}
96.500917% {background-color: #ffcccc;}
96.650917% {background-color: #ffcccc;}
96.650918% {background-color: #eee;}
96.700918% {background-color: #eee;}
96.700919% {background-color: #ffcccc;}
96.750919% {background-color: #ffcccc;}
96.750920% {background-color: #eee;}
97.100920% {background-color: #eee;}
97.150920% {background-color: #eee;}
97.150921% {background-color: #ffcccc;}
97.200921% {background-color: #ffcccc;}
97.200922% {background-color: #eee;}
97.250922% {background-color: #eee;}
97.250923% {background-color: #ffcccc;}
97.300923% {background-color: #ffcccc;}
97.300924% {background-color: #eee;}
97.350924% {background-color: #eee;}
97.350925% {background-color: #ffcccc;}
97.400925% {background-color: #ffcccc;}
97.400926% {background-color: #eee;}
97.550926% {background-color: #eee;}
97.600926% {background-color: #eee;}
97.600927% {background-color: #ffcccc;}
97.650927% {background-color: #ffcccc;}
97.650928% {background-color: #eee;}
97.800928% {background-color: #eee;}
97.850928% {background-color: #eee;}
97.850929% {background-color: #ffcccc;}
97.900929% {background-color: #ffcccc;}
97.900930% {background-color: #eee;}
98.050930% {background-color: #eee;}
98.100930% {background-color: #eee;}
98.100931% {background-color: #ffcccc;}
98.150931% {background-color: #ffcccc;}
98.150932% {background-color: #eee;}
98.200932% {background-color: #eee;}
98.200933% {background-color: #ffcccc;}
98.350933% {background-color: #ffcccc;}
98.350934% {background-color: #eee;}
98.400934% {background-color: #eee;}
98.400935% {background-color: #ffcccc;}
98.550935% {background-color: #ffcccc;}
98.550936% {background-color: #eee;}
98.600936% {background-color: #eee;}
98.600937% {background-color: #ffcccc;}
98.650937% {background-color: #ffcccc;}
98.650938% {background-color: #eee;}
99.000938% {background-color: #eee;}
99.050938% {background-color: #eee;}
99.050939% {background-color: #ffcccc;}
99.100939% {background-color: #ffcccc;}
99.100940% {background-color: #eee;}
99.150940% {background-color: #eee;}
99.150941% {background-color: #ffcccc;}
99.200941% {background-color: #ffcccc;}
99.200942% {background-color: #eee;}
99.250942% {background-color: #eee;}
99.250943% {background-color: #ffcccc;}
99.300943% {background-color: #ffcccc;}
99.300944% {background-color: #eee;}
99.450944% {background-color: #eee;}
99.500944% {background-color: #eee;}
99.500945% {background-color: #ffcccc;}
99.550945% {background-color: #ffcccc;}
99.550946% {background-color: #eee;}
99.700946% {background-color: #eee;}
99.750946% {background-color: #eee;}
99.750947% {background-color: #ffcccc;}
99.800947% {background-color: #ffcccc;}
99.800948% {background-color: #eee;}
99.950948% {background-color: #eee;}
100.000948% {background-color: #eee;}
100.000949% {background-color: #ffcccc;}
100.050949% {background-color: #ffcccc;}
100.050950% {background-color: #eee;}
}

@keyframes Pulse {
  0.0% {background-color: #ffcccc;}
  0.5% {background-color: #fff;}
  1.0% {background-color: #ffcccc;}
  1.5% {background-color: #fff;}
  2.0% {background-color: #ffcccc;}
  2.5% {background-color: #fff;}
  3.0% {background-color: #ffcccc;}
  3.5% {background-color: #fff;}
  4.0% {background-color: #ffcccc;}
  4.5% {background-color: #fff;}
  5.0% {background-color: #ffcccc;}
  5.5% {background-color: #fff;}
  6.0% {background-color: #ffcccc;}
  6.5% {background-color: #fff;}
  7.0% {background-color: #ffcccc;}
  7.5% {background-color: #fff;}
  8.0% {background-color: #ffcccc;}
  8.5% {background-color: #fff;}
  9.0% {background-color: #ffcccc;}
  9.5% {background-color: #fff;}
  10.0% {background-color: #ffcccc;}
  10.5% {background-color: #fff;}
  11.0% {background-color: #ffcccc;}
  11.5% {background-color: #fff;}
  12.0% {background-color: #ffcccc;}
  12.5% {background-color: #fff;}
  13.0% {background-color: #ffcccc;}
  13.5% {background-color: #fff;}
  14.0% {background-color: #ffcccc;}
  14.5% {background-color: #fff;}
  15.0% {background-color: #ffcccc;}
  15.5% {background-color: #fff;}
  16.0% {background-color: #ffcccc;}
  16.5% {background-color: #fff;}
  17.0% {background-color: #ffcccc;}
  17.5% {background-color: #fff;}
  18.0% {background-color: #ffcccc;}
  18.5% {background-color: #fff;}
  19.0% {background-color: #ffcccc;}
  19.5% {background-color: #fff;}
  20.0% {background-color: #ffcccc;}
  20.5% {background-color: #fff;}
  21.0% {background-color: #ffcccc;}
  21.5% {background-color: #fff;}
  22.0% {background-color: #ffcccc;}
  22.5% {background-color: #fff;}
  23.0% {background-color: #ffcccc;}
  23.5% {background-color: #fff;}
  24.0% {background-color: #ffcccc;}
  24.5% {background-color: #fff;}
  25.0% {background-color: #ffcccc;}
  25.5% {background-color: #fff;}
  26.0% {background-color: #ffcccc;}
  26.5% {background-color: #fff;}
  27.0% {background-color: #ffcccc;}
  27.5% {background-color: #fff;}
  28.0% {background-color: #ffcccc;}
  28.5% {background-color: #fff;}
  29.0% {background-color: #ffcccc;}
  29.5% {background-color: #fff;}
  30.0% {background-color: #ffcccc;}
  30.5% {background-color: #fff;}
  31.0% {background-color: #ffcccc;}
  31.5% {background-color: #fff;}
  32.0% {background-color: #ffcccc;}
  32.5% {background-color: #fff;}
  33.0% {background-color: #ffcccc;}
  33.5% {background-color: #fff;}
  34.0% {background-color: #ffcccc;}
  34.5% {background-color: #fff;}
  35.0% {background-color: #ffcccc;}
  35.5% {background-color: #fff;}
  36.0% {background-color: #ffcccc;}
  36.5% {background-color: #fff;}
  37.0% {background-color: #ffcccc;}
  37.5% {background-color: #fff;}
  38.0% {background-color: #ffcccc;}
  38.5% {background-color: #fff;}
  39.0% {background-color: #ffcccc;}
  39.5% {background-color: #fff;}
  40.0% {background-color: #ffcccc;}
  40.5% {background-color: #fff;}
  41.0% {background-color: #ffcccc;}
  41.5% {background-color: #fff;}
  42.0% {background-color: #ffcccc;}
  42.5% {background-color: #fff;}
  43.0% {background-color: #ffcccc;}
  43.5% {background-color: #fff;}
  44.0% {background-color: #ffcccc;}
  44.5% {background-color: #fff;}
  45.0% {background-color: #ffcccc;}
  45.5% {background-color: #fff;}
  46.0% {background-color: #ffcccc;}
  46.5% {background-color: #fff;}
  47.0% {background-color: #ffcccc;}
  47.5% {background-color: #fff;}
  48.0% {background-color: #ffcccc;}
  48.5% {background-color: #fff;}
  49.0% {background-color: #ffcccc;}
  49.5% {background-color: #fff;}
  50.0% {background-color: #ffcccc;}
  50.5% {background-color: #fff;}
  51.0% {background-color: #ffcccc;}
  51.5% {background-color: #fff;}
  52.0% {background-color: #ffcccc;}
  52.5% {background-color: #fff;}
  53.0% {background-color: #ffcccc;}
  53.5% {background-color: #fff;}
  54.0% {background-color: #ffcccc;}
  54.5% {background-color: #fff;}
  55.0% {background-color: #ffcccc;}
  55.5% {background-color: #fff;}
  56.0% {background-color: #ffcccc;}
  56.5% {background-color: #fff;}
  57.0% {background-color: #ffcccc;}
  57.5% {background-color: #fff;}
  58.0% {background-color: #ffcccc;}
  58.5% {background-color: #fff;}
  59.0% {background-color: #ffcccc;}
  59.5% {background-color: #fff;}
  60.0% {background-color: #ffcccc;}
  60.5% {background-color: #fff;}
  61.5% {background-color: #fff;}
  61.550000% {background-color: #fff;}
  61.550001% {background-color: #ffcccc;}
  61.600001% {background-color: #ffcccc;}
  61.600002% {background-color: #fff;}
  61.650002% {background-color: #fff;}
  61.650003% {background-color: #ffcccc;}
  61.800003% {background-color: #ffcccc;}
  61.800004% {background-color: #fff;}
  61.850004% {background-color: #fff;}
  61.850005% {background-color: #ffcccc;}
  62.000005% {background-color: #ffcccc;}
  62.000006% {background-color: #fff;}
  62.050006% {background-color: #fff;}
  62.050007% {background-color: #ffcccc;}
  62.100007% {background-color: #ffcccc;}
  62.100008% {background-color: #fff;}
  62.250008% {background-color: #fff;}
  62.300008% {background-color: #fff;}
  62.300009% {background-color: #ffcccc;}
  62.350009% {background-color: #ffcccc;}
  62.350010% {background-color: #fff;}
  62.400010% {background-color: #fff;}
  62.400011% {background-color: #ffcccc;}
  62.550011% {background-color: #ffcccc;}
  62.550012% {background-color: #fff;}
  62.700012% {background-color: #fff;}
  62.750012% {background-color: #fff;}
  62.750013% {background-color: #ffcccc;}
  62.900013% {background-color: #ffcccc;}
  62.900014% {background-color: #fff;}
  63.050014% {background-color: #fff;}
  63.100014% {background-color: #fff;}
  63.100015% {background-color: #ffcccc;}
  63.150015% {background-color: #ffcccc;}
  63.150016% {background-color: #fff;}
  63.200016% {background-color: #fff;}
  63.200017% {background-color: #ffcccc;}
  63.250017% {background-color: #ffcccc;}
  63.250018% {background-color: #fff;}
  63.400018% {background-color: #fff;}
  63.450018% {background-color: #fff;}
  63.450019% {background-color: #ffcccc;}
  63.500019% {background-color: #ffcccc;}
  63.500020% {background-color: #fff;}
  63.650020% {background-color: #fff;}
  63.700020% {background-color: #fff;}
  63.700021% {background-color: #ffcccc;}
  63.850021% {background-color: #ffcccc;}
  63.850022% {background-color: #fff;}
  63.900022% {background-color: #fff;}
  63.900023% {background-color: #ffcccc;}
  63.950023% {background-color: #ffcccc;}
  63.950024% {background-color: #fff;}
  64.100024% {background-color: #fff;}
  64.150024% {background-color: #fff;}
  64.150025% {background-color: #ffcccc;}
  64.300025% {background-color: #ffcccc;}
  64.300026% {background-color: #fff;}
  64.350026% {background-color: #fff;}
  64.350027% {background-color: #ffcccc;}
  64.400027% {background-color: #ffcccc;}
  64.400028% {background-color: #fff;}
  64.450028% {background-color: #fff;}
  64.450029% {background-color: #ffcccc;}
  64.600029% {background-color: #ffcccc;}
  64.600030% {background-color: #fff;}
  64.650030% {background-color: #fff;}
  64.650031% {background-color: #ffcccc;}
  64.700031% {background-color: #ffcccc;}
  64.700032% {background-color: #fff;}
  64.850032% {background-color: #fff;}
  64.900032% {background-color: #fff;}
  64.900033% {background-color: #ffcccc;}
  64.950033% {background-color: #ffcccc;}
  64.950034% {background-color: #fff;}
  65.300034% {background-color: #fff;}
  65.350034% {background-color: #fff;}
  65.350035% {background-color: #ffcccc;}
  65.400035% {background-color: #ffcccc;}
  65.400036% {background-color: #fff;}
  65.450036% {background-color: #fff;}
  65.450037% {background-color: #ffcccc;}
  65.500037% {background-color: #ffcccc;}
  65.500038% {background-color: #fff;}
  65.650038% {background-color: #fff;}
  65.700038% {background-color: #fff;}
  65.700039% {background-color: #ffcccc;}
  65.750039% {background-color: #ffcccc;}
  65.750040% {background-color: #fff;}
  65.800040% {background-color: #fff;}
  65.800041% {background-color: #ffcccc;}
  65.850041% {background-color: #ffcccc;}
  65.850042% {background-color: #fff;}
  65.900042% {background-color: #fff;}
  65.900043% {background-color: #ffcccc;}
  65.950043% {background-color: #ffcccc;}
  65.950044% {background-color: #fff;}
  66.300044% {background-color: #fff;}
  66.350044% {background-color: #fff;}
  66.350045% {background-color: #ffcccc;}
  66.500045% {background-color: #ffcccc;}
  66.500046% {background-color: #fff;}
  66.550046% {background-color: #fff;}
  66.550047% {background-color: #ffcccc;}
  66.600047% {background-color: #ffcccc;}
  66.600048% {background-color: #fff;}
  66.650048% {background-color: #fff;}
  66.650049% {background-color: #ffcccc;}
  66.800049% {background-color: #ffcccc;}
  66.800050% {background-color: #fff;}
  66.950050% {background-color: #fff;}
  67.000050% {background-color: #fff;}
  67.000051% {background-color: #ffcccc;}
  67.050051% {background-color: #ffcccc;}
  67.050052% {background-color: #fff;}
  67.200052% {background-color: #fff;}
  67.250052% {background-color: #fff;}
  67.250053% {background-color: #ffcccc;}
  67.400053% {background-color: #ffcccc;}
  67.400054% {background-color: #fff;}
  67.450054% {background-color: #fff;}
  67.450055% {background-color: #ffcccc;}
  67.500055% {background-color: #ffcccc;}
  67.500056% {background-color: #fff;}
  67.550056% {background-color: #fff;}
  67.550057% {background-color: #ffcccc;}
  67.700057% {background-color: #ffcccc;}
  67.700058% {background-color: #fff;}
  67.750058% {background-color: #fff;}
  67.750059% {background-color: #ffcccc;}
  67.900059% {background-color: #ffcccc;}
  67.900060% {background-color: #fff;}
  68.250060% {background-color: #fff;}
  68.300060% {background-color: #fff;}
  68.300061% {background-color: #ffcccc;}
  68.450061% {background-color: #ffcccc;}
  68.450062% {background-color: #fff;}
  68.500062% {background-color: #fff;}
  68.500063% {background-color: #ffcccc;}
  68.650063% {background-color: #ffcccc;}
  68.650064% {background-color: #fff;}
  68.700064% {background-color: #fff;}
  68.700065% {background-color: #ffcccc;}
  68.850065% {background-color: #ffcccc;}
  68.850066% {background-color: #fff;}
  68.900066% {background-color: #fff;}
  68.900067% {background-color: #ffcccc;}
  68.950067% {background-color: #ffcccc;}
  68.950068% {background-color: #fff;}
  69.000068% {background-color: #fff;}
  69.000069% {background-color: #ffcccc;}
  69.050069% {background-color: #ffcccc;}
  69.050070% {background-color: #fff;}
  69.200070% {background-color: #fff;}
  69.250070% {background-color: #fff;}
  69.250071% {background-color: #ffcccc;}
  69.300071% {background-color: #ffcccc;}
  69.300072% {background-color: #fff;}
  69.350072% {background-color: #fff;}
  69.350073% {background-color: #ffcccc;}
  69.400073% {background-color: #ffcccc;}
  69.400074% {background-color: #fff;}
  69.450074% {background-color: #fff;}
  69.450075% {background-color: #ffcccc;}
  69.500075% {background-color: #ffcccc;}
  69.500076% {background-color: #fff;}
  69.550076% {background-color: #fff;}
  69.550077% {background-color: #ffcccc;}
  69.700077% {background-color: #ffcccc;}
  69.700078% {background-color: #fff;}
  69.850078% {background-color: #fff;}
  69.900078% {background-color: #fff;}
  69.900079% {background-color: #ffcccc;}
  69.950079% {background-color: #ffcccc;}
  69.950080% {background-color: #fff;}
  70.100080% {background-color: #fff;}
  70.150080% {background-color: #fff;}
  70.150081% {background-color: #ffcccc;}
  70.300081% {background-color: #ffcccc;}
  70.300082% {background-color: #fff;}
  70.350082% {background-color: #fff;}
  70.350083% {background-color: #ffcccc;}
  70.500083% {background-color: #ffcccc;}
  70.500084% {background-color: #fff;}
  70.650084% {background-color: #fff;}
  70.700084% {background-color: #fff;}
  70.700085% {background-color: #ffcccc;}
  70.850085% {background-color: #ffcccc;}
  70.850086% {background-color: #fff;}
  70.900086% {background-color: #fff;}
  70.900087% {background-color: #ffcccc;}
  71.050087% {background-color: #ffcccc;}
  71.050088% {background-color: #fff;}
  71.100088% {background-color: #fff;}
  71.100089% {background-color: #ffcccc;}
  71.250089% {background-color: #ffcccc;}
  71.250090% {background-color: #fff;}
  71.300090% {background-color: #fff;}
  71.300091% {background-color: #ffcccc;}
  71.350091% {background-color: #ffcccc;}
  71.350092% {background-color: #fff;}
  71.400092% {background-color: #fff;}
  71.400093% {background-color: #ffcccc;}
  71.450093% {background-color: #ffcccc;}
  71.450094% {background-color: #fff;}
  71.600094% {background-color: #fff;}
  71.650094% {background-color: #fff;}
  71.650095% {background-color: #ffcccc;}
  71.800095% {background-color: #ffcccc;}
  71.800096% {background-color: #fff;}
  71.850096% {background-color: #fff;}
  71.850097% {background-color: #ffcccc;}
  71.900097% {background-color: #ffcccc;}
  71.900098% {background-color: #fff;}
  71.950098% {background-color: #fff;}
  71.950099% {background-color: #ffcccc;}
  72.000099% {background-color: #ffcccc;}
  72.000100% {background-color: #fff;}
  72.050100% {background-color: #fff;}
  72.050101% {background-color: #ffcccc;}
  72.100101% {background-color: #ffcccc;}
  72.100102% {background-color: #fff;}
  72.150102% {background-color: #fff;}
  72.150103% {background-color: #ffcccc;}
  72.200103% {background-color: #ffcccc;}
  72.200104% {background-color: #fff;}
  72.250104% {background-color: #fff;}
  72.250105% {background-color: #ffcccc;}
  72.400105% {background-color: #ffcccc;}
  72.400106% {background-color: #fff;}
  72.550106% {background-color: #fff;}
  72.600106% {background-color: #fff;}
  72.600107% {background-color: #ffcccc;}
  72.750107% {background-color: #ffcccc;}
  72.750108% {background-color: #fff;}
  72.800108% {background-color: #fff;}
  72.800109% {background-color: #ffcccc;}
  72.850109% {background-color: #ffcccc;}
  72.850110% {background-color: #fff;}
  73.000110% {background-color: #fff;}
  73.050110% {background-color: #fff;}
  73.050111% {background-color: #ffcccc;}
  73.100111% {background-color: #ffcccc;}
  73.100112% {background-color: #fff;}
  73.250112% {background-color: #fff;}
  73.300112% {background-color: #fff;}
  73.300113% {background-color: #ffcccc;}
  73.450113% {background-color: #ffcccc;}
  73.450114% {background-color: #fff;}
  73.500114% {background-color: #fff;}
  73.500115% {background-color: #ffcccc;}
  73.550115% {background-color: #ffcccc;}
  73.550116% {background-color: #fff;}
  73.600116% {background-color: #fff;}
  73.600117% {background-color: #ffcccc;}
  73.650117% {background-color: #ffcccc;}
  73.650118% {background-color: #fff;}
  73.700118% {background-color: #fff;}
  73.700119% {background-color: #ffcccc;}
  73.750119% {background-color: #ffcccc;}
  73.750120% {background-color: #fff;}
  73.800120% {background-color: #fff;}
  73.800121% {background-color: #ffcccc;}
  73.850121% {background-color: #ffcccc;}
  73.850122% {background-color: #fff;}
  74.000122% {background-color: #fff;}
  74.050122% {background-color: #fff;}
  74.050123% {background-color: #ffcccc;}
  74.100123% {background-color: #ffcccc;}
  74.100124% {background-color: #fff;}
  74.150124% {background-color: #fff;}
  74.150125% {background-color: #ffcccc;}
  74.300125% {background-color: #ffcccc;}
  74.300126% {background-color: #fff;}
  74.450126% {background-color: #fff;}
  74.500126% {background-color: #fff;}
  74.500127% {background-color: #ffcccc;}
  74.550127% {background-color: #ffcccc;}
  74.550128% {background-color: #fff;}
  74.600128% {background-color: #fff;}
  74.600129% {background-color: #ffcccc;}
  74.650129% {background-color: #ffcccc;}
  74.650130% {background-color: #fff;}
  74.700130% {background-color: #fff;}
  74.700131% {background-color: #ffcccc;}
  74.750131% {background-color: #ffcccc;}
  74.750132% {background-color: #fff;}
  74.800132% {background-color: #fff;}
  74.800133% {background-color: #ffcccc;}
  74.850133% {background-color: #ffcccc;}
  74.850134% {background-color: #fff;}
  75.000134% {background-color: #fff;}
  75.050134% {background-color: #fff;}
  75.050135% {background-color: #ffcccc;}
  75.200135% {background-color: #ffcccc;}
  75.200136% {background-color: #fff;}
  75.250136% {background-color: #fff;}
  75.250137% {background-color: #ffcccc;}
  75.300137% {background-color: #ffcccc;}
  75.300138% {background-color: #fff;}
  75.350138% {background-color: #fff;}
  75.350139% {background-color: #ffcccc;}
  75.400139% {background-color: #ffcccc;}
  75.400140% {background-color: #fff;}
  75.450140% {background-color: #fff;}
  75.450141% {background-color: #ffcccc;}
  75.500141% {background-color: #ffcccc;}
  75.500142% {background-color: #fff;}
  75.550142% {background-color: #fff;}
  75.550143% {background-color: #ffcccc;}
  75.600143% {background-color: #ffcccc;}
  75.600144% {background-color: #fff;}
  75.650144% {background-color: #fff;}
  75.650145% {background-color: #ffcccc;}
  75.800145% {background-color: #ffcccc;}
  75.800146% {background-color: #fff;}
  75.950146% {background-color: #fff;}
  76.000146% {background-color: #fff;}
  76.000147% {background-color: #ffcccc;}
  76.050147% {background-color: #ffcccc;}
  76.050148% {background-color: #fff;}
  76.100148% {background-color: #fff;}
  76.100149% {background-color: #ffcccc;}
  76.150149% {background-color: #ffcccc;}
  76.150150% {background-color: #fff;}
  76.200150% {background-color: #fff;}
  76.200151% {background-color: #ffcccc;}
  76.250151% {background-color: #ffcccc;}
  76.250152% {background-color: #fff;}
  76.300152% {background-color: #fff;}
  76.300153% {background-color: #ffcccc;}
  76.350153% {background-color: #ffcccc;}
  76.350154% {background-color: #fff;}
  76.400154% {background-color: #fff;}
  76.400155% {background-color: #ffcccc;}
  76.450155% {background-color: #ffcccc;}
  76.450156% {background-color: #fff;}
  76.600156% {background-color: #fff;}
  76.650156% {background-color: #fff;}
  76.650157% {background-color: #ffcccc;}
  76.700157% {background-color: #ffcccc;}
  76.700158% {background-color: #fff;}
  76.750158% {background-color: #fff;}
  76.750159% {background-color: #ffcccc;}
  76.800159% {background-color: #ffcccc;}
  76.800160% {background-color: #fff;}
  76.850160% {background-color: #fff;}
  76.850161% {background-color: #ffcccc;}
  76.900161% {background-color: #ffcccc;}
  76.900162% {background-color: #fff;}
  76.950162% {background-color: #fff;}
  76.950163% {background-color: #ffcccc;}
  77.000163% {background-color: #ffcccc;}
  77.000164% {background-color: #fff;}
  77.050164% {background-color: #fff;}
  77.050165% {background-color: #ffcccc;}
  77.100165% {background-color: #ffcccc;}
  77.100166% {background-color: #fff;}
  77.250166% {background-color: #fff;}
  77.300166% {background-color: #fff;}
  77.300167% {background-color: #ffcccc;}
  77.450167% {background-color: #ffcccc;}
  77.450168% {background-color: #fff;}
  77.500168% {background-color: #fff;}
  77.500169% {background-color: #ffcccc;}
  77.550169% {background-color: #ffcccc;}
  77.550170% {background-color: #fff;}
  77.600170% {background-color: #fff;}
  77.600171% {background-color: #ffcccc;}
  77.750171% {background-color: #ffcccc;}
  77.750172% {background-color: #fff;}
  77.900172% {background-color: #fff;}
  77.950172% {background-color: #fff;}
  77.950173% {background-color: #ffcccc;}
  78.100173% {background-color: #ffcccc;}
  78.100174% {background-color: #fff;}
  78.150174% {background-color: #fff;}
  78.150175% {background-color: #ffcccc;}
  78.300175% {background-color: #ffcccc;}
  78.300176% {background-color: #fff;}
  78.350176% {background-color: #fff;}
  78.350177% {background-color: #ffcccc;}
  78.500177% {background-color: #ffcccc;}
  78.500178% {background-color: #fff;}
  78.550178% {background-color: #fff;}
  78.550179% {background-color: #ffcccc;}
  78.700179% {background-color: #ffcccc;}
  78.700180% {background-color: #fff;}
  78.750180% {background-color: #fff;}
  78.750181% {background-color: #ffcccc;}
  78.900181% {background-color: #ffcccc;}
  78.900182% {background-color: #fff;}
  79.050182% {background-color: #fff;}
  79.100182% {background-color: #fff;}
  79.100183% {background-color: #ffcccc;}
  79.250183% {background-color: #ffcccc;}
  79.250184% {background-color: #fff;}
  79.600184% {background-color: #fff;}
  79.650184% {background-color: #fff;}
  79.650185% {background-color: #ffcccc;}
  79.700185% {background-color: #ffcccc;}
  79.700186% {background-color: #fff;}
  79.750186% {background-color: #fff;}
  79.750187% {background-color: #ffcccc;}
  79.800187% {background-color: #ffcccc;}
  79.800188% {background-color: #fff;}
  79.850188% {background-color: #fff;}
  79.850189% {background-color: #ffcccc;}
  79.900189% {background-color: #ffcccc;}
  79.900190% {background-color: #fff;}
  80.050190% {background-color: #fff;}
  80.100190% {background-color: #fff;}
  80.100191% {background-color: #ffcccc;}
  80.250191% {background-color: #ffcccc;}
  80.250192% {background-color: #fff;}
  80.400192% {background-color: #fff;}
  80.450192% {background-color: #fff;}
  80.450193% {background-color: #ffcccc;}
  80.500193% {background-color: #ffcccc;}
  80.500194% {background-color: #fff;}
  80.650194% {background-color: #fff;}
  80.700194% {background-color: #fff;}
  80.700195% {background-color: #ffcccc;}
  80.750195% {background-color: #ffcccc;}
  80.750196% {background-color: #fff;}
  80.800196% {background-color: #fff;}
  80.800197% {background-color: #ffcccc;}
  80.950197% {background-color: #ffcccc;}
  80.950198% {background-color: #fff;}
  81.100198% {background-color: #fff;}
  81.150198% {background-color: #fff;}
  81.150199% {background-color: #ffcccc;}
  81.300199% {background-color: #ffcccc;}
  81.300200% {background-color: #fff;}
  81.350200% {background-color: #fff;}
  81.350201% {background-color: #ffcccc;}
  81.500201% {background-color: #ffcccc;}
  81.500202% {background-color: #fff;}
  82% {background-color: #ffcccc;}
  82.5% {background-color: #fff;}
  83.0% {background-color: #ffcccc;}
  83.5% {background-color: #fff;}
  84.0% {background-color: #ffcccc;}
  84.5% {background-color: #fff;}
  85.0% {background-color: #ffcccc;}
  85.5% {background-color: #fff;}
  86.0% {background-color: #ffcccc;}
  86.5% {background-color: #fff;}
  87.0% {background-color: #ffcccc;}
  87.5% {background-color: #fff;}
  88.0% {background-color: #ffcccc;}
  88.5% {background-color: #fff;}
  89.0% {background-color: #ffcccc;}
  89.5% {background-color: #fff;}
  90.0% {background-color: #ffcccc;}
  90.5% {background-color: #fff;}
  91.0% {background-color: #ffcccc;}
  91.5% {background-color: #fff;}
  92.0% {background-color: #ffcccc;}
  92.5% {background-color: #fff;}
  93.0% {background-color: #ffcccc;}
  93.5% {background-color: #fff;}
  94.0% {background-color: #ffcccc;}
  94.5% {background-color: #fff;}
  95.0% {background-color: #ffcccc;}
  95.5% {background-color: #fff;}
  96.0% {background-color: #ffcccc;}
  96.5% {background-color: #fff;}
  97.0% {background-color: #ffcccc;}
  97.5% {background-color: #fff;}
  98.0% {background-color: #ffcccc;}
  98.5% {background-color: #fff;}
  99.0% {background-color: #ffcccc;}
  99.5% {background-color: #fff;}
  100.0% {background-color: #ffcccc;}
}

.tableAnimationOdd {
  animation-name: flashOdd;
  animation-timing-function: linear;
  animation-duration: 0.35s;
  -webkit-animation-duration: 0.35s;
  -moz-animation-duration: 0.35s;
  -o-animation-duration: 0.35s;
}

.tableAnimationEven {
  animation-name: flashEven;
  animation-timing-function: linear;
  animation-duration: 0.35s;
  -webkit-animation-duration: 0.35s;
  -moz-animation-duration: 0.35s;
  -o-animation-duration: 0.35s;
}

table.matty tbody tr.tableRowOdd:not(.tableRow):hover td:not(:nth-child(2)) {
  animation-name: PulseOdd;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 4s;
  -webkit-animation-duration: 4s;
  -moz-animation-duration: 4s;
  -o-animation-duration: 4s;
  animation-delay: 1s;
  background-color: #ffcccc;
}

table.matty tbody tr.tableRowEven:not(.tableRow):hover td:not(:nth-child(2)) {
  animation-name: PulseEven;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 4s;
  -webkit-animation-duration: 4s;
  -moz-animation-duration: 4s;
  -o-animation-duration: 4s;
  animation-delay: 1s;
  background-color: #ffcccc;
}

table.matty tbody tr.tableRow:hover td:not(:nth-child(2)) {
  animation-name: Pulse;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 200s;
  -webkit-animation-duration: 200s;
  -moz-animation-duration: 200s;
  -o-animation-duration: 200s;
  animation-delay: 1s;
  background-color: #ffcccc;
}

table.matty tbody tr.tableRowCP:hover td:not(:nth-child(2)) {
  animation-name: PulseCP;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 200s;
  -webkit-animation-duration: 200s;
  -moz-animation-duration: 200s;
  -o-animation-duration: 200s;
  animation-delay: 3s;
  background-color: #ffcccc;
}

.tableRowOdd {
  background-color: #eee;
}

.tableRowEven {
  background-color: #fff;
}

.tableRow {
  background-color: #fff;
}

.tableRowCP {
  background-color: #eee;
}

table.mattyalt tbody tr:hover td {
  background-color: #ffcccc !important;
}
table.mattyalt tbody tr:nth-child(odd) td {
  background-color: #eee;
}
table.mattyalt tbody tr:nth-child(even) td {
  background-color: #fff;
}

/* Dialog UI Styles */

.ui-dialog {
  text-align: center;
}

.ui-dialog-content.ui-widget-content {
  font-size: 25px;
  text-align: center;
  color: white !important;
}

.ui-effects-transfer {
  border: 2px solid black;
}
.ui-widget-overlay {
  animation-name: fadeIn;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
}

.ui-dialog {
  background: url(https://i.imgur.com/323RLD2.png) !important;
  border: 1px red;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  text-align: center;
  float: none !important;
  background: url(https://i.imgur.com/323RLD2.png) !important;
}

.ui-dialog-buttonpane {
  background: url(https://i.imgur.com/323RLD2.png) !important;
}

.ui-widget-header a {
  color: #b02e2e !important;
}

.ui-widget-content a {
  color: #b02e2e !important;
}

.ui-dialog-buttonpane.ui-widget-content.ui-helper-clearfix {
  border: 0px !important;
}