
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_1feff52caba8575a7204f864.woff')format("woff");}.ff1{font-family:ff1;line-height:0.747000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3510f21884c28bff5add620c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_57844f6dcaa979e50afc431f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d8fba5bd2abdd38abf4a3003.woff')format("woff");}.ff4{font-family:ff4;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.262993,-0.045463,0.042585,0.246346,0,0);-ms-transform:matrix(0.262993,-0.045463,0.042585,0.246346,0,0);-webkit-transform:matrix(0.262993,-0.045463,0.042585,0.246346,0,0);}
.m45{transform:matrix(0.262994,0.045443,-0.042568,0.246349,0,0);-ms-transform:matrix(0.262994,0.045443,-0.042568,0.246349,0,0);-webkit-transform:matrix(0.262994,0.045443,-0.042568,0.246349,0,0);}
.m6d{transform:matrix(0.263011,-0.045353,0.042482,0.246364,0,0);-ms-transform:matrix(0.263011,-0.045353,0.042482,0.246364,0,0);-webkit-transform:matrix(0.263011,-0.045353,0.042482,0.246364,0,0);}
.mc{transform:matrix(0.263013,-0.045343,0.042471,0.246366,0,0);-ms-transform:matrix(0.263013,-0.045343,0.042471,0.246366,0,0);-webkit-transform:matrix(0.263013,-0.045343,0.042471,0.246366,0,0);}
.m5a{transform:matrix(0.263020,-0.045298,0.042431,0.246373,0,0);-ms-transform:matrix(0.263020,-0.045298,0.042431,0.246373,0,0);-webkit-transform:matrix(0.263020,-0.045298,0.042431,0.246373,0,0);}
.m97{transform:matrix(0.263023,-0.045289,0.042422,0.246374,0,0);-ms-transform:matrix(0.263023,-0.045289,0.042422,0.246374,0,0);-webkit-transform:matrix(0.263023,-0.045289,0.042422,0.246374,0,0);}
.m6e{transform:matrix(0.263030,-0.045231,0.042368,0.246384,0,0);-ms-transform:matrix(0.263030,-0.045231,0.042368,0.246384,0,0);-webkit-transform:matrix(0.263030,-0.045231,0.042368,0.246384,0,0);}
.md{transform:matrix(0.263034,-0.045220,0.042358,0.246386,0,0);-ms-transform:matrix(0.263034,-0.045220,0.042358,0.246386,0,0);-webkit-transform:matrix(0.263034,-0.045220,0.042358,0.246386,0,0);}
.m46{transform:matrix(0.263081,0.044939,-0.042096,0.246430,0,0);-ms-transform:matrix(0.263081,0.044939,-0.042096,0.246430,0,0);-webkit-transform:matrix(0.263081,0.044939,-0.042096,0.246430,0,0);}
.m66{transform:matrix(0.263106,0.044802,-0.041965,0.246453,0,0);-ms-transform:matrix(0.263106,0.044802,-0.041965,0.246453,0,0);-webkit-transform:matrix(0.263106,0.044802,-0.041965,0.246453,0,0);}
.m29{transform:matrix(0.263132,0.044651,-0.041825,0.246477,0,0);-ms-transform:matrix(0.263132,0.044651,-0.041825,0.246477,0,0);-webkit-transform:matrix(0.263132,0.044651,-0.041825,0.246477,0,0);}
.m44{transform:matrix(0.263135,0.044632,-0.041808,0.246479,0,0);-ms-transform:matrix(0.263135,0.044632,-0.041808,0.246479,0,0);-webkit-transform:matrix(0.263135,0.044632,-0.041808,0.246479,0,0);}
.m5b{transform:matrix(0.263150,-0.044539,0.041720,0.246494,0,0);-ms-transform:matrix(0.263150,-0.044539,0.041720,0.246494,0,0);-webkit-transform:matrix(0.263150,-0.044539,0.041720,0.246494,0,0);}
.m78{transform:matrix(0.263152,0.044529,-0.041709,0.246496,0,0);-ms-transform:matrix(0.263152,0.044529,-0.041709,0.246496,0,0);-webkit-transform:matrix(0.263152,0.044529,-0.041709,0.246496,0,0);}
.m67{transform:matrix(0.263189,0.044303,-0.041501,0.246531,0,0);-ms-transform:matrix(0.263189,0.044303,-0.041501,0.246531,0,0);-webkit-transform:matrix(0.263189,0.044303,-0.041501,0.246531,0,0);}
.m77{transform:matrix(0.263195,0.044269,-0.041466,0.246537,0,0);-ms-transform:matrix(0.263195,0.044269,-0.041466,0.246537,0,0);-webkit-transform:matrix(0.263195,0.044269,-0.041466,0.246537,0,0);}
.mb{transform:matrix(0.263208,-0.044193,0.041397,0.246549,0,0);-ms-transform:matrix(0.263208,-0.044193,0.041397,0.246549,0,0);-webkit-transform:matrix(0.263208,-0.044193,0.041397,0.246549,0,0);}
.m96{transform:matrix(0.263245,-0.043973,0.041190,0.246583,0,0);-ms-transform:matrix(0.263245,-0.043973,0.041190,0.246583,0,0);-webkit-transform:matrix(0.263245,-0.043973,0.041190,0.246583,0,0);}
.me{transform:matrix(0.263268,-0.043839,0.041065,0.246604,0,0);-ms-transform:matrix(0.263268,-0.043839,0.041065,0.246604,0,0);-webkit-transform:matrix(0.263268,-0.043839,0.041065,0.246604,0,0);}
.ma2{transform:matrix(0.263335,0.043422,-0.040674,0.246669,0,0);-ms-transform:matrix(0.263335,0.043422,-0.040674,0.246669,0,0);-webkit-transform:matrix(0.263335,0.043422,-0.040674,0.246669,0,0);}
.m47{transform:matrix(0.263368,0.043240,-0.040502,0.246697,0,0);-ms-transform:matrix(0.263368,0.043240,-0.040502,0.246697,0,0);-webkit-transform:matrix(0.263368,0.043240,-0.040502,0.246697,0,0);}
.m43{transform:matrix(0.263463,0.042654,-0.039955,0.246787,0,0);-ms-transform:matrix(0.263463,0.042654,-0.039955,0.246787,0,0);-webkit-transform:matrix(0.263463,0.042654,-0.039955,0.246787,0,0);}
.m28{transform:matrix(0.263467,0.042631,-0.039933,0.246790,0,0);-ms-transform:matrix(0.263467,0.042631,-0.039933,0.246790,0,0);-webkit-transform:matrix(0.263467,0.042631,-0.039933,0.246790,0,0);}
.m3d{transform:matrix(0.263488,0.042493,-0.039802,0.246811,0,0);-ms-transform:matrix(0.263488,0.042493,-0.039802,0.246811,0,0);-webkit-transform:matrix(0.263488,0.042493,-0.039802,0.246811,0,0);}
.m98{transform:matrix(0.263555,-0.042076,0.039413,0.246874,0,0);-ms-transform:matrix(0.263555,-0.042076,0.039413,0.246874,0,0);-webkit-transform:matrix(0.263555,-0.042076,0.039413,0.246874,0,0);}
.ma{transform:matrix(0.263580,-0.041911,0.039257,0.246899,0,0);-ms-transform:matrix(0.263580,-0.041911,0.039257,0.246899,0,0);-webkit-transform:matrix(0.263580,-0.041911,0.039257,0.246899,0,0);}
.mf{transform:matrix(0.263667,-0.041363,0.038746,0.246979,0,0);-ms-transform:matrix(0.263667,-0.041363,0.038746,0.246979,0,0);-webkit-transform:matrix(0.263667,-0.041363,0.038746,0.246979,0,0);}
.m5c{transform:matrix(0.263798,-0.040521,0.037957,0.247102,0,0);-ms-transform:matrix(0.263798,-0.040521,0.037957,0.247102,0,0);-webkit-transform:matrix(0.263798,-0.040521,0.037957,0.247102,0,0);}
.m48{transform:matrix(0.263803,0.040504,-0.037940,0.247104,0,0);-ms-transform:matrix(0.263803,0.040504,-0.037940,0.247104,0,0);-webkit-transform:matrix(0.263803,0.040504,-0.037940,0.247104,0,0);}
.m79{transform:matrix(0.263807,0.040475,-0.037913,0.247109,0,0);-ms-transform:matrix(0.263807,0.040475,-0.037913,0.247109,0,0);-webkit-transform:matrix(0.263807,0.040475,-0.037913,0.247109,0,0);}
.m32{transform:matrix(0.263828,-0.040328,0.037775,0.247130,0,0);-ms-transform:matrix(0.263828,-0.040328,0.037775,0.247130,0,0);-webkit-transform:matrix(0.263828,-0.040328,0.037775,0.247130,0,0);}
.m59{transform:matrix(0.263872,-0.040045,0.037511,0.247170,0,0);-ms-transform:matrix(0.263872,-0.040045,0.037511,0.247170,0,0);-webkit-transform:matrix(0.263872,-0.040045,0.037511,0.247170,0,0);}
.m85{transform:matrix(0.263904,-0.039837,0.037316,0.247199,0,0);-ms-transform:matrix(0.263904,-0.039837,0.037316,0.247199,0,0);-webkit-transform:matrix(0.263904,-0.039837,0.037316,0.247199,0,0);}
.m65{transform:matrix(0.263919,0.039729,-0.037215,0.247215,0,0);-ms-transform:matrix(0.263919,0.039729,-0.037215,0.247215,0,0);-webkit-transform:matrix(0.263919,0.039729,-0.037215,0.247215,0,0);}
.m42{transform:matrix(0.263920,0.039727,-0.037213,0.247215,0,0);-ms-transform:matrix(0.263920,0.039727,-0.037213,0.247215,0,0);-webkit-transform:matrix(0.263920,0.039727,-0.037213,0.247215,0,0);}
.m84{transform:matrix(0.264046,-0.038885,0.036424,0.247332,0,0);-ms-transform:matrix(0.264046,-0.038885,0.036424,0.247332,0,0);-webkit-transform:matrix(0.264046,-0.038885,0.036424,0.247332,0,0);}
.m6c{transform:matrix(0.264059,-0.038784,0.036330,0.247346,0,0);-ms-transform:matrix(0.264059,-0.038784,0.036330,0.247346,0,0);-webkit-transform:matrix(0.264059,-0.038784,0.036330,0.247346,0,0);}
.m9{transform:matrix(0.264061,-0.038774,0.036319,0.247348,0,0);-ms-transform:matrix(0.264061,-0.038774,0.036319,0.247348,0,0);-webkit-transform:matrix(0.264061,-0.038774,0.036319,0.247348,0,0);}
.m34{transform:matrix(0.264072,-0.038694,0.036244,0.247359,0,0);-ms-transform:matrix(0.264072,-0.038694,0.036244,0.247359,0,0);-webkit-transform:matrix(0.264072,-0.038694,0.036244,0.247359,0,0);}
.m6f{transform:matrix(0.264161,-0.038091,0.035679,0.247441,0,0);-ms-transform:matrix(0.264161,-0.038091,0.035679,0.247441,0,0);-webkit-transform:matrix(0.264161,-0.038091,0.035679,0.247441,0,0);}
.m10{transform:matrix(0.264162,-0.038080,0.035671,0.247442,0,0);-ms-transform:matrix(0.264162,-0.038080,0.035671,0.247442,0,0);-webkit-transform:matrix(0.264162,-0.038080,0.035671,0.247442,0,0);}
.m49{transform:matrix(0.264309,0.037036,-0.034693,0.247581,0,0);-ms-transform:matrix(0.264309,0.037036,-0.034693,0.247581,0,0);-webkit-transform:matrix(0.264309,0.037036,-0.034693,0.247581,0,0);}
.m3c{transform:matrix(0.264315,0.036996,-0.034655,0.247586,0,0);-ms-transform:matrix(0.264315,0.036996,-0.034655,0.247586,0,0);-webkit-transform:matrix(0.264315,0.036996,-0.034655,0.247586,0,0);}
.m95{transform:matrix(0.264414,-0.036285,0.033987,0.247679,0,0);-ms-transform:matrix(0.264414,-0.036285,0.033987,0.247679,0,0);-webkit-transform:matrix(0.264414,-0.036285,0.033987,0.247679,0,0);}
.m41{transform:matrix(0.264435,0.036137,-0.033850,0.247698,0,0);-ms-transform:matrix(0.264435,0.036137,-0.033850,0.247698,0,0);-webkit-transform:matrix(0.264435,0.036137,-0.033850,0.247698,0,0);}
.m99{transform:matrix(0.264460,-0.035954,0.033678,0.247721,0,0);-ms-transform:matrix(0.264460,-0.035954,0.033678,0.247721,0,0);-webkit-transform:matrix(0.264460,-0.035954,0.033678,0.247721,0,0);}
.m27{transform:matrix(0.264472,0.035860,-0.033590,0.247733,0,0);-ms-transform:matrix(0.264472,0.035860,-0.033590,0.247733,0,0);-webkit-transform:matrix(0.264472,0.035860,-0.033590,0.247733,0,0);}
.m2a{transform:matrix(0.264553,0.035269,-0.033038,0.247807,0,0);-ms-transform:matrix(0.264553,0.035269,-0.033038,0.247807,0,0);-webkit-transform:matrix(0.264553,0.035269,-0.033038,0.247807,0,0);}
.ma1{transform:matrix(0.264569,0.035136,-0.032913,0.247824,0,0);-ms-transform:matrix(0.264569,0.035136,-0.032913,0.247824,0,0);-webkit-transform:matrix(0.264569,0.035136,-0.032913,0.247824,0,0);}
.m76{transform:matrix(0.264579,0.035061,-0.032843,0.247833,0,0);-ms-transform:matrix(0.264579,0.035061,-0.032843,0.247833,0,0);-webkit-transform:matrix(0.264579,0.035061,-0.032843,0.247833,0,0);}
.m8{transform:matrix(0.264586,-0.035022,0.032806,0.247838,0,0);-ms-transform:matrix(0.264586,-0.035022,0.032806,0.247838,0,0);-webkit-transform:matrix(0.264586,-0.035022,0.032806,0.247838,0,0);}
.m11{transform:matrix(0.264677,-0.034318,0.032145,0.247925,0,0);-ms-transform:matrix(0.264677,-0.034318,0.032145,0.247925,0,0);-webkit-transform:matrix(0.264677,-0.034318,0.032145,0.247925,0,0);}
.m31{transform:matrix(0.264695,-0.034187,0.032022,0.247941,0,0);-ms-transform:matrix(0.264695,-0.034187,0.032022,0.247941,0,0);-webkit-transform:matrix(0.264695,-0.034187,0.032022,0.247941,0,0);}
.m68{transform:matrix(0.264718,0.034011,-0.031857,0.247962,0,0);-ms-transform:matrix(0.264718,0.034011,-0.031857,0.247962,0,0);-webkit-transform:matrix(0.264718,0.034011,-0.031857,0.247962,0,0);}
.m4a{transform:matrix(0.264830,0.033124,-0.031028,0.248067,0,0);-ms-transform:matrix(0.264830,0.033124,-0.031028,0.248067,0,0);-webkit-transform:matrix(0.264830,0.033124,-0.031028,0.248067,0,0);}
.m7a{transform:matrix(0.264866,0.032815,-0.030738,0.248103,0,0);-ms-transform:matrix(0.264866,0.032815,-0.030738,0.248103,0,0);-webkit-transform:matrix(0.264866,0.032815,-0.030738,0.248103,0,0);}
.m8d{transform:matrix(0.264887,0.032651,-0.030586,0.248122,0,0);-ms-transform:matrix(0.264887,0.032651,-0.030586,0.248122,0,0);-webkit-transform:matrix(0.264887,0.032651,-0.030586,0.248122,0,0);}
.m40{transform:matrix(0.264941,0.032222,-0.030182,0.248171,0,0);-ms-transform:matrix(0.264941,0.032222,-0.030182,0.248171,0,0);-webkit-transform:matrix(0.264941,0.032222,-0.030182,0.248171,0,0);}
.m26{transform:matrix(0.264978,0.031906,-0.029887,0.248207,0,0);-ms-transform:matrix(0.264978,0.031906,-0.029887,0.248207,0,0);-webkit-transform:matrix(0.264978,0.031906,-0.029887,0.248207,0,0);}
.m7{transform:matrix(0.265090,-0.030983,0.029022,0.248310,0,0);-ms-transform:matrix(0.265090,-0.030983,0.029022,0.248310,0,0);-webkit-transform:matrix(0.265090,-0.030983,0.029022,0.248310,0,0);}
.m70{transform:matrix(0.265162,-0.030330,0.028410,0.248380,0,0);-ms-transform:matrix(0.265162,-0.030330,0.028410,0.248380,0,0);-webkit-transform:matrix(0.265162,-0.030330,0.028410,0.248380,0,0);}
.m12{transform:matrix(0.265166,-0.030321,0.028402,0.248381,0,0);-ms-transform:matrix(0.265166,-0.030321,0.028402,0.248381,0,0);-webkit-transform:matrix(0.265166,-0.030321,0.028402,0.248381,0,0);}
.m5d{transform:matrix(0.265240,-0.029662,0.027786,0.248451,0,0);-ms-transform:matrix(0.265240,-0.029662,0.027786,0.248451,0,0);-webkit-transform:matrix(0.265240,-0.029662,0.027786,0.248451,0,0);}
.m86{transform:matrix(0.265256,-0.029503,0.027635,0.248468,0,0);-ms-transform:matrix(0.265256,-0.029503,0.027635,0.248468,0,0);-webkit-transform:matrix(0.265256,-0.029503,0.027635,0.248468,0,0);}
.m64{transform:matrix(0.265271,0.029385,-0.027526,0.248480,0,0);-ms-transform:matrix(0.265271,0.029385,-0.027526,0.248480,0,0);-webkit-transform:matrix(0.265271,0.029385,-0.027526,0.248480,0,0);}
.m4b{transform:matrix(0.265319,0.028939,-0.027107,0.248526,0,0);-ms-transform:matrix(0.265319,0.028939,-0.027107,0.248526,0,0);-webkit-transform:matrix(0.265319,0.028939,-0.027107,0.248526,0,0);}
.m58{transform:matrix(0.265353,-0.028627,0.026815,0.248558,0,0);-ms-transform:matrix(0.265353,-0.028627,0.026815,0.248558,0,0);-webkit-transform:matrix(0.265353,-0.028627,0.026815,0.248558,0,0);}
.m3f{transform:matrix(0.265399,0.028206,-0.026420,0.248600,0,0);-ms-transform:matrix(0.265399,0.028206,-0.026420,0.248600,0,0);-webkit-transform:matrix(0.265399,0.028206,-0.026420,0.248600,0,0);}
.m25{transform:matrix(0.265434,0.027871,-0.026108,0.248633,0,0);-ms-transform:matrix(0.265434,0.027871,-0.026108,0.248633,0,0);-webkit-transform:matrix(0.265434,0.027871,-0.026108,0.248633,0,0);}
.m6{transform:matrix(0.265545,-0.026793,0.025097,0.248737,0,0);-ms-transform:matrix(0.265545,-0.026793,0.025097,0.248737,0,0);-webkit-transform:matrix(0.265545,-0.026793,0.025097,0.248737,0,0);}
.m9a{transform:matrix(0.265564,-0.026594,0.024910,0.248756,0,0);-ms-transform:matrix(0.265564,-0.026594,0.024910,0.248756,0,0);-webkit-transform:matrix(0.265564,-0.026594,0.024910,0.248756,0,0);}
.m13{transform:matrix(0.265593,-0.026308,0.024642,0.248783,0,0);-ms-transform:matrix(0.265593,-0.026308,0.024642,0.248783,0,0);-webkit-transform:matrix(0.265593,-0.026308,0.024642,0.248783,0,0);}
.m35{transform:matrix(0.265645,-0.025760,0.024130,0.248833,0,0);-ms-transform:matrix(0.265645,-0.025760,0.024130,0.248833,0,0);-webkit-transform:matrix(0.265645,-0.025760,0.024130,0.248833,0,0);}
.m30{transform:matrix(0.265663,-0.025582,0.023963,0.248849,0,0);-ms-transform:matrix(0.265663,-0.025582,0.023963,0.248849,0,0);-webkit-transform:matrix(0.265663,-0.025582,0.023963,0.248849,0,0);}
.m83{transform:matrix(0.265667,-0.025537,0.023920,0.248853,0,0);-ms-transform:matrix(0.265667,-0.025537,0.023920,0.248853,0,0);-webkit-transform:matrix(0.265667,-0.025537,0.023920,0.248853,0,0);}
.m3b{transform:matrix(0.265723,0.024959,-0.023381,0.248904,0,0);-ms-transform:matrix(0.265723,0.024959,-0.023381,0.248904,0,0);-webkit-transform:matrix(0.265723,0.024959,-0.023381,0.248904,0,0);}
.m94{transform:matrix(0.265723,-0.024957,0.023377,0.248905,0,0);-ms-transform:matrix(0.265723,-0.024957,0.023377,0.248905,0,0);-webkit-transform:matrix(0.265723,-0.024957,0.023377,0.248905,0,0);}
.ma0{transform:matrix(0.265728,0.024903,-0.023327,0.248909,0,0);-ms-transform:matrix(0.265728,0.024903,-0.023327,0.248909,0,0);-webkit-transform:matrix(0.265728,0.024903,-0.023327,0.248909,0,0);}
.m4c{transform:matrix(0.265738,0.024807,-0.023237,0.248918,0,0);-ms-transform:matrix(0.265738,0.024807,-0.023237,0.248918,0,0);-webkit-transform:matrix(0.265738,0.024807,-0.023237,0.248918,0,0);}
.m3e{transform:matrix(0.265790,0.024240,-0.022705,0.248967,0,0);-ms-transform:matrix(0.265790,0.024240,-0.022705,0.248967,0,0);-webkit-transform:matrix(0.265790,0.024240,-0.022705,0.248967,0,0);}
.m24{transform:matrix(0.265819,0.023918,-0.022404,0.248994,0,0);-ms-transform:matrix(0.265819,0.023918,-0.022404,0.248994,0,0);-webkit-transform:matrix(0.265819,0.023918,-0.022404,0.248994,0,0);}
.m7b{transform:matrix(0.265834,0.023746,-0.022243,0.249009,0,0);-ms-transform:matrix(0.265834,0.023746,-0.022243,0.249009,0,0);-webkit-transform:matrix(0.265834,0.023746,-0.022243,0.249009,0,0);}
.m8e{transform:matrix(0.265881,0.023222,-0.021753,0.249052,0,0);-ms-transform:matrix(0.265881,0.023222,-0.021753,0.249052,0,0);-webkit-transform:matrix(0.265881,0.023222,-0.021753,0.249052,0,0);}
.m6b{transform:matrix(0.265918,-0.022767,0.021326,0.249089,0,0);-ms-transform:matrix(0.265918,-0.022767,0.021326,0.249089,0,0);-webkit-transform:matrix(0.265918,-0.022767,0.021326,0.249089,0,0);}
.m5{transform:matrix(0.265919,-0.022756,0.021315,0.249090,0,0);-ms-transform:matrix(0.265919,-0.022756,0.021315,0.249090,0,0);-webkit-transform:matrix(0.265919,-0.022756,0.021315,0.249090,0,0);}
.m14{transform:matrix(0.265951,-0.022410,0.020993,0.249117,0,0);-ms-transform:matrix(0.265951,-0.022410,0.020993,0.249117,0,0);-webkit-transform:matrix(0.265951,-0.022410,0.020993,0.249117,0,0);}
.m69{transform:matrix(0.265993,0.021893,-0.020508,0.249157,0,0);-ms-transform:matrix(0.265993,0.021893,-0.020508,0.249157,0,0);-webkit-transform:matrix(0.265993,0.021893,-0.020508,0.249157,0,0);}
.m75{transform:matrix(0.266067,0.020971,-0.019644,0.249227,0,0);-ms-transform:matrix(0.266067,0.020971,-0.019644,0.249227,0,0);-webkit-transform:matrix(0.266067,0.020971,-0.019644,0.249227,0,0);}
.m4d{transform:matrix(0.266071,0.020911,-0.019586,0.249232,0,0);-ms-transform:matrix(0.266071,0.020911,-0.019586,0.249232,0,0);-webkit-transform:matrix(0.266071,0.020911,-0.019586,0.249232,0,0);}
.m23{transform:matrix(0.266135,0.020093,-0.018822,0.249290,0,0);-ms-transform:matrix(0.266135,0.020093,-0.018822,0.249290,0,0);-webkit-transform:matrix(0.266135,0.020093,-0.018822,0.249290,0,0);}
.m87{transform:matrix(0.266181,-0.019460,0.018227,0.249335,0,0);-ms-transform:matrix(0.266181,-0.019460,0.018227,0.249335,0,0);-webkit-transform:matrix(0.266181,-0.019460,0.018227,0.249335,0,0);}
.m4{transform:matrix(0.266214,-0.019037,0.017832,0.249363,0,0);-ms-transform:matrix(0.266214,-0.019037,0.017832,0.249363,0,0);-webkit-transform:matrix(0.266214,-0.019037,0.017832,0.249363,0,0);}
.m15{transform:matrix(0.266237,-0.018691,0.017508,0.249386,0,0);-ms-transform:matrix(0.266237,-0.018691,0.017508,0.249386,0,0);-webkit-transform:matrix(0.266237,-0.018691,0.017508,0.249386,0,0);}
.m36{transform:matrix(0.266288,-0.017970,0.016834,0.249433,0,0);-ms-transform:matrix(0.266288,-0.017970,0.016834,0.249433,0,0);-webkit-transform:matrix(0.266288,-0.017970,0.016834,0.249433,0,0);}
.m4e{transform:matrix(0.266332,0.017284,-0.016189,0.249475,0,0);-ms-transform:matrix(0.266332,0.017284,-0.016189,0.249475,0,0);-webkit-transform:matrix(0.266332,0.017284,-0.016189,0.249475,0,0);}
.m93{transform:matrix(0.266336,-0.017222,0.016133,0.249479,0,0);-ms-transform:matrix(0.266336,-0.017222,0.016133,0.249479,0,0);-webkit-transform:matrix(0.266336,-0.017222,0.016133,0.249479,0,0);}
.m63{transform:matrix(0.266338,0.017199,-0.016110,0.249480,0,0);-ms-transform:matrix(0.266338,0.017199,-0.016110,0.249480,0,0);-webkit-transform:matrix(0.266338,0.017199,-0.016110,0.249480,0,0);}
.m82{transform:matrix(0.266351,-0.016978,0.015902,0.249494,0,0);-ms-transform:matrix(0.266351,-0.016978,0.015902,0.249494,0,0);-webkit-transform:matrix(0.266351,-0.016978,0.015902,0.249494,0,0);}
.m22{transform:matrix(0.266379,0.016539,-0.015494,0.249519,0,0);-ms-transform:matrix(0.266379,0.016539,-0.015494,0.249519,0,0);-webkit-transform:matrix(0.266379,0.016539,-0.015494,0.249519,0,0);}
.m5e{transform:matrix(0.266385,-0.016464,0.015423,0.249524,0,0);-ms-transform:matrix(0.266385,-0.016464,0.015423,0.249524,0,0);-webkit-transform:matrix(0.266385,-0.016464,0.015423,0.249524,0,0);}
.m57{transform:matrix(0.266387,-0.016432,0.015393,0.249526,0,0);-ms-transform:matrix(0.266387,-0.016432,0.015393,0.249526,0,0);-webkit-transform:matrix(0.266387,-0.016432,0.015393,0.249526,0,0);}
.m7c{transform:matrix(0.266423,0.015833,-0.014830,0.249560,0,0);-ms-transform:matrix(0.266423,0.015833,-0.014830,0.249560,0,0);-webkit-transform:matrix(0.266423,0.015833,-0.014830,0.249560,0,0);}
.m3{transform:matrix(0.266439,-0.015558,0.014572,0.249575,0,0);-ms-transform:matrix(0.266439,-0.015558,0.014572,0.249575,0,0);-webkit-transform:matrix(0.266439,-0.015558,0.014572,0.249575,0,0);}
.m9f{transform:matrix(0.266448,0.015378,-0.014405,0.249585,0,0);-ms-transform:matrix(0.266448,0.015378,-0.014405,0.249585,0,0);-webkit-transform:matrix(0.266448,0.015378,-0.014405,0.249585,0,0);}
.m71{transform:matrix(0.266455,-0.015247,0.014282,0.249592,0,0);-ms-transform:matrix(0.266455,-0.015247,0.014282,0.249592,0,0);-webkit-transform:matrix(0.266455,-0.015247,0.014282,0.249592,0,0);}
.m16{transform:matrix(0.266455,-0.015242,0.014278,0.249592,0,0);-ms-transform:matrix(0.266455,-0.015242,0.014278,0.249592,0,0);-webkit-transform:matrix(0.266455,-0.015242,0.014278,0.249592,0,0);}
.m2b{transform:matrix(0.266488,0.014658,-0.013730,0.249623,0,0);-ms-transform:matrix(0.266488,0.014658,-0.013730,0.249623,0,0);-webkit-transform:matrix(0.266488,0.014658,-0.013730,0.249623,0,0);}
.m9b{transform:matrix(0.266519,-0.014145,0.013250,0.249649,0,0);-ms-transform:matrix(0.266519,-0.014145,0.013250,0.249649,0,0);-webkit-transform:matrix(0.266519,-0.014145,0.013250,0.249649,0,0);}
.m3a{transform:matrix(0.266523,0.014066,-0.013174,0.249653,0,0);-ms-transform:matrix(0.266523,0.014066,-0.013174,0.249653,0,0);-webkit-transform:matrix(0.266523,0.014066,-0.013174,0.249653,0,0);}
.m4f{transform:matrix(0.266529,0.013926,-0.013045,0.249659,0,0);-ms-transform:matrix(0.266529,0.013926,-0.013045,0.249659,0,0);-webkit-transform:matrix(0.266529,0.013926,-0.013045,0.249659,0,0);}
.m2f{transform:matrix(0.266533,-0.013847,0.012970,0.249663,0,0);-ms-transform:matrix(0.266533,-0.013847,0.012970,0.249663,0,0);-webkit-transform:matrix(0.266533,-0.013847,0.012970,0.249663,0,0);}
.m81{transform:matrix(0.266562,-0.013286,0.012444,0.249690,0,0);-ms-transform:matrix(0.266562,-0.013286,0.012444,0.249690,0,0);-webkit-transform:matrix(0.266562,-0.013286,0.012444,0.249690,0,0);}
.m21{transform:matrix(0.266563,0.013265,-0.012425,0.249691,0,0);-ms-transform:matrix(0.266563,0.013265,-0.012425,0.249691,0,0);-webkit-transform:matrix(0.266563,0.013265,-0.012425,0.249691,0,0);}
.m8f{transform:matrix(0.266567,0.013177,-0.012343,0.249695,0,0);-ms-transform:matrix(0.266567,0.013177,-0.012343,0.249695,0,0);-webkit-transform:matrix(0.266567,0.013177,-0.012343,0.249695,0,0);}
.m6a{transform:matrix(0.266581,0.012880,-0.012064,0.249709,0,0);-ms-transform:matrix(0.266581,0.012880,-0.012064,0.249709,0,0);-webkit-transform:matrix(0.266581,0.012880,-0.012064,0.249709,0,0);}
.m88{transform:matrix(0.266588,-0.012713,0.011907,0.249716,0,0);-ms-transform:matrix(0.266588,-0.012713,0.011907,0.249716,0,0);-webkit-transform:matrix(0.266588,-0.012713,0.011907,0.249716,0,0);}
.m2{transform:matrix(0.266608,-0.012320,0.011540,0.249734,0,0);-ms-transform:matrix(0.266608,-0.012320,0.011540,0.249734,0,0);-webkit-transform:matrix(0.266608,-0.012320,0.011540,0.249734,0,0);}
.m37{transform:matrix(0.266610,-0.012264,0.011487,0.249736,0,0);-ms-transform:matrix(0.266610,-0.012264,0.011487,0.249736,0,0);-webkit-transform:matrix(0.266610,-0.012264,0.011487,0.249736,0,0);}
.m17{transform:matrix(0.266620,-0.012021,0.011261,0.249746,0,0);-ms-transform:matrix(0.266620,-0.012021,0.011261,0.249746,0,0);-webkit-transform:matrix(0.266620,-0.012021,0.011261,0.249746,0,0);}
.m50{transform:matrix(0.266673,0.010827,-0.010142,0.249794,0,0);-ms-transform:matrix(0.266673,0.010827,-0.010142,0.249794,0,0);-webkit-transform:matrix(0.266673,0.010827,-0.010142,0.249794,0,0);}
.m20{transform:matrix(0.266698,0.010207,-0.009560,0.249817,0,0);-ms-transform:matrix(0.266698,0.010207,-0.009560,0.249817,0,0);-webkit-transform:matrix(0.266698,0.010207,-0.009560,0.249817,0,0);}
.m92{transform:matrix(0.266712,-0.009803,0.009182,0.249831,0,0);-ms-transform:matrix(0.266712,-0.009803,0.009182,0.249831,0,0);-webkit-transform:matrix(0.266712,-0.009803,0.009182,0.249831,0,0);}
.m8c{transform:matrix(0.266729,0.009354,-0.008761,0.249846,0,0);-ms-transform:matrix(0.266729,0.009354,-0.008761,0.249846,0,0);-webkit-transform:matrix(0.266729,0.009354,-0.008761,0.249846,0,0);}
.m74{transform:matrix(0.266732,0.009277,-0.008691,0.249849,0,0);-ms-transform:matrix(0.266732,0.009277,-0.008691,0.249849,0,0);-webkit-transform:matrix(0.266732,0.009277,-0.008691,0.249849,0,0);}
.m7d{transform:matrix(0.266737,0.009124,-0.008547,0.249854,0,0);-ms-transform:matrix(0.266737,0.009124,-0.008547,0.249854,0,0);-webkit-transform:matrix(0.266737,0.009124,-0.008547,0.249854,0,0);}
.m18{transform:matrix(0.266738,-0.009092,0.008517,0.249855,0,0);-ms-transform:matrix(0.266738,-0.009092,0.008517,0.249855,0,0);-webkit-transform:matrix(0.266738,-0.009092,0.008517,0.249855,0,0);}
.m62{transform:matrix(0.266757,0.008484,-0.007948,0.249874,0,0);-ms-transform:matrix(0.266757,0.008484,-0.007948,0.249874,0,0);-webkit-transform:matrix(0.266757,0.008484,-0.007948,0.249874,0,0);}
.m80{transform:matrix(0.266763,-0.008338,0.007810,0.249878,0,0);-ms-transform:matrix(0.266763,-0.008338,0.007810,0.249878,0,0);-webkit-transform:matrix(0.266763,-0.008338,0.007810,0.249878,0,0);}
.m51{transform:matrix(0.266773,0.007999,-0.007492,0.249888,0,0);-ms-transform:matrix(0.266773,0.007999,-0.007492,0.249888,0,0);-webkit-transform:matrix(0.266773,0.007999,-0.007492,0.249888,0,0);}
.m56{transform:matrix(0.266779,-0.007784,0.007293,0.249894,0,0);-ms-transform:matrix(0.266779,-0.007784,0.007293,0.249894,0,0);-webkit-transform:matrix(0.266779,-0.007784,0.007293,0.249894,0,0);}
.m1f{transform:matrix(0.266788,0.007421,-0.006953,0.249903,0,0);-ms-transform:matrix(0.266788,0.007421,-0.006953,0.249903,0,0);-webkit-transform:matrix(0.266788,0.007421,-0.006953,0.249903,0,0);}
.m9c{transform:matrix(0.266797,-0.007166,0.006713,0.249910,0,0);-ms-transform:matrix(0.266797,-0.007166,0.006713,0.249910,0,0);-webkit-transform:matrix(0.266797,-0.007166,0.006713,0.249910,0,0);}
.m2c{transform:matrix(0.266799,0.006988,-0.006545,0.249914,0,0);-ms-transform:matrix(0.266799,0.006988,-0.006545,0.249914,0,0);-webkit-transform:matrix(0.266799,0.006988,-0.006545,0.249914,0,0);}
.m8b{transform:matrix(0.266810,0.006627,-0.006208,0.249923,0,0);-ms-transform:matrix(0.266810,0.006627,-0.006208,0.249923,0,0);-webkit-transform:matrix(0.266810,0.006627,-0.006208,0.249923,0,0);}
.m39{transform:matrix(0.266811,0.006582,-0.006165,0.249924,0,0);-ms-transform:matrix(0.266811,0.006582,-0.006165,0.249924,0,0);-webkit-transform:matrix(0.266811,0.006582,-0.006165,0.249924,0,0);}
.m5f{transform:matrix(0.266813,-0.006524,0.006109,0.249925,0,0);-ms-transform:matrix(0.266813,-0.006524,0.006109,0.249925,0,0);-webkit-transform:matrix(0.266813,-0.006524,0.006109,0.249925,0,0);}
.m9e{transform:matrix(0.266813,0.006498,-0.006088,0.249926,0,0);-ms-transform:matrix(0.266813,0.006498,-0.006088,0.249926,0,0);-webkit-transform:matrix(0.266813,0.006498,-0.006088,0.249926,0,0);}
.m19{transform:matrix(0.266815,-0.006399,0.005996,0.249928,0,0);-ms-transform:matrix(0.266815,-0.006399,0.005996,0.249928,0,0);-webkit-transform:matrix(0.266815,-0.006399,0.005996,0.249928,0,0);}
.m89{transform:matrix(0.266823,-0.006047,0.005665,0.249936,0,0);-ms-transform:matrix(0.266823,-0.006047,0.005665,0.249936,0,0);-webkit-transform:matrix(0.266823,-0.006047,0.005665,0.249936,0,0);}
.m52{transform:matrix(0.266838,0.005394,-0.005053,0.249949,0,0);-ms-transform:matrix(0.266838,0.005394,-0.005053,0.249949,0,0);-webkit-transform:matrix(0.266838,0.005394,-0.005053,0.249949,0,0);}
.m90{transform:matrix(0.266844,0.005092,-0.004769,0.249955,0,0);-ms-transform:matrix(0.266844,0.005092,-0.004769,0.249955,0,0);-webkit-transform:matrix(0.266844,0.005092,-0.004769,0.249955,0,0);}
.m38{transform:matrix(0.266846,-0.004991,0.004675,0.249956,0,0);-ms-transform:matrix(0.266846,-0.004991,0.004675,0.249956,0,0);-webkit-transform:matrix(0.266846,-0.004991,0.004675,0.249956,0,0);}
.m1e{transform:matrix(0.266848,0.004877,-0.004568,0.249958,0,0);-ms-transform:matrix(0.266848,0.004877,-0.004568,0.249958,0,0);-webkit-transform:matrix(0.266848,0.004877,-0.004568,0.249958,0,0);}
.m2e{transform:matrix(0.266850,-0.004722,0.004422,0.249961,0,0);-ms-transform:matrix(0.266850,-0.004722,0.004422,0.249961,0,0);-webkit-transform:matrix(0.266850,-0.004722,0.004422,0.249961,0,0);}
.m72{transform:matrix(0.266859,-0.004299,0.004029,0.249968,0,0);-ms-transform:matrix(0.266859,-0.004299,0.004029,0.249968,0,0);-webkit-transform:matrix(0.266859,-0.004299,0.004029,0.249968,0,0);}
.m7e{transform:matrix(0.266864,0.003968,-0.003717,0.249972,0,0);-ms-transform:matrix(0.266864,0.003968,-0.003717,0.249972,0,0);-webkit-transform:matrix(0.266864,0.003968,-0.003717,0.249972,0,0);}
.m1a{transform:matrix(0.266864,-0.003943,0.003694,0.249973,0,0);-ms-transform:matrix(0.266864,-0.003943,0.003694,0.249973,0,0);-webkit-transform:matrix(0.266864,-0.003943,0.003694,0.249973,0,0);}
.m55{transform:matrix(0.266870,-0.003481,0.003260,0.249979,0,0);-ms-transform:matrix(0.266870,-0.003481,0.003260,0.249979,0,0);-webkit-transform:matrix(0.266870,-0.003481,0.003260,0.249979,0,0);}
.m53{transform:matrix(0.266875,0.003026,-0.002835,0.249984,0,0);-ms-transform:matrix(0.266875,0.003026,-0.002835,0.249984,0,0);-webkit-transform:matrix(0.266875,0.003026,-0.002835,0.249984,0,0);}
.m1d{transform:matrix(0.266883,0.002540,-0.002379,0.249989,0,0);-ms-transform:matrix(0.266883,0.002540,-0.002379,0.249989,0,0);-webkit-transform:matrix(0.266883,0.002540,-0.002379,0.249989,0,0);}
.m61{transform:matrix(0.266883,0.002240,-0.002098,0.249991,0,0);-ms-transform:matrix(0.266883,0.002240,-0.002098,0.249991,0,0);-webkit-transform:matrix(0.266883,0.002240,-0.002098,0.249991,0,0);}
.m91{transform:matrix(0.266886,-0.001778,0.001664,0.249994,0,0);-ms-transform:matrix(0.266886,-0.001778,0.001664,0.249994,0,0);-webkit-transform:matrix(0.266886,-0.001778,0.001664,0.249994,0,0);}
.m1b{transform:matrix(0.266887,-0.001671,0.001565,0.249995,0,0);-ms-transform:matrix(0.266887,-0.001671,0.001565,0.249995,0,0);-webkit-transform:matrix(0.266887,-0.001671,0.001565,0.249995,0,0);}
.m60{transform:matrix(0.266887,-0.001651,0.001548,0.249995,0,0);-ms-transform:matrix(0.266887,-0.001651,0.001548,0.249995,0,0);-webkit-transform:matrix(0.266887,-0.001651,0.001548,0.249995,0,0);}
.m7f{transform:matrix(0.266887,-0.001626,0.001523,0.249995,0,0);-ms-transform:matrix(0.266887,-0.001626,0.001523,0.249995,0,0);-webkit-transform:matrix(0.266887,-0.001626,0.001523,0.249995,0,0);}
.m73{transform:matrix(0.266887,0.001602,-0.001501,0.249995,0,0);-ms-transform:matrix(0.266887,0.001602,-0.001501,0.249995,0,0);-webkit-transform:matrix(0.266887,0.001602,-0.001501,0.249995,0,0);}
.m8a{transform:matrix(0.266887,0.001540,-0.001443,0.249996,0,0);-ms-transform:matrix(0.266887,0.001540,-0.001443,0.249996,0,0);-webkit-transform:matrix(0.266887,0.001540,-0.001443,0.249996,0,0);}
.m54{transform:matrix(0.266889,-0.001254,0.001175,0.249997,0,0);-ms-transform:matrix(0.266889,-0.001254,0.001175,0.249997,0,0);-webkit-transform:matrix(0.266889,-0.001254,0.001175,0.249997,0,0);}
.m9d{transform:matrix(0.266889,-0.001145,0.001072,0.249998,0,0);-ms-transform:matrix(0.266889,-0.001145,0.001072,0.249998,0,0);-webkit-transform:matrix(0.266889,-0.001145,0.001072,0.249998,0,0);}
.m2d{transform:matrix(0.266890,0.000932,-0.000872,0.249998,0,0);-ms-transform:matrix(0.266890,0.000932,-0.000872,0.249998,0,0);-webkit-transform:matrix(0.266890,0.000932,-0.000872,0.249998,0,0);}
.m1c{transform:matrix(0.266890,0.000926,-0.000868,0.249998,0,0);-ms-transform:matrix(0.266890,0.000926,-0.000868,0.249998,0,0);-webkit-transform:matrix(0.266890,0.000926,-0.000868,0.249998,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-10.597536px;}
.ls3{letter-spacing:-2.040000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-30.600000px;}
.ws2{word-spacing:-14.256000px;}
.ws3{word-spacing:-12.960000px;}
.ws1{word-spacing:-11.520000px;}
.ws8{word-spacing:-10.597536px;}
.ws6{word-spacing:-8.664000px;}
.ws7{word-spacing:-7.524000px;}
.wsa{word-spacing:-6.732000px;}
.wsb{word-spacing:-0.576000px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:0.144000px;}
.ws9{word-spacing:2.040000px;}
._4{margin-left:-14.820000px;}
._5{margin-left:-7.752000px;}
._2{margin-left:-6.720000px;}
._3{margin-left:-4.555200px;}
._7{margin-left:-3.552000px;}
._1{margin-left:-2.308800px;}
._0{margin-left:-1.020000px;}
._6{width:2.040000px;}
.fc2{color:rgb(241,145,188);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs92{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5a{font-size:69.850962px;}
.fs21{font-size:69.850964px;}
.fs4b{font-size:69.851020px;}
.fs70{font-size:69.851092px;}
.fs8e{font-size:69.851114px;}
.fs9{font-size:69.851121px;}
.fs54{font-size:69.851125px;}
.fs29{font-size:69.851155px;}
.fs2b{font-size:69.851169px;}
.fs63{font-size:69.851180px;}
.fs6f{font-size:69.851206px;}
.fs20{font-size:69.851221px;}
.fs1e{font-size:69.851224px;}
.fsc{font-size:69.851227px;}
.fs67{font-size:69.851236px;}
.fs76{font-size:69.851245px;}
.fs3b{font-size:69.851258px;}
.fs5c{font-size:69.851261px;}
.fs31{font-size:69.851273px;}
.fs2c{font-size:69.851280px;}
.fs75{font-size:69.851295px;}
.fs19{font-size:69.851301px;}
.fs5e{font-size:69.851306px;}
.fs25{font-size:69.851322px;}
.fs60{font-size:69.851324px;}
.fs55{font-size:69.851328px;}
.fs7c{font-size:69.851335px;}
.fs7d{font-size:69.851341px;}
.fs17{font-size:69.851343px;}
.fs3f{font-size:69.851345px;}
.fs42{font-size:69.851363px;}
.fs8{font-size:69.851367px;}
.fs38{font-size:69.851369px;}
.fs3d{font-size:69.851370px;}
.fs35{font-size:69.851372px;}
.fs6d{font-size:69.851377px;}
.fs5f{font-size:69.851379px;}
.fs8c{font-size:69.851386px;}
.fs33{font-size:69.851389px;}
.fs81{font-size:69.851391px;}
.fs47{font-size:69.851395px;}
.fs72{font-size:69.851408px;}
.fs57{font-size:69.851419px;}
.fs23{font-size:69.851423px;}
.fs66{font-size:69.851425px;}
.fs2e{font-size:69.851434px;}
.fs62{font-size:69.851438px;}
.fs8d{font-size:69.851442px;}
.fs86{font-size:69.851446px;}
.fs41{font-size:69.851449px;}
.fsd{font-size:69.851451px;}
.fs6a{font-size:69.851459px;}
.fs7{font-size:69.851460px;}
.fs3e{font-size:69.851463px;}
.fs69{font-size:69.851470px;}
.fs4a{font-size:69.851476px;}
.fsb{font-size:69.851480px;}
.fs14{font-size:69.851487px;}
.fs24{font-size:69.851494px;}
.fs74{font-size:69.851495px;}
.fs78{font-size:69.851503px;}
.fs11{font-size:69.851508px;}
.fs18{font-size:69.851510px;}
.fs82{font-size:69.851513px;}
.fs30{font-size:69.851526px;}
.fs37{font-size:69.851530px;}
.fs5d{font-size:69.851540px;}
.fs3c{font-size:69.851558px;}
.fse{font-size:69.851560px;}
.fs46{font-size:69.851563px;}
.fs1f{font-size:69.851569px;}
.fs52{font-size:69.851571px;}
.fs77{font-size:69.851573px;}
.fs50{font-size:69.851576px;}
.fs10{font-size:69.851581px;}
.fs12{font-size:69.851585px;}
.fs71{font-size:69.851592px;}
.fs91{font-size:69.851602px;}
.fs88{font-size:69.851603px;}
.fs8b{font-size:69.851611px;}
.fs15{font-size:69.851613px;}
.fs4d{font-size:69.851615px;}
.fs6b{font-size:69.851618px;}
.fs3a{font-size:69.851644px;}
.fs43{font-size:69.851646px;}
.fs8f{font-size:69.851649px;}
.fs27{font-size:69.851651px;}
.fs28{font-size:69.851653px;}
.fs22{font-size:69.851659px;}
.fs34{font-size:69.851669px;}
.fs79{font-size:69.851673px;}
.fs44{font-size:69.851675px;}
.fs48{font-size:69.851683px;}
.fs1d{font-size:69.851690px;}
.fs58{font-size:69.851707px;}
.fs7e{font-size:69.851709px;}
.fs40{font-size:69.851715px;}
.fs7f{font-size:69.851726px;}
.fs84{font-size:69.851732px;}
.fs80{font-size:69.851735px;}
.fs1c{font-size:69.851744px;}
.fs36{font-size:69.851745px;}
.fs83{font-size:69.851748px;}
.fs6e{font-size:69.851760px;}
.fs56{font-size:69.851764px;}
.fs4e{font-size:69.851766px;}
.fs13{font-size:69.851803px;}
.fs85{font-size:69.851804px;}
.fs59{font-size:69.851818px;}
.fs16{font-size:69.851831px;}
.fs5b{font-size:69.851845px;}
.fs51{font-size:69.851869px;}
.fs26{font-size:69.851872px;}
.fs2d{font-size:69.851887px;}
.fs7a{font-size:69.851902px;}
.fs87{font-size:69.851903px;}
.fs4f{font-size:69.851905px;}
.fs4c{font-size:69.851907px;}
.fs89{font-size:69.851934px;}
.fs53{font-size:69.851938px;}
.fs2f{font-size:69.851944px;}
.fs90{font-size:69.851949px;}
.fsa{font-size:69.851951px;}
.fs2a{font-size:69.851965px;}
.fs6c{font-size:69.851982px;}
.fs1a{font-size:69.852015px;}
.fs32{font-size:69.852021px;}
.fs73{font-size:69.852031px;}
.fs45{font-size:69.852034px;}
.fs7b{font-size:69.852076px;}
.fs68{font-size:69.852083px;}
.fs65{font-size:69.852091px;}
.fs1b{font-size:69.852099px;}
.fs8a{font-size:69.852100px;}
.fsf{font-size:69.852128px;}
.fs61{font-size:69.852170px;}
.fs64{font-size:69.852207px;}
.fs39{font-size:69.852214px;}
.fs49{font-size:69.852274px;}
.fs0{font-size:102.000000px;}
.fs3{font-size:114.000000px;}
.fs6{font-size:264.938400px;}
.y0{bottom:0.000000px;}
.y17{bottom:75.352500px;}
.y11{bottom:82.102500px;}
.y16{bottom:88.852500px;}
.y10{bottom:95.602500px;}
.y27{bottom:96.544950px;}
.y15{bottom:102.352500px;}
.yf{bottom:109.102500px;}
.y14{bottom:115.852500px;}
.y12{bottom:136.216050px;}
.y13{bottom:172.779300px;}
.yeb{bottom:218.374500px;}
.yea{bottom:230.376000px;}
.ye9{bottom:242.377500px;}
.ye8{bottom:347.340750px;}
.yca{bottom:354.969750px;}
.ycb{bottom:355.009350px;}
.yc9{bottom:355.236300px;}
.ycc{bottom:355.677300px;}
.yc8{bottom:355.772400px;}
.ycd{bottom:355.885200px;}
.yc7{bottom:356.997000px;}
.yce{bottom:357.253350px;}
.yc6{bottom:357.770550px;}
.ycf{bottom:358.633350px;}
.yd0{bottom:360.726600px;}
.yd1{bottom:361.669950px;}
.ydb{bottom:363.001500px;}
.yd2{bottom:363.328050px;}
.yd3{bottom:364.132350px;}
.yda{bottom:364.618650px;}
.yd9{bottom:365.567850px;}
.yd4{bottom:365.633850px;}
.yd8{bottom:366.294450px;}
.yd5{bottom:366.350100px;}
.yd6{bottom:366.569850px;}
.yd7{bottom:366.632850px;}
.ye7{bottom:366.840750px;}
.ye6{bottom:408.017550px;}
.yb7{bottom:417.755850px;}
.yb8{bottom:417.853950px;}
.yb6{bottom:417.936000px;}
.y93{bottom:418.145550px;}
.yb5{bottom:418.149900px;}
.yb9{bottom:418.204050px;}
.y94{bottom:418.349100px;}
.yba{bottom:418.416450px;}
.y95{bottom:418.603950px;}
.ybb{bottom:418.683150px;}
.yb4{bottom:418.905750px;}
.y96{bottom:418.915950px;}
.y97{bottom:419.299800px;}
.yb3{bottom:419.440500px;}
.y98{bottom:419.756850px;}
.ybc{bottom:420.127500px;}
.y99{bottom:420.272400px;}
.y9a{bottom:420.858450px;}
.yb2{bottom:421.104450px;}
.y9b{bottom:421.494150px;}
.yb1{bottom:421.845750px;}
.y9c{bottom:422.187000px;}
.ybd{bottom:422.311500px;}
.y9d{bottom:422.922300px;}
.yb0{bottom:423.569850px;}
.y9e{bottom:423.669450px;}
.y9f{bottom:424.415100px;}
.ybe{bottom:424.826700px;}
.ya0{bottom:425.138700px;}
.yaf{bottom:425.628000px;}
.ya1{bottom:425.818350px;}
.ya2{bottom:426.445350px;}
.ybf{bottom:426.588900px;}
.ya3{bottom:427.007850px;}
.ya4{bottom:427.504350px;}
.yae{bottom:427.628850px;}
.ya5{bottom:427.933650px;}
.yc0{bottom:427.943850px;}
.ya6{bottom:428.302800px;}
.ya7{bottom:428.607450px;}
.yc1{bottom:428.787600px;}
.ya8{bottom:428.860800px;}
.yad{bottom:428.890200px;}
.ya9{bottom:429.058650px;}
.yc2{bottom:429.099600px;}
.yc5{bottom:429.196350px;}
.yaa{bottom:429.238800px;}
.yc4{bottom:429.304650px;}
.yac{bottom:429.388200px;}
.yab{bottom:429.426300px;}
.yc3{bottom:429.433650px;}
.ye5{bottom:433.517550px;}
.ya{bottom:456.169350px;}
.ye4{bottom:459.017550px;}
.y7d{bottom:479.686500px;}
.y7c{bottom:479.702700px;}
.y7e{bottom:479.707050px;}
.y7f{bottom:479.739300px;}
.y7b{bottom:479.751000px;}
.y7a{bottom:479.840400px;}
.y79{bottom:479.972100px;}
.y80{bottom:480.011700px;}
.y78{bottom:480.149400px;}
.y77{bottom:480.378000px;}
.y92{bottom:480.446850px;}
.y76{bottom:480.660600px;}
.y81{bottom:480.886200px;}
.y75{bottom:481.004850px;}
.y74{bottom:481.419450px;}
.y91{bottom:481.423800px;}
.y73{bottom:481.907250px;}
.y82{bottom:482.433150px;}
.y72{bottom:482.472600px;}
.y71{bottom:483.089400px;}
.y90{bottom:483.208050px;}
.y70{bottom:483.757350px;}
.y83{bottom:484.245150px;}
.y6f{bottom:484.470750px;}
.y6e{bottom:485.209050px;}
.y8f{bottom:485.774400px;}
.y6d{bottom:485.967750px;}
.y84{bottom:486.019050px;}
.y6c{bottom:486.707550px;}
.y8e{bottom:486.709050px;}
.y85{bottom:486.777900px;}
.y6b{bottom:487.407750px;}
.y6a{bottom:488.062500px;}
.y86{bottom:488.387700px;}
.y69{bottom:488.657250px;}
.y8d{bottom:488.714400px;}
.y68{bottom:489.186000px;}
.y67{bottom:489.646050px;}
.y66{bottom:490.042950px;}
.y87{bottom:490.069350px;}
.ye{bottom:490.373550px;}
.y8c{bottom:490.943850px;}
.y88{bottom:490.987800px;}
.y8b{bottom:491.232450px;}
.y89{bottom:491.279250px;}
.y8a{bottom:491.334900px;}
.y8{bottom:497.123550px;}
.yd{bottom:503.873550px;}
.y7{bottom:510.623550px;}
.yc{bottom:517.373550px;}
.y6{bottom:524.123550px;}
.yb{bottom:530.873550px;}
.y55{bottom:544.913100px;}
.y54{bottom:544.980450px;}
.y56{bottom:545.138700px;}
.y53{bottom:545.263200px;}
.y28{bottom:545.313000px;}
.y29{bottom:545.516550px;}
.y2a{bottom:545.771550px;}
.y57{bottom:545.894550px;}
.y52{bottom:545.912100px;}
.y2b{bottom:546.083550px;}
.y2c{bottom:546.465750px;}
.y51{bottom:546.853950px;}
.y2d{bottom:546.924300px;}
.y58{bottom:547.325700px;}
.y2e{bottom:547.440000px;}
.y59{bottom:547.863300px;}
.y2f{bottom:548.024400px;}
.y30{bottom:548.661600px;}
.y50{bottom:548.682150px;}
.y31{bottom:549.353100px;}
.y5a{bottom:549.417450px;}
.y32{bottom:550.088400px;}
.y33{bottom:550.836900px;}
.y4f{bottom:551.160600px;}
.y9{bottom:551.235600px;}
.y34{bottom:551.581050px;}
.y5b{bottom:552.080550px;}
.y35{bottom:552.304650px;}
.y65{bottom:552.714900px;}
.y36{bottom:552.985800px;}
.y4e{bottom:553.441350px;}
.y37{bottom:553.611300px;}
.y4d{bottom:553.962900px;}
.y38{bottom:554.173800px;}
.y64{bottom:554.230950px;}
.y5c{bottom:554.277900px;}
.y4c{bottom:554.490300px;}
.y39{bottom:554.670450px;}
.y4b{bottom:554.945850px;}
.y3a{bottom:555.099600px;}
.y4a{bottom:555.335400px;}
.y3b{bottom:555.468750px;}
.y5d{bottom:555.537600px;}
.y49{bottom:555.666450px;}
.y3c{bottom:555.773400px;}
.y63{bottom:555.788100px;}
.y5e{bottom:555.864300px;}
.y48{bottom:555.937500px;}
.y3d{bottom:556.026900px;}
.y47{bottom:556.154250px;}
.y3e{bottom:556.224600px;}
.y62{bottom:556.264200px;}
.y46{bottom:556.319850px;}
.y5f{bottom:556.357950px;}
.y3f{bottom:556.372500px;}
.y45{bottom:556.442850px;}
.y40{bottom:556.478100px;}
.y44{bottom:556.523400px;}
.y41{bottom:556.540950px;}
.y43{bottom:556.563000px;}
.y61{bottom:556.570350px;}
.y42{bottom:556.574700px;}
.y60{bottom:556.583550px;}
.y26{bottom:618.890400px;}
.ye1{bottom:636.966750px;}
.y25{bottom:644.397900px;}
.ye0{bottom:650.466750px;}
.ydf{bottom:663.966750px;}
.yde{bottom:677.466750px;}
.ye3{bottom:712.461150px;}
.ye2{bottom:725.961150px;}
.y24{bottom:792.128100px;}
.y23{bottom:810.123600px;}
.y22{bottom:828.119100px;}
.y21{bottom:846.114600px;}
.y20{bottom:864.110100px;}
.ydd{bottom:879.735300px;}
.y1f{bottom:882.105600px;}
.y1e{bottom:900.101100px;}
.ydc{bottom:905.235300px;}
.y1d{bottom:918.101100px;}
.y1c{bottom:936.092100px;}
.y1b{bottom:957.096600px;}
.y1a{bottom:978.101100px;}
.y19{bottom:1028.695200px;}
.y18{bottom:1054.202700px;}
.y5{bottom:1161.271500px;}
.y4{bottom:1819.236300px;}
.y3{bottom:1832.736300px;}
.y2{bottom:1859.228100px;}
.y1{bottom:1884.728100px;}
.yec{bottom:1921.009350px;}
.h95{height:32.550000px;}
.h5{height:35.280000px;}
.h3{height:37.200000px;}
.h6{height:41.850000px;}
.h9{height:46.500000px;}
.h8{height:51.150000px;}
.h5d{height:54.134495px;}
.h25{height:54.134497px;}
.h4e{height:54.134540px;}
.h72{height:54.134597px;}
.h8f{height:54.134614px;}
.hd{height:54.134619px;}
.h57{height:54.134622px;}
.h2d{height:54.134645px;}
.h2f{height:54.134656px;}
.h66{height:54.134664px;}
.h71{height:54.134685px;}
.h24{height:54.134696px;}
.h22{height:54.134699px;}
.h10{height:54.134701px;}
.h6a{height:54.134708px;}
.h78{height:54.134715px;}
.h3e{height:54.134725px;}
.h5f{height:54.134727px;}
.h35{height:54.134737px;}
.h30{height:54.134742px;}
.h77{height:54.134754px;}
.h1d{height:54.134758px;}
.h61{height:54.134762px;}
.h29{height:54.134775px;}
.h63{height:54.134776px;}
.h58{height:54.134779px;}
.h7e{height:54.134785px;}
.h7f{height:54.134789px;}
.h1b{height:54.134791px;}
.h42{height:54.134792px;}
.h45{height:54.134806px;}
.hc{height:54.134809px;}
.h3b{height:54.134811px;}
.h40{height:54.134812px;}
.h39{height:54.134813px;}
.h6f{height:54.134817px;}
.h62{height:54.134819px;}
.h8d{height:54.134824px;}
.h37{height:54.134827px;}
.h83{height:54.134828px;}
.h4a{height:54.134831px;}
.h74{height:54.134841px;}
.h5a{height:54.134850px;}
.h27{height:54.134853px;}
.h69{height:54.134854px;}
.h32{height:54.134861px;}
.h65{height:54.134864px;}
.h8e{height:54.134867px;}
.h87{height:54.134870px;}
.h44{height:54.134873px;}
.h11{height:54.134875px;}
.hb{height:54.134882px;}
.h41{height:54.134884px;}
.h6c{height:54.134889px;}
.h4d{height:54.134894px;}
.hf{height:54.134897px;}
.h18{height:54.134902px;}
.h28{height:54.134907px;}
.h76{height:54.134909px;}
.h7a{height:54.134914px;}
.h15{height:54.134918px;}
.h1c{height:54.134920px;}
.h84{height:54.134922px;}
.h34{height:54.134932px;}
.h3a{height:54.134936px;}
.h60{height:54.134943px;}
.h3f{height:54.134957px;}
.h12{height:54.134959px;}
.h49{height:54.134961px;}
.h23{height:54.134966px;}
.h55{height:54.134968px;}
.h79{height:54.134969px;}
.h53{height:54.134971px;}
.h14{height:54.134975px;}
.h16{height:54.134978px;}
.h73{height:54.134983px;}
.h92{height:54.134991px;}
.h89{height:54.134992px;}
.h8c{height:54.134999px;}
.h19{height:54.135000px;}
.h50{height:54.135002px;}
.h6d{height:54.135004px;}
.h3d{height:54.135024px;}
.h46{height:54.135026px;}
.h90{height:54.135028px;}
.h2b{height:54.135030px;}
.h2c{height:54.135031px;}
.h26{height:54.135036px;}
.h38{height:54.135044px;}
.h7b{height:54.135047px;}
.h47{height:54.135048px;}
.h4b{height:54.135054px;}
.h21{height:54.135060px;}
.h5b{height:54.135073px;}
.h80{height:54.135075px;}
.h43{height:54.135079px;}
.h81{height:54.135088px;}
.h86{height:54.135092px;}
.h82{height:54.135094px;}
.h20{height:54.135102px;}
.h85{height:54.135105px;}
.h70{height:54.135114px;}
.h59{height:54.135117px;}
.h51{height:54.135119px;}
.h17{height:54.135147px;}
.h5c{height:54.135159px;}
.h1a{height:54.135169px;}
.h5e{height:54.135180px;}
.h54{height:54.135198px;}
.h2a{height:54.135201px;}
.h31{height:54.135212px;}
.h7c{height:54.135224px;}
.h88{height:54.135225px;}
.h52{height:54.135227px;}
.h4f{height:54.135228px;}
.h8a{height:54.135248px;}
.h56{height:54.135252px;}
.h33{height:54.135257px;}
.h91{height:54.135260px;}
.he{height:54.135262px;}
.h2e{height:54.135273px;}
.h6e{height:54.135286px;}
.h1e{height:54.135311px;}
.h36{height:54.135317px;}
.h75{height:54.135324px;}
.h48{height:54.135327px;}
.h7d{height:54.135359px;}
.h6b{height:54.135365px;}
.h68{height:54.135370px;}
.h1f{height:54.135377px;}
.h8b{height:54.135378px;}
.h13{height:54.135400px;}
.h64{height:54.135432px;}
.h67{height:54.135461px;}
.h3c{height:54.135466px;}
.h4c{height:54.135512px;}
.h2{height:74.970000px;}
.h7{height:83.790000px;}
.ha{height:209.301336px;}
.h4{height:625.645500px;}
.h0{height:2102.775000px;}
.h1{height:2103.000000px;}
.h94{height:2113.500000px;}
.h93{height:2113.560000px;}
.w2{width:667.426500px;}
.w0{width:671.811000px;}
.w1{width:672.000000px;}
.x0{left:0.000000px;}
.x5{left:2.193000px;}
.x29{left:19.291950px;}
.x2a{left:23.677050px;}
.x2b{left:28.044450px;}
.x2c{left:32.412600px;}
.x2d{left:36.891300px;}
.x2e{left:41.423550px;}
.x2f{left:45.829800px;}
.x30{left:50.243400px;}
.x31{left:54.577950px;}
.x32{left:58.927050px;}
.x33{left:63.286350px;}
.x34{left:67.620150px;}
.x35{left:71.938500px;}
.x36{left:76.279500px;}
.x37{left:80.612550px;}
.x38{left:84.945600px;}
.x39{left:89.267550px;}
.x3a{left:93.615300px;}
.x3b{left:97.953300px;}
.x16{left:101.989650px;}
.x17{left:103.297650px;}
.x6{left:105.092100px;}
.x3c{left:106.691100px;}
.x7{left:110.912100px;}
.x3d{left:115.460400px;}
.x92{left:117.990090px;}
.x24{left:119.724000px;}
.x18{left:123.697650px;}
.x3e{left:128.631600px;}
.x90{left:130.201500px;}
.x7c{left:131.670450px;}
.x3f{left:132.994650px;}
.x19{left:134.771400px;}
.x91{left:136.369650px;}
.x40{left:137.430900px;}
.xa{left:141.039450px;}
.x9{left:142.192200px;}
.x7d{left:143.683650px;}
.x8{left:145.688100px;}
.x1a{left:149.639550px;}
.x23{left:155.748000px;}
.x41{left:159.321600px;}
.x42{left:163.689000px;}
.x3{left:165.738300px;}
.x43{left:168.084900px;}
.x44{left:172.430400px;}
.x7e{left:174.828300px;}
.x45{left:176.783250px;}
.x27{left:180.793350px;}
.x46{left:185.407500px;}
.x5c{left:190.168950px;}
.x5d{left:194.487300px;}
.x47{left:199.147650px;}
.x4{left:201.582300px;}
.x5e{left:203.220750px;}
.x2{left:205.231800px;}
.x5f{left:207.536100px;}
.x60{left:211.862550px;}
.x48{left:213.574950px;}
.x61{left:216.219000px;}
.x26{left:219.695850px;}
.x28{left:223.079550px;}
.x62{left:225.126750px;}
.x84{left:226.283250px;}
.x49{left:227.611800px;}
.x63{left:229.623750px;}
.x64{left:234.058650px;}
.x1{left:236.112300px;}
.x4a{left:237.964650px;}
.x85{left:240.840750px;}
.x65{left:242.812500px;}
.x66{left:247.195350px;}
.x4b{left:250.061250px;}
.x67{left:251.569350px;}
.x7f{left:254.629350px;}
.x68{left:255.952950px;}
.x4c{left:260.614050px;}
.x69{left:264.722100px;}
.x86{left:266.392050px;}
.xc{left:268.225500px;}
.x95{left:269.434500px;}
.x4d{left:271.141050px;}
.x6a{left:273.598350px;}
.x1b{left:276.177150px;}
.xb{left:278.869500px;}
.xe{left:282.919800px;}
.x4e{left:285.003600px;}
.x6b{left:288.647400px;}
.x94{left:290.410800px;}
.x80{left:293.726100px;}
.x93{left:296.110800px;}
.x4f{left:299.611050px;}
.xd{left:303.697500px;}
.xf{left:306.185850px;}
.x87{left:313.008600px;}
.x1d{left:314.131200px;}
.x6c{left:316.907250px;}
.x50{left:318.038100px;}
.x1c{left:319.113150px;}
.x1e{left:321.244500px;}
.x88{left:323.070600px;}
.x51{left:328.152150px;}
.x89{left:335.458800px;}
.x6d{left:338.923050px;}
.x8a{left:340.784850px;}
.x52{left:343.179900px;}
.x25{left:344.452200px;}
.x8b{left:351.342000px;}
.x6e{left:353.271300px;}
.x8c{left:356.587650px;}
.x53{left:358.245900px;}
.x81{left:366.226350px;}
.x6f{left:368.384100px;}
.x54{left:371.947950px;}
.x55{left:376.317600px;}
.x82{left:378.352350px;}
.x70{left:383.640450px;}
.x56{left:386.808900px;}
.x8d{left:392.595000px;}
.x71{left:397.408500px;}
.x57{left:399.047550px;}
.x72{left:401.803050px;}
.x58{left:409.596000px;}
.x73{left:413.621400px;}
.x83{left:418.001250px;}
.x59{left:421.780500px;}
.x74{left:423.983700px;}
.x5a{left:432.131100px;}
.x8e{left:434.898150px;}
.x75{left:438.057900px;}
.x11{left:439.525200px;}
.x14{left:445.853700px;}
.x5b{left:448.051050px;}
.x76{left:450.217500px;}
.x20{left:451.382250px;}
.x96{left:452.857950px;}
.x12{left:454.561200px;}
.x1f{left:455.834250px;}
.x8f{left:457.191600px;}
.x10{left:459.193200px;}
.x77{left:463.210650px;}
.x78{left:468.532500px;}
.x15{left:476.633700px;}
.x22{left:480.669300px;}
.x13{left:481.693200px;}
.x79{left:483.636450px;}
.x21{left:485.258250px;}
.x7a{left:497.773650px;}
.x7b{left:509.823450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-9.420032pt;}
.ls3{letter-spacing:-1.813333pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-27.200000pt;}
.ws2{word-spacing:-12.672000pt;}
.ws3{word-spacing:-11.520000pt;}
.ws1{word-spacing:-10.240000pt;}
.ws8{word-spacing:-9.420032pt;}
.ws6{word-spacing:-7.701333pt;}
.ws7{word-spacing:-6.688000pt;}
.wsa{word-spacing:-5.984000pt;}
.wsb{word-spacing:-0.512000pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:0.128000pt;}
.ws9{word-spacing:1.813333pt;}
._4{margin-left:-13.173333pt;}
._5{margin-left:-6.890667pt;}
._2{margin-left:-5.973333pt;}
._3{margin-left:-4.049067pt;}
._7{margin-left:-3.157333pt;}
._1{margin-left:-2.052267pt;}
._0{margin-left:-0.906667pt;}
._6{width:1.813333pt;}
.fs92{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5a{font-size:62.089744pt;}
.fs21{font-size:62.089745pt;}
.fs4b{font-size:62.089795pt;}
.fs70{font-size:62.089860pt;}
.fs8e{font-size:62.089879pt;}
.fs9{font-size:62.089885pt;}
.fs54{font-size:62.089889pt;}
.fs29{font-size:62.089916pt;}
.fs2b{font-size:62.089928pt;}
.fs63{font-size:62.089937pt;}
.fs6f{font-size:62.089961pt;}
.fs20{font-size:62.089974pt;}
.fs1e{font-size:62.089977pt;}
.fsc{font-size:62.089980pt;}
.fs67{font-size:62.089987pt;}
.fs76{font-size:62.089996pt;}
.fs3b{font-size:62.090007pt;}
.fs5c{font-size:62.090009pt;}
.fs31{font-size:62.090020pt;}
.fs2c{font-size:62.090027pt;}
.fs75{font-size:62.090040pt;}
.fs19{font-size:62.090045pt;}
.fs5e{font-size:62.090050pt;}
.fs25{font-size:62.090064pt;}
.fs60{font-size:62.090066pt;}
.fs55{font-size:62.090069pt;}
.fs7c{font-size:62.090076pt;}
.fs7d{font-size:62.090081pt;}
.fs17{font-size:62.090083pt;}
.fs3f{font-size:62.090084pt;}
.fs42{font-size:62.090100pt;}
.fs8{font-size:62.090104pt;}
.fs38{font-size:62.090106pt;}
.fs3d{font-size:62.090107pt;}
.fs35{font-size:62.090108pt;}
.fs6d{font-size:62.090113pt;}
.fs5f{font-size:62.090114pt;}
.fs8c{font-size:62.090121pt;}
.fs33{font-size:62.090124pt;}
.fs81{font-size:62.090126pt;}
.fs47{font-size:62.090129pt;}
.fs72{font-size:62.090140pt;}
.fs57{font-size:62.090150pt;}
.fs23{font-size:62.090154pt;}
.fs66{font-size:62.090155pt;}
.fs2e{font-size:62.090163pt;}
.fs62{font-size:62.090167pt;}
.fs8d{font-size:62.090170pt;}
.fs86{font-size:62.090174pt;}
.fs41{font-size:62.090177pt;}
.fsd{font-size:62.090179pt;}
.fs6a{font-size:62.090186pt;}
.fs7{font-size:62.090187pt;}
.fs3e{font-size:62.090190pt;}
.fs69{font-size:62.090195pt;}
.fs4a{font-size:62.090201pt;}
.fsb{font-size:62.090205pt;}
.fs14{font-size:62.090211pt;}
.fs24{font-size:62.090216pt;}
.fs74{font-size:62.090218pt;}
.fs78{font-size:62.090224pt;}
.fs11{font-size:62.090229pt;}
.fs18{font-size:62.090231pt;}
.fs82{font-size:62.090233pt;}
.fs30{font-size:62.090245pt;}
.fs37{font-size:62.090249pt;}
.fs5d{font-size:62.090257pt;}
.fs3c{font-size:62.090274pt;}
.fse{font-size:62.090275pt;}
.fs46{font-size:62.090278pt;}
.fs1f{font-size:62.090284pt;}
.fs52{font-size:62.090285pt;}
.fs77{font-size:62.090287pt;}
.fs50{font-size:62.090290pt;}
.fs10{font-size:62.090294pt;}
.fs12{font-size:62.090298pt;}
.fs71{font-size:62.090304pt;}
.fs91{font-size:62.090312pt;}
.fs88{font-size:62.090314pt;}
.fs8b{font-size:62.090321pt;}
.fs15{font-size:62.090323pt;}
.fs4d{font-size:62.090325pt;}
.fs6b{font-size:62.090327pt;}
.fs3a{font-size:62.090350pt;}
.fs43{font-size:62.090352pt;}
.fs8f{font-size:62.090355pt;}
.fs27{font-size:62.090357pt;}
.fs28{font-size:62.090359pt;}
.fs22{font-size:62.090364pt;}
.fs34{font-size:62.090373pt;}
.fs79{font-size:62.090376pt;}
.fs44{font-size:62.090378pt;}
.fs48{font-size:62.090385pt;}
.fs1d{font-size:62.090391pt;}
.fs58{font-size:62.090406pt;}
.fs7e{font-size:62.090408pt;}
.fs40{font-size:62.090413pt;}
.fs7f{font-size:62.090423pt;}
.fs84{font-size:62.090429pt;}
.fs80{font-size:62.090431pt;}
.fs1c{font-size:62.090439pt;}
.fs36{font-size:62.090440pt;}
.fs83{font-size:62.090442pt;}
.fs6e{font-size:62.090454pt;}
.fs56{font-size:62.090457pt;}
.fs4e{font-size:62.090459pt;}
.fs13{font-size:62.090492pt;}
.fs85{font-size:62.090493pt;}
.fs59{font-size:62.090505pt;}
.fs16{font-size:62.090516pt;}
.fs5b{font-size:62.090529pt;}
.fs51{font-size:62.090550pt;}
.fs26{font-size:62.090553pt;}
.fs2d{font-size:62.090566pt;}
.fs7a{font-size:62.090579pt;}
.fs87{font-size:62.090581pt;}
.fs4f{font-size:62.090583pt;}
.fs4c{font-size:62.090584pt;}
.fs89{font-size:62.090608pt;}
.fs53{font-size:62.090612pt;}
.fs2f{font-size:62.090617pt;}
.fs90{font-size:62.090621pt;}
.fsa{font-size:62.090623pt;}
.fs2a{font-size:62.090636pt;}
.fs6c{font-size:62.090651pt;}
.fs1a{font-size:62.090680pt;}
.fs32{font-size:62.090686pt;}
.fs73{font-size:62.090694pt;}
.fs45{font-size:62.090697pt;}
.fs7b{font-size:62.090734pt;}
.fs68{font-size:62.090741pt;}
.fs65{font-size:62.090747pt;}
.fs1b{font-size:62.090754pt;}
.fs8a{font-size:62.090756pt;}
.fsf{font-size:62.090781pt;}
.fs61{font-size:62.090818pt;}
.fs64{font-size:62.090851pt;}
.fs39{font-size:62.090857pt;}
.fs49{font-size:62.090910pt;}
.fs0{font-size:90.666667pt;}
.fs3{font-size:101.333333pt;}
.fs6{font-size:235.500800pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:66.980000pt;}
.y11{bottom:72.980000pt;}
.y16{bottom:78.980000pt;}
.y10{bottom:84.980000pt;}
.y27{bottom:85.817733pt;}
.y15{bottom:90.980000pt;}
.yf{bottom:96.980000pt;}
.y14{bottom:102.980000pt;}
.y12{bottom:121.080933pt;}
.y13{bottom:153.581600pt;}
.yeb{bottom:194.110667pt;}
.yea{bottom:204.778667pt;}
.ye9{bottom:215.446667pt;}
.ye8{bottom:308.747333pt;}
.yca{bottom:315.528667pt;}
.ycb{bottom:315.563867pt;}
.yc9{bottom:315.765600pt;}
.ycc{bottom:316.157600pt;}
.yc8{bottom:316.242133pt;}
.ycd{bottom:316.342400pt;}
.yc7{bottom:317.330667pt;}
.yce{bottom:317.558533pt;}
.yc6{bottom:318.018267pt;}
.ycf{bottom:318.785200pt;}
.yd0{bottom:320.645867pt;}
.yd1{bottom:321.484400pt;}
.ydb{bottom:322.668000pt;}
.yd2{bottom:322.958267pt;}
.yd3{bottom:323.673200pt;}
.yda{bottom:324.105467pt;}
.yd9{bottom:324.949200pt;}
.yd4{bottom:325.007867pt;}
.yd8{bottom:325.595067pt;}
.yd5{bottom:325.644533pt;}
.yd6{bottom:325.839867pt;}
.yd7{bottom:325.895867pt;}
.ye7{bottom:326.080667pt;}
.ye6{bottom:362.682267pt;}
.yb7{bottom:371.338533pt;}
.yb8{bottom:371.425733pt;}
.yb6{bottom:371.498667pt;}
.y93{bottom:371.684933pt;}
.yb5{bottom:371.688800pt;}
.yb9{bottom:371.736933pt;}
.y94{bottom:371.865867pt;}
.yba{bottom:371.925733pt;}
.y95{bottom:372.092400pt;}
.ybb{bottom:372.162800pt;}
.yb4{bottom:372.360667pt;}
.y96{bottom:372.369733pt;}
.y97{bottom:372.710933pt;}
.yb3{bottom:372.836000pt;}
.y98{bottom:373.117200pt;}
.ybc{bottom:373.446667pt;}
.y99{bottom:373.575467pt;}
.y9a{bottom:374.096400pt;}
.yb2{bottom:374.315067pt;}
.y9b{bottom:374.661467pt;}
.yb1{bottom:374.974000pt;}
.y9c{bottom:375.277333pt;}
.ybd{bottom:375.388000pt;}
.y9d{bottom:375.930933pt;}
.yb0{bottom:376.506533pt;}
.y9e{bottom:376.595067pt;}
.y9f{bottom:377.257867pt;}
.ybe{bottom:377.623733pt;}
.ya0{bottom:377.901067pt;}
.yaf{bottom:378.336000pt;}
.ya1{bottom:378.505200pt;}
.ya2{bottom:379.062533pt;}
.ybf{bottom:379.190133pt;}
.ya3{bottom:379.562533pt;}
.ya4{bottom:380.003867pt;}
.yae{bottom:380.114533pt;}
.ya5{bottom:380.385467pt;}
.yc0{bottom:380.394533pt;}
.ya6{bottom:380.713600pt;}
.ya7{bottom:380.984400pt;}
.yc1{bottom:381.144533pt;}
.ya8{bottom:381.209600pt;}
.yad{bottom:381.235733pt;}
.ya9{bottom:381.385467pt;}
.yc2{bottom:381.421867pt;}
.yc5{bottom:381.507867pt;}
.yaa{bottom:381.545600pt;}
.yc4{bottom:381.604133pt;}
.yac{bottom:381.678400pt;}
.yab{bottom:381.712267pt;}
.yc3{bottom:381.718800pt;}
.ye5{bottom:385.348933pt;}
.ya{bottom:405.483867pt;}
.ye4{bottom:408.015600pt;}
.y7d{bottom:426.388000pt;}
.y7c{bottom:426.402400pt;}
.y7e{bottom:426.406267pt;}
.y7f{bottom:426.434933pt;}
.y7b{bottom:426.445333pt;}
.y7a{bottom:426.524800pt;}
.y79{bottom:426.641867pt;}
.y80{bottom:426.677067pt;}
.y78{bottom:426.799467pt;}
.y77{bottom:427.002667pt;}
.y92{bottom:427.063867pt;}
.y76{bottom:427.253867pt;}
.y81{bottom:427.454400pt;}
.y75{bottom:427.559867pt;}
.y74{bottom:427.928400pt;}
.y91{bottom:427.932267pt;}
.y73{bottom:428.362000pt;}
.y82{bottom:428.829467pt;}
.y72{bottom:428.864533pt;}
.y71{bottom:429.412800pt;}
.y90{bottom:429.518267pt;}
.y70{bottom:430.006533pt;}
.y83{bottom:430.440133pt;}
.y6f{bottom:430.640667pt;}
.y6e{bottom:431.296933pt;}
.y8f{bottom:431.799467pt;}
.y6d{bottom:431.971333pt;}
.y84{bottom:432.016933pt;}
.y6c{bottom:432.628933pt;}
.y8e{bottom:432.630267pt;}
.y85{bottom:432.691467pt;}
.y6b{bottom:433.251333pt;}
.y6a{bottom:433.833333pt;}
.y86{bottom:434.122400pt;}
.y69{bottom:434.362000pt;}
.y8d{bottom:434.412800pt;}
.y68{bottom:434.832000pt;}
.y67{bottom:435.240933pt;}
.y66{bottom:435.593733pt;}
.y87{bottom:435.617200pt;}
.ye{bottom:435.887600pt;}
.y8c{bottom:436.394533pt;}
.y88{bottom:436.433600pt;}
.y8b{bottom:436.651067pt;}
.y89{bottom:436.692667pt;}
.y8a{bottom:436.742133pt;}
.y8{bottom:441.887600pt;}
.yd{bottom:447.887600pt;}
.y7{bottom:453.887600pt;}
.yc{bottom:459.887600pt;}
.y6{bottom:465.887600pt;}
.yb{bottom:471.887600pt;}
.y55{bottom:484.367200pt;}
.y54{bottom:484.427067pt;}
.y56{bottom:484.567733pt;}
.y53{bottom:484.678400pt;}
.y28{bottom:484.722667pt;}
.y29{bottom:484.903600pt;}
.y2a{bottom:485.130267pt;}
.y57{bottom:485.239600pt;}
.y52{bottom:485.255200pt;}
.y2b{bottom:485.407600pt;}
.y2c{bottom:485.747333pt;}
.y51{bottom:486.092400pt;}
.y2d{bottom:486.154933pt;}
.y58{bottom:486.511733pt;}
.y2e{bottom:486.613333pt;}
.y59{bottom:486.989600pt;}
.y2f{bottom:487.132800pt;}
.y30{bottom:487.699200pt;}
.y50{bottom:487.717467pt;}
.y31{bottom:488.313867pt;}
.y5a{bottom:488.371067pt;}
.y32{bottom:488.967467pt;}
.y33{bottom:489.632800pt;}
.y4f{bottom:489.920533pt;}
.y9{bottom:489.987200pt;}
.y34{bottom:490.294267pt;}
.y5b{bottom:490.738267pt;}
.y35{bottom:490.937467pt;}
.y65{bottom:491.302133pt;}
.y36{bottom:491.542933pt;}
.y4e{bottom:491.947867pt;}
.y37{bottom:492.098933pt;}
.y4d{bottom:492.411467pt;}
.y38{bottom:492.598933pt;}
.y64{bottom:492.649733pt;}
.y5c{bottom:492.691467pt;}
.y4c{bottom:492.880267pt;}
.y39{bottom:493.040400pt;}
.y4b{bottom:493.285200pt;}
.y3a{bottom:493.421867pt;}
.y4a{bottom:493.631467pt;}
.y3b{bottom:493.750000pt;}
.y5d{bottom:493.811200pt;}
.y49{bottom:493.925733pt;}
.y3c{bottom:494.020800pt;}
.y63{bottom:494.033867pt;}
.y5e{bottom:494.101600pt;}
.y48{bottom:494.166667pt;}
.y3d{bottom:494.246133pt;}
.y47{bottom:494.359333pt;}
.y3e{bottom:494.421867pt;}
.y62{bottom:494.457067pt;}
.y46{bottom:494.506533pt;}
.y5f{bottom:494.540400pt;}
.y3f{bottom:494.553333pt;}
.y45{bottom:494.615867pt;}
.y40{bottom:494.647200pt;}
.y44{bottom:494.687467pt;}
.y41{bottom:494.703067pt;}
.y43{bottom:494.722667pt;}
.y61{bottom:494.729200pt;}
.y42{bottom:494.733067pt;}
.y60{bottom:494.740933pt;}
.y26{bottom:550.124800pt;}
.ye1{bottom:566.192667pt;}
.y25{bottom:572.798133pt;}
.ye0{bottom:578.192667pt;}
.ydf{bottom:590.192667pt;}
.yde{bottom:602.192667pt;}
.ye3{bottom:633.298800pt;}
.ye2{bottom:645.298800pt;}
.y24{bottom:704.113867pt;}
.y23{bottom:720.109867pt;}
.y22{bottom:736.105867pt;}
.y21{bottom:752.101867pt;}
.y20{bottom:768.097867pt;}
.ydd{bottom:781.986933pt;}
.y1f{bottom:784.093867pt;}
.y1e{bottom:800.089867pt;}
.ydc{bottom:804.653600pt;}
.y1d{bottom:816.089867pt;}
.y1c{bottom:832.081867pt;}
.y1b{bottom:850.752533pt;}
.y1a{bottom:869.423200pt;}
.y19{bottom:914.395733pt;}
.y18{bottom:937.069067pt;}
.y5{bottom:1032.241333pt;}
.y4{bottom:1617.098933pt;}
.y3{bottom:1629.098933pt;}
.y2{bottom:1652.647200pt;}
.y1{bottom:1675.313867pt;}
.yec{bottom:1707.563867pt;}
.h95{height:28.933333pt;}
.h5{height:31.360000pt;}
.h3{height:33.066667pt;}
.h6{height:37.200000pt;}
.h9{height:41.333333pt;}
.h8{height:45.466667pt;}
.h5d{height:48.119551pt;}
.h25{height:48.119553pt;}
.h4e{height:48.119591pt;}
.h72{height:48.119641pt;}
.h8f{height:48.119656pt;}
.hd{height:48.119661pt;}
.h57{height:48.119664pt;}
.h2d{height:48.119685pt;}
.h2f{height:48.119694pt;}
.h66{height:48.119701pt;}
.h71{height:48.119720pt;}
.h24{height:48.119730pt;}
.h22{height:48.119732pt;}
.h10{height:48.119734pt;}
.h6a{height:48.119740pt;}
.h78{height:48.119747pt;}
.h3e{height:48.119755pt;}
.h5f{height:48.119757pt;}
.h35{height:48.119766pt;}
.h30{height:48.119771pt;}
.h77{height:48.119781pt;}
.h1d{height:48.119785pt;}
.h61{height:48.119788pt;}
.h29{height:48.119800pt;}
.h63{height:48.119801pt;}
.h58{height:48.119803pt;}
.h7e{height:48.119809pt;}
.h7f{height:48.119813pt;}
.h1b{height:48.119814pt;}
.h42{height:48.119815pt;}
.h45{height:48.119828pt;}
.hc{height:48.119830pt;}
.h3b{height:48.119832pt;}
.h40{height:48.119833pt;}
.h39{height:48.119834pt;}
.h6f{height:48.119837pt;}
.h62{height:48.119839pt;}
.h8d{height:48.119843pt;}
.h37{height:48.119846pt;}
.h83{height:48.119847pt;}
.h4a{height:48.119850pt;}
.h74{height:48.119859pt;}
.h5a{height:48.119867pt;}
.h27{height:48.119869pt;}
.h69{height:48.119870pt;}
.h32{height:48.119877pt;}
.h65{height:48.119879pt;}
.h8e{height:48.119882pt;}
.h87{height:48.119885pt;}
.h44{height:48.119887pt;}
.h11{height:48.119889pt;}
.hb{height:48.119895pt;}
.h41{height:48.119897pt;}
.h6c{height:48.119901pt;}
.h4d{height:48.119906pt;}
.hf{height:48.119909pt;}
.h18{height:48.119913pt;}
.h28{height:48.119918pt;}
.h76{height:48.119919pt;}
.h7a{height:48.119924pt;}
.h15{height:48.119927pt;}
.h1c{height:48.119929pt;}
.h84{height:48.119931pt;}
.h34{height:48.119940pt;}
.h3a{height:48.119943pt;}
.h60{height:48.119949pt;}
.h3f{height:48.119962pt;}
.h12{height:48.119963pt;}
.h49{height:48.119965pt;}
.h23{height:48.119970pt;}
.h55{height:48.119971pt;}
.h79{height:48.119973pt;}
.h53{height:48.119974pt;}
.h14{height:48.119978pt;}
.h16{height:48.119981pt;}
.h73{height:48.119985pt;}
.h92{height:48.119992pt;}
.h89{height:48.119993pt;}
.h8c{height:48.119999pt;}
.h19{height:48.120000pt;}
.h50{height:48.120002pt;}
.h6d{height:48.120003pt;}
.h3d{height:48.120021pt;}
.h46{height:48.120023pt;}
.h90{height:48.120025pt;}
.h2b{height:48.120027pt;}
.h2c{height:48.120028pt;}
.h26{height:48.120032pt;}
.h38{height:48.120039pt;}
.h7b{height:48.120042pt;}
.h47{height:48.120043pt;}
.h4b{height:48.120048pt;}
.h21{height:48.120053pt;}
.h5b{height:48.120065pt;}
.h80{height:48.120066pt;}
.h43{height:48.120070pt;}
.h81{height:48.120078pt;}
.h86{height:48.120082pt;}
.h82{height:48.120084pt;}
.h20{height:48.120090pt;}
.h85{height:48.120093pt;}
.h70{height:48.120101pt;}
.h59{height:48.120104pt;}
.h51{height:48.120106pt;}
.h17{height:48.120131pt;}
.h5c{height:48.120141pt;}
.h1a{height:48.120150pt;}
.h5e{height:48.120160pt;}
.h54{height:48.120176pt;}
.h2a{height:48.120178pt;}
.h31{height:48.120189pt;}
.h7c{height:48.120199pt;}
.h88{height:48.120200pt;}
.h52{height:48.120202pt;}
.h4f{height:48.120203pt;}
.h8a{height:48.120221pt;}
.h56{height:48.120224pt;}
.h33{height:48.120228pt;}
.h91{height:48.120231pt;}
.he{height:48.120233pt;}
.h2e{height:48.120243pt;}
.h6e{height:48.120254pt;}
.h1e{height:48.120277pt;}
.h36{height:48.120281pt;}
.h75{height:48.120288pt;}
.h48{height:48.120290pt;}
.h7d{height:48.120319pt;}
.h6b{height:48.120324pt;}
.h68{height:48.120329pt;}
.h1f{height:48.120335pt;}
.h8b{height:48.120336pt;}
.h13{height:48.120355pt;}
.h64{height:48.120384pt;}
.h67{height:48.120409pt;}
.h3c{height:48.120414pt;}
.h4c{height:48.120455pt;}
.h2{height:66.640000pt;}
.h7{height:74.480000pt;}
.ha{height:186.045632pt;}
.h4{height:556.129333pt;}
.h0{height:1869.133333pt;}
.h1{height:1869.333333pt;}
.h94{height:1878.666667pt;}
.h93{height:1878.720000pt;}
.w2{width:593.268000pt;}
.w0{width:597.165333pt;}
.w1{width:597.333333pt;}
.x0{left:0.000000pt;}
.x5{left:1.949333pt;}
.x29{left:17.148400pt;}
.x2a{left:21.046267pt;}
.x2b{left:24.928400pt;}
.x2c{left:28.811200pt;}
.x2d{left:32.792267pt;}
.x2e{left:36.820933pt;}
.x2f{left:40.737600pt;}
.x30{left:44.660800pt;}
.x31{left:48.513733pt;}
.x32{left:52.379600pt;}
.x33{left:56.254533pt;}
.x34{left:60.106800pt;}
.x35{left:63.945333pt;}
.x36{left:67.804000pt;}
.x37{left:71.655600pt;}
.x38{left:75.507200pt;}
.x39{left:79.348933pt;}
.x3a{left:83.213600pt;}
.x3b{left:87.069600pt;}
.x16{left:90.657467pt;}
.x17{left:91.820133pt;}
.x6{left:93.415200pt;}
.x3c{left:94.836533pt;}
.x7{left:98.588533pt;}
.x3d{left:102.631467pt;}
.x92{left:104.880080pt;}
.x24{left:106.421333pt;}
.x18{left:109.953467pt;}
.x3e{left:114.339200pt;}
.x90{left:115.734667pt;}
.x7c{left:117.040400pt;}
.x3f{left:118.217467pt;}
.x19{left:119.796800pt;}
.x91{left:121.217467pt;}
.x40{left:122.160800pt;}
.xa{left:125.368400pt;}
.x9{left:126.393067pt;}
.x7d{left:127.718800pt;}
.x8{left:129.500533pt;}
.x1a{left:133.012933pt;}
.x23{left:138.442667pt;}
.x41{left:141.619200pt;}
.x42{left:145.501333pt;}
.x3{left:147.322933pt;}
.x43{left:149.408800pt;}
.x44{left:153.271467pt;}
.x7e{left:155.402933pt;}
.x45{left:157.140667pt;}
.x27{left:160.705200pt;}
.x46{left:164.806667pt;}
.x5c{left:169.039067pt;}
.x5d{left:172.877600pt;}
.x47{left:177.020133pt;}
.x4{left:179.184267pt;}
.x5e{left:180.640667pt;}
.x2{left:182.428267pt;}
.x5f{left:184.476533pt;}
.x60{left:188.322267pt;}
.x48{left:189.844400pt;}
.x61{left:192.194667pt;}
.x26{left:195.285200pt;}
.x28{left:198.292933pt;}
.x62{left:200.112667pt;}
.x84{left:201.140667pt;}
.x49{left:202.321600pt;}
.x63{left:204.110000pt;}
.x64{left:208.052133pt;}
.x1{left:209.877600pt;}
.x4a{left:211.524133pt;}
.x85{left:214.080667pt;}
.x65{left:215.833333pt;}
.x66{left:219.729200pt;}
.x4b{left:222.276667pt;}
.x67{left:223.617200pt;}
.x7f{left:226.337200pt;}
.x68{left:227.513733pt;}
.x4c{left:231.656933pt;}
.x69{left:235.308533pt;}
.x86{left:236.792933pt;}
.xc{left:238.422667pt;}
.x95{left:239.497333pt;}
.x4d{left:241.014267pt;}
.x6a{left:243.198533pt;}
.x1b{left:245.490800pt;}
.xb{left:247.884000pt;}
.xe{left:251.484267pt;}
.x4e{left:253.336533pt;}
.x6b{left:256.575467pt;}
.x94{left:258.142933pt;}
.x80{left:261.089867pt;}
.x93{left:263.209600pt;}
.x4f{left:266.320933pt;}
.xd{left:269.953333pt;}
.xf{left:272.165200pt;}
.x87{left:278.229867pt;}
.x1d{left:279.227733pt;}
.x6c{left:281.695333pt;}
.x50{left:282.700533pt;}
.x1c{left:283.656133pt;}
.x1e{left:285.550667pt;}
.x88{left:287.173867pt;}
.x51{left:291.690800pt;}
.x89{left:298.185600pt;}
.x6d{left:301.264933pt;}
.x8a{left:302.919867pt;}
.x52{left:305.048800pt;}
.x25{left:306.179733pt;}
.x8b{left:312.304000pt;}
.x6e{left:314.018933pt;}
.x8c{left:316.966800pt;}
.x53{left:318.440800pt;}
.x81{left:325.534533pt;}
.x6f{left:327.452533pt;}
.x54{left:330.620400pt;}
.x55{left:334.504533pt;}
.x82{left:336.313200pt;}
.x70{left:341.013733pt;}
.x56{left:343.830133pt;}
.x8d{left:348.973333pt;}
.x71{left:353.252000pt;}
.x57{left:354.708933pt;}
.x72{left:357.158267pt;}
.x58{left:364.085333pt;}
.x73{left:367.663467pt;}
.x83{left:371.556667pt;}
.x59{left:374.916000pt;}
.x74{left:376.874400pt;}
.x5a{left:384.116533pt;}
.x8e{left:386.576133pt;}
.x75{left:389.384800pt;}
.x11{left:390.689067pt;}
.x14{left:396.314400pt;}
.x5b{left:398.267600pt;}
.x76{left:400.193333pt;}
.x20{left:401.228667pt;}
.x96{left:402.540400pt;}
.x12{left:404.054400pt;}
.x1f{left:405.186000pt;}
.x8f{left:406.392533pt;}
.x10{left:408.171733pt;}
.x77{left:411.742800pt;}
.x78{left:416.473333pt;}
.x15{left:423.674400pt;}
.x22{left:427.261600pt;}
.x13{left:428.171733pt;}
.x79{left:429.899067pt;}
.x21{left:431.340667pt;}
.x7a{left:442.465467pt;}
.x7b{left:453.176400pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  