
    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_c40f49317ccfcb16c2ed0841.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_e74115798c709bab883955d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_e9c6090414e075c8402f90c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_93279d714ee04a94f36dbf2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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:ff5;src:url('chunks/assets/font_a224dc52b948f125c9db7ee3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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:ff6;src:url('chunks/assets/font_d2de524a9581ad3be4a7f571.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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:ff7;src:url('chunks/assets/font_861725fc9130c01ea9570cd3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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:ff8;src:url('chunks/assets/font_2d95ec6d9bfc8f46cd1a412a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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:ff9;src:url('chunks/assets/font_076b6c9f8a5eb2e712954e8c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734375;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:ffa;src:url('chunks/assets/font_2715c72f74b07915432603a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734375;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:ffb;src:url('chunks/assets/font_806aa386e45b65bee147b835.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734375;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:ffc;src:url('chunks/assets/font_210f9638e7a18dc4f47a5646.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.925781;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:ffd;src:url('chunks/assets/font_191d7e362167316be9392721.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.957031;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:ffe;src:url('chunks/assets/font_1b153ee11b5da508c5355804.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717285;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:fff;src:url('chunks/assets/font_605fd8744a3e228e02bb492c.woff2')format("woff");}.fff{font-family:fff;line-height:0.793945;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:ff10;src:url('chunks/assets/font_4ed8a8fd70d5d6d9e9af1618.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.717285;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:ff11;src:url('chunks/assets/font_22932f5cc9afc46fc030460a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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:ff12;src:url('chunks/assets/font_173766f6b3f41f41b8d0c73d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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:ff13;src:url('chunks/assets/font_c71632e34ce4dcbf9c3da4f2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.811035;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:ff14;src:url('chunks/assets/font_7e5de789351dec1b30f68f47.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.793945;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:ff15;src:url('chunks/assets/font_b73f36c14870a4323ab555ce.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.717285;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;}
.m8{transform:matrix(0.000000,0.250599,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250599,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250599,-0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,0.250080,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250080,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250080,-0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,0.249998,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249998,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249998,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250738,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250738,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250738,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249403,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,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);}
.mb{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.849135px;}
.ls13{letter-spacing:-0.549709px;}
.ls3{letter-spacing:-0.397440px;}
.ls5{letter-spacing:-0.240873px;}
.ls15{letter-spacing:-0.212003px;}
.ls14{letter-spacing:-0.208038px;}
.ls16{letter-spacing:-0.208037px;}
.ls2{letter-spacing:-0.174633px;}
.ls1a{letter-spacing:-0.162198px;}
.ls17{letter-spacing:-0.081099px;}
.ls19{letter-spacing:-0.035260px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012044px;}
.ls1b{letter-spacing:0.045839px;}
.ls9{letter-spacing:0.048924px;}
.ls1{letter-spacing:0.168611px;}
.ls1c{letter-spacing:0.253875px;}
.ls18{letter-spacing:0.299714px;}
.ls1d{letter-spacing:0.345552px;}
.ls7{letter-spacing:6.756000px;}
.ls8{letter-spacing:319.860000px;}
.ls12{letter-spacing:330.338155px;}
.ls11{letter-spacing:334.252065px;}
.lsd{letter-spacing:336.191390px;}
.lsb{letter-spacing:338.165976px;}
.lsa{letter-spacing:340.105301px;}
.lsc{letter-spacing:342.079886px;}
.ls10{letter-spacing:344.019211px;}
.lsf{letter-spacing:345.993797px;}
.lse{letter-spacing:353.821618px;}
.ls6{letter-spacing:843.984000px;}
.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;}
}
.ws10{word-spacing:-336.540000px;}
.wsb{word-spacing:-11.741444px;}
.ws0{word-spacing:-11.702638px;}
.ws13{word-spacing:-11.122029px;}
.ws16{word-spacing:-10.102120px;}
.ws1a{word-spacing:-10.056282px;}
.ws18{word-spacing:-9.848245px;}
.ws17{word-spacing:-9.767146px;}
.ws19{word-spacing:-9.721307px;}
.ws1b{word-spacing:-9.594370px;}
.ws5{word-spacing:-0.198720px;}
.wsd{word-spacing:-0.059130px;}
.ws3{word-spacing:-0.058955px;}
.ws2{word-spacing:-0.058934px;}
.ws8{word-spacing:-0.042153px;}
.ws14{word-spacing:-0.040770px;}
.ws9{word-spacing:-0.030109px;}
.ws12{word-spacing:-0.027485px;}
.ws1d{word-spacing:-0.026535px;}
.ws1c{word-spacing:-0.021228px;}
.ws11{word-spacing:-0.013743px;}
.wsf{word-spacing:0.000000px;}
.ws6{word-spacing:0.144524px;}
.wsa{word-spacing:0.210764px;}
.ws7{word-spacing:0.367331px;}
.ws1{word-spacing:161.142799px;}
.wsc{word-spacing:161.677149px;}
.ws4{word-spacing:177.307594px;}
.wse{word-spacing:177.895547px;}
.ws15{word-spacing:270.581821px;}
._9{margin-left:-319.860000px;}
._7{margin-left:-157.499341px;}
._8{margin-left:-149.248741px;}
._5{margin-left:-140.999561px;}
._6{margin-left:-132.750161px;}
._4{margin-left:-124.740653px;}
._3{margin-left:-5.051498px;}
._1{margin-left:-3.367666px;}
._2{margin-left:-1.262875px;}
._0{width:1.262875px;}
._a{width:136.982276px;}
.fc5{color:rgb(111,168,220);}
.fc4{color:rgb(246,178,107);}
.fc2{color:transparent;}
.fc3{color:rgb(80,80,80);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:13.742718px;}
.fs8{font-size:19.436581px;}
.fs16{font-size:21.228370px;}
.fs15{font-size:26.527014px;}
.fs17{font-size:26.535462px;}
.fsf{font-size:27.419790px;}
.fs11{font-size:27.485436px;}
.fs4{font-size:30.109088px;}
.fsa{font-size:34.278286px;}
.fs9{font-size:34.613919px;}
.fs14{font-size:35.260454px;}
.fs12{font-size:35.260685px;}
.fsb{font-size:35.992203px;}
.fs7{font-size:38.873162px;}
.fs13{font-size:40.769900px;}
.fs1{font-size:42.095820px;}
.fs5{font-size:42.235410px;}
.fsc{font-size:43.953095px;}
.fs2{font-size:58.934148px;}
.fs3{font-size:58.955442px;}
.fs6{font-size:59.129574px;}
.fse{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:84.000000px;}
.y132{bottom:-448.145073px;}
.y178{bottom:-443.177081px;}
.y177{bottom:-434.897093px;}
.y176{bottom:-426.617105px;}
.y175{bottom:-418.337118px;}
.y174{bottom:-410.057130px;}
.y173{bottom:-401.777143px;}
.y172{bottom:-393.504026px;}
.y171{bottom:-385.224039px;}
.y170{bottom:-376.944051px;}
.y16f{bottom:-368.664064px;}
.y16e{bottom:-360.384076px;}
.y16d{bottom:-352.104088px;}
.y16c{bottom:-343.824101px;}
.y16b{bottom:-335.544113px;}
.y16a{bottom:-327.264126px;}
.y169{bottom:-318.984138px;}
.y168{bottom:-310.704150px;}
.y167{bottom:-302.431034px;}
.y166{bottom:-294.151047px;}
.y165{bottom:-285.871059px;}
.y164{bottom:-277.591071px;}
.y163{bottom:-269.311084px;}
.y162{bottom:-261.031096px;}
.y161{bottom:-252.751109px;}
.y160{bottom:-244.471121px;}
.y15f{bottom:-236.191133px;}
.y15e{bottom:-227.911146px;}
.y15d{bottom:-219.631158px;}
.y15c{bottom:-211.351171px;}
.y15b{bottom:-203.078054px;}
.y15a{bottom:-194.798067px;}
.y159{bottom:-186.518079px;}
.y158{bottom:-178.238092px;}
.y157{bottom:-169.958104px;}
.y156{bottom:-161.678116px;}
.y155{bottom:-153.398129px;}
.y154{bottom:-145.118141px;}
.y153{bottom:-136.838154px;}
.y152{bottom:-128.558166px;}
.y151{bottom:-120.278178px;}
.y150{bottom:-111.998191px;}
.y14f{bottom:-103.725075px;}
.y14e{bottom:-95.445087px;}
.y14d{bottom:-87.165099px;}
.y14c{bottom:-78.885112px;}
.y14b{bottom:-70.605124px;}
.y14a{bottom:-62.325137px;}
.y44{bottom:-57.100073px;}
.y149{bottom:-54.045149px;}
.y148{bottom:-45.765161px;}
.y147{bottom:-37.485174px;}
.y146{bottom:-29.205186px;}
.y145{bottom:-20.925199px;}
.y144{bottom:-12.645211px;}
.y143{bottom:-4.372095px;}
.y19f{bottom:-0.666515px;}
.y0{bottom:0.000000px;}
.y1e5{bottom:3.413312px;}
.y142{bottom:3.907893px;}
.y125{bottom:3.960000px;}
.y42{bottom:7.390723px;}
.y1e4{bottom:11.407120px;}
.y141{bottom:12.187880px;}
.y1e3{bottom:19.400928px;}
.y140{bottom:20.467868px;}
.ybc{bottom:21.073357px;}
.y124{bottom:24.300000px;}
.yc6{bottom:24.607788px;}
.y1e2{bottom:27.394736px;}
.y41{bottom:27.617765px;}
.y179{bottom:27.937035px;}
.y62{bottom:28.472771px;}
.y13f{bottom:28.747856px;}
.y46{bottom:28.800041px;}
.ye6{bottom:30.803199px;}
.y1e1{bottom:35.388544px;}
.y13e{bottom:37.027843px;}
.yc7{bottom:39.185248px;}
.ye5{bottom:41.736294px;}
.y1e0{bottom:43.382352px;}
.yf4{bottom:44.337261px;}
.y17a{bottom:45.115433px;}
.y13d{bottom:45.307831px;}
.yff{bottom:45.911880px;}
.ya{bottom:50.644179px;}
.y1df{bottom:51.376160px;}
.y80{bottom:51.954491px;}
.y13c{bottom:53.587818px;}
.yc8{bottom:53.762612px;}
.yfe{bottom:55.552625px;}
.yf5{bottom:57.191587px;}
.ye0{bottom:58.135888px;}
.y11e{bottom:58.335000px;}
.y1de{bottom:59.369968px;}
.yb{bottom:60.747175px;}
.y13b{bottom:61.867806px;}
.y7f{bottom:62.100041px;}
.y17b{bottom:62.293830px;}
.y1dd{bottom:67.363776px;}
.yc9{bottom:68.340071px;}
.yf6{bottom:70.045914px;}
.y13a{bottom:70.147794px;}
.yc{bottom:70.829124px;}
.y7e{bottom:72.245441px;}
.ye2{bottom:74.535482px;}
.yfc{bottom:74.834238px;}
.y1dc{bottom:75.350950px;}
.ydc{bottom:77.268732px;}
.y139{bottom:78.427781px;}
.y17c{bottom:79.472228px;}
.yd{bottom:80.911073px;}
.y7d{bottom:82.390886px;}
.yf7{bottom:82.900241px;}
.yca{bottom:82.917531px;}
.y1db{bottom:83.344758px;}
.yfd{bottom:84.474983px;}
.yba{bottom:85.778005px;}
.y138{bottom:86.700897px;}
.ye{bottom:90.993022px;}
.y1da{bottom:91.338566px;}
.y7c{bottom:92.536436px;}
.y100{bottom:94.115728px;}
.ye7{bottom:94.123884px;}
.y137{bottom:94.980885px;}
.yf8{bottom:95.754690px;}
.y17d{bottom:96.650625px;}
.ycb{bottom:97.494991px;}
.y1d9{bottom:99.332374px;}
.yf{bottom:101.096019px;}
.y7b{bottom:102.681836px;}
.y136{bottom:103.260873px;}
.yb9{bottom:106.072120px;}
.y1d8{bottom:107.326182px;}
.yf9{bottom:108.609004px;}
.ye8{bottom:109.840237px;}
.y10{bottom:111.177968px;}
.y135{bottom:111.540860px;}
.ycc{bottom:112.072354px;}
.y7a{bottom:112.827236px;}
.y17e{bottom:113.829023px;}
.y1d7{bottom:115.319989px;}
.y134{bottom:119.820848px;}
.y11{bottom:121.259917px;}
.yfa{bottom:121.463355px;}
.y79{bottom:122.972786px;}
.y1d6{bottom:123.313797px;}
.ye4{bottom:124.987096px;}
.ycd{bottom:126.649814px;}
.y133{bottom:128.100835px;}
.y82{bottom:129.174889px;}
.y17f{bottom:131.007420px;}
.y1d5{bottom:131.307605px;}
.y12{bottom:131.341865px;}
.y78{bottom:132.790886px;}
.yfb{bottom:134.317719px;}
.y1d4{bottom:139.301413px;}
.y83{bottom:139.311388px;}
.ye3{bottom:139.849255px;}
.yce{bottom:141.227274px;}
.y13{bottom:141.444862px;}
.y77{bottom:142.936421px;}
.y11f{bottom:144.765000px;}
.y1d3{bottom:147.295221px;}
.y84{bottom:149.426768px;}
.y14{bottom:151.526811px;}
.y76{bottom:153.081821px;}
.ydf{bottom:154.569016px;}
.y1d2{bottom:155.289029px;}
.ycf{bottom:155.804733px;}
.y85{bottom:159.542149px;}
.y126{bottom:159.870000px;}
.y15{bottom:161.608760px;}
.y75{bottom:163.227221px;}
.y1d1{bottom:163.282837px;}
.y101{bottom:166.652253px;}
.yde{bottom:169.217627px;}
.y86{bottom:169.657530px;}
.yd0{bottom:170.382097px;}
.y1d0{bottom:171.270011px;}
.y16{bottom:171.690709px;}
.y74{bottom:173.372771px;}
.y1cf{bottom:179.263819px;}
.y87{bottom:179.794028px;}
.y17{bottom:181.793706px;}
.y73{bottom:183.518171px;}
.yd1{bottom:184.959557px;}
.y1ce{bottom:187.257627px;}
.y88{bottom:189.909409px;}
.y18{bottom:191.875655px;}
.y72{bottom:193.663721px;}
.y1cd{bottom:195.251435px;}
.yd2{bottom:199.537016px;}
.y89{bottom:200.024790px;}
.ye1{bottom:201.141371px;}
.y19{bottom:201.957604px;}
.y1cc{bottom:203.245243px;}
.y71{bottom:203.809121px;}
.ydd{bottom:205.732427px;}
.y19d{bottom:208.739017px;}
.y8a{bottom:210.140170px;}
.y1cb{bottom:211.239051px;}
.y1a{bottom:212.039552px;}
.y70{bottom:213.954524px;}
.yd3{bottom:214.114476px;}
.ydb{bottom:216.665522px;}
.y1ca{bottom:219.232859px;}
.y19c{bottom:219.482452px;}
.y8b{bottom:220.276669px;}
.y118{bottom:220.320000px;}
.y1b{bottom:222.142549px;}
.y6f{bottom:224.100074px;}
.y1c9{bottom:227.226667px;}
.yd4{bottom:228.691840px;}
.y19b{bottom:229.950397px;}
.y8c{bottom:230.392049px;}
.y120{bottom:231.210000px;}
.y1c{bottom:232.224498px;}
.yd9{bottom:233.065116px;}
.y6e{bottom:234.245473px;}
.y1c8{bottom:235.220475px;}
.y8d{bottom:240.507430px;}
.y19a{bottom:240.693832px;}
.y1d{bottom:242.306447px;}
.y1c7{bottom:243.214282px;}
.yd5{bottom:243.269299px;}
.y6d{bottom:244.390871px;}
.y130{bottom:246.240000px;}
.yda{bottom:249.464710px;}
.y8e{bottom:250.622811px;}
.y199{bottom:251.161762px;}
.y1c6{bottom:251.208090px;}
.y8{bottom:252.360000px;}
.y1e{bottom:252.388396px;}
.y6c{bottom:254.536421px;}
.yd6{bottom:257.846759px;}
.y117{bottom:258.840000px;}
.y1c5{bottom:259.201898px;}
.y8f{bottom:260.759309px;}
.y198{bottom:261.905197px;}
.y1f{bottom:262.470345px;}
.y6b{bottom:264.681821px;}
.y1c4{bottom:267.189072px;}
.y90{bottom:270.874690px;}
.y197{bottom:272.373097px;}
.yd7{bottom:272.424180px;}
.y20{bottom:272.573342px;}
.y6a{bottom:274.827221px;}
.y1c3{bottom:275.182880px;}
.y116{bottom:280.080000px;}
.y91{bottom:280.990071px;}
.y21{bottom:282.655290px;}
.y196{bottom:283.116547px;}
.y1c2{bottom:283.176688px;}
.y69{bottom:284.972771px;}
.y12f{bottom:285.120000px;}
.yd8{bottom:287.001611px;}
.y7{bottom:290.880000px;}
.y92{bottom:291.105451px;}
.y1c1{bottom:291.170496px;}
.y22{bottom:292.737239px;}
.y195{bottom:293.584447px;}
.y68{bottom:294.790871px;}
.y10b{bottom:294.840000px;}
.y1c0{bottom:299.164304px;}
.y43{bottom:300.314487px;}
.y115{bottom:300.600000px;}
.y93{bottom:301.241950px;}
.y23{bottom:302.819188px;}
.y194{bottom:304.327897px;}
.y67{bottom:304.936421px;}
.y12e{bottom:306.000000px;}
.y1bf{bottom:307.158112px;}
.y94{bottom:311.357330px;}
.y6{bottom:312.120000px;}
.y24{bottom:312.922185px;}
.y193{bottom:314.795947px;}
.y66{bottom:315.081821px;}
.y1be{bottom:315.151920px;}
.y121{bottom:317.640000px;}
.y181{bottom:320.305500px;}
.ye9{bottom:320.987355px;}
.y95{bottom:321.472711px;}
.y114{bottom:321.480000px;}
.y25{bottom:323.004134px;}
.y1bd{bottom:323.145728px;}
.y65{bottom:325.227221px;}
.y192{bottom:325.539247px;}
.y12d{bottom:326.880000px;}
.y1bc{bottom:331.139536px;}
.y96{bottom:331.588092px;}
.y5{bottom:332.640000px;}
.y26{bottom:333.086083px;}
.y10a{bottom:333.720000px;}
.y64{bottom:335.372771px;}
.y191{bottom:336.007297px;}
.y1bb{bottom:339.133344px;}
.y97{bottom:341.703472px;}
.y113{bottom:342.000000px;}
.y27{bottom:343.168032px;}
.y63{bottom:345.518171px;}
.y190{bottom:346.750747px;}
.y1ba{bottom:347.127152px;}
.y12c{bottom:347.400000px;}
.y98{bottom:351.839971px;}
.y28{bottom:353.271028px;}
.y4{bottom:353.520000px;}
.y109{bottom:354.600000px;}
.y1b9{bottom:355.114326px;}
.y60{bottom:355.663721px;}
.y18f{bottom:357.218647px;}
.y99{bottom:361.955351px;}
.y112{bottom:362.880000px;}
.y1b8{bottom:363.108134px;}
.y29{bottom:363.352977px;}
.y5f{bottom:365.809121px;}
.y18e{bottom:367.962097px;}
.y12b{bottom:368.280000px;}
.y1b7{bottom:371.101942px;}
.y9a{bottom:372.070732px;}
.y2a{bottom:373.434926px;}
.y3{bottom:374.040000px;}
.y108{bottom:375.120000px;}
.y5e{bottom:375.954521px;}
.y18d{bottom:378.429997px;}
.y1b6{bottom:379.095749px;}
.ybb{bottom:379.673106px;}
.y9b{bottom:382.186113px;}
.y111{bottom:383.400000px;}
.y2b{bottom:383.516875px;}
.y5d{bottom:386.100041px;}
.y1b5{bottom:387.089557px;}
.y12a{bottom:388.800000px;}
.y18c{bottom:389.173447px;}
.y9c{bottom:392.322611px;}
.y2c{bottom:393.619872px;}
.y2{bottom:394.920000px;}
.y1b4{bottom:395.083365px;}
.y107{bottom:396.000000px;}
.y5c{bottom:396.245441px;}
.y11b{bottom:399.120000px;}
.y18b{bottom:399.641347px;}
.y9d{bottom:402.437992px;}
.y1b3{bottom:403.077173px;}
.y2d{bottom:403.701821px;}
.y122{bottom:404.070000px;}
.y110{bottom:404.280000px;}
.y5b{bottom:406.390841px;}
.y129{bottom:409.680000px;}
.y18a{bottom:410.384797px;}
.y1b2{bottom:411.070981px;}
.y9e{bottom:412.553373px;}
.y2e{bottom:413.783770px;}
.y106{bottom:416.520000px;}
.y5a{bottom:416.536391px;}
.y1b1{bottom:419.064789px;}
.y189{bottom:420.852697px;}
.y9f{bottom:422.668753px;}
.y11c{bottom:423.330000px;}
.y2f{bottom:423.865719px;}
.y10f{bottom:424.800000px;}
.y47{bottom:425.400000px;}
.y9{bottom:426.436500px;}
.y1{bottom:426.600000px;}
.y59{bottom:426.681791px;}
.y1b0{bottom:427.058597px;}
.y128{bottom:430.200000px;}
.y188{bottom:431.596147px;}
.ya0{bottom:432.805252px;}
.y30{bottom:433.968715px;}
.y1af{bottom:435.052405px;}
.y58{bottom:436.827191px;}
.y105{bottom:437.400000px;}
.y11a{bottom:441.300000px;}
.y187{bottom:442.064047px;}
.ya1{bottom:442.920632px;}
.y1ae{bottom:443.046213px;}
.y31{bottom:444.050664px;}
.y57{bottom:446.972741px;}
.y1ad{bottom:451.033387px;}
.y186{bottom:452.807497px;}
.ya2{bottom:453.036013px;}
.y32{bottom:454.132613px;}
.y11d{bottom:455.545050px;}
.y56{bottom:456.790841px;}
.y10e{bottom:456.840000px;}
.y104{bottom:457.920000px;}
.y1e6{bottom:458.960856px;}
.y1ac{bottom:459.027195px;}
.y180{bottom:460.923300px;}
.y19e{bottom:461.267700px;}
.y127{bottom:462.240000px;}
.ya3{bottom:463.151394px;}
.y185{bottom:463.275547px;}
.y33{bottom:464.214562px;}
.y55{bottom:466.936391px;}
.y1ab{bottom:467.021003px;}
.ya4{bottom:473.287892px;}
.y184{bottom:474.018997px;}
.y34{bottom:474.296511px;}
.y1aa{bottom:475.014811px;}
.y1e7{bottom:475.545520px;}
.y54{bottom:477.081791px;}
.y103{bottom:478.800000px;}
.y1a9{bottom:483.008619px;}
.ya5{bottom:483.403273px;}
.y35{bottom:484.399508px;}
.y53{bottom:487.227191px;}
.y123{bottom:490.500000px;}
.y1a8{bottom:491.002427px;}
.y1e8{bottom:492.130184px;}
.ya6{bottom:493.518654px;}
.y36{bottom:494.481457px;}
.y52{bottom:497.372741px;}
.y119{bottom:498.010050px;}
.y1a7{bottom:498.996235px;}
.ya7{bottom:503.634034px;}
.y37{bottom:504.563406px;}
.y1a6{bottom:506.990042px;}
.y51{bottom:507.518141px;}
.y1e9{bottom:508.714847px;}
.y102{bottom:510.840000px;}
.ya8{bottom:513.770533px;}
.y38{bottom:514.645354px;}
.y1a5{bottom:514.983850px;}
.y182{bottom:515.890747px;}
.y50{bottom:517.663691px;}
.y1a4{bottom:522.977658px;}
.ya9{bottom:523.885913px;}
.y39{bottom:524.748351px;}
.y1ea{bottom:525.299511px;}
.y4f{bottom:527.809091px;}
.y1a3{bottom:530.971466px;}
.yaa{bottom:534.001294px;}
.y3a{bottom:534.830300px;}
.y4e{bottom:537.954491px;}
.yc4{bottom:538.920000px;}
.y1a2{bottom:538.965274px;}
.y1eb{bottom:541.884175px;}
.yab{bottom:544.116675px;}
.y3b{bottom:544.912249px;}
.y1a1{bottom:546.952448px;}
.y4d{bottom:548.100041px;}
.yac{bottom:554.232056px;}
.y1a0{bottom:554.946256px;}
.y3c{bottom:554.994198px;}
.y4c{bottom:557.918141px;}
.y1ec{bottom:558.468839px;}
.yad{bottom:564.368554px;}
.y3d{bottom:565.097195px;}
.y183{bottom:565.200247px;}
.y4b{bottom:567.409091px;}
.yae{bottom:574.483935px;}
.y3e{bottom:575.179144px;}
.y4a{bottom:577.227191px;}
.yc3{bottom:577.800000px;}
.yaf{bottom:584.599315px;}
.y3f{bottom:585.261093px;}
.y49{bottom:587.045441px;}
.yb0{bottom:594.714696px;}
.y40{bottom:595.343041px;}
.y48{bottom:596.536391px;}
.yc2{bottom:598.680000px;}
.yb1{bottom:604.851194px;}
.yb2{bottom:614.966575px;}
.yc1{bottom:619.560000px;}
.yb3{bottom:625.081956px;}
.yb4{bottom:635.197336px;}
.yc0{bottom:640.080000px;}
.yf2{bottom:643.680000px;}
.yb5{bottom:645.333835px;}
.yb6{bottom:655.449216px;}
.ybf{bottom:660.960000px;}
.yb7{bottom:665.564596px;}
.yb8{bottom:675.679977px;}
.ybe{bottom:681.480000px;}
.yf1{bottom:682.560000px;}
.yf0{bottom:703.440000px;}
.yc5{bottom:712.203000px;}
.ybd{bottom:713.520000px;}
.yef{bottom:724.320000px;}
.y61{bottom:742.445400px;}
.yee{bottom:744.840000px;}
.yed{bottom:765.720000px;}
.yec{bottom:786.240000px;}
.yf3{bottom:817.023300px;}
.yeb{bottom:818.280000px;}
.y131{bottom:828.747600px;}
.y10d{bottom:987.480000px;}
.y45{bottom:1003.936350px;}
.y10c{bottom:1024.920000px;}
.y81{bottom:1028.290800px;}
.yea{bottom:1062.360000px;}
.h1c{height:10.125860px;}
.hf{height:14.083929px;}
.h24{height:15.641411px;}
.h23{height:19.545539px;}
.h25{height:19.551764px;}
.h1b{height:20.203351px;}
.h1d{height:20.251720px;}
.h8{height:21.934941px;}
.h12{height:24.838367px;}
.h10{height:25.081570px;}
.h21{height:25.687792px;}
.h1f{height:25.687960px;}
.h13{height:26.080288px;}
.he{height:28.167857px;}
.h20{height:29.681602px;}
.h4{height:31.016891px;}
.hb{height:31.119743px;}
.h14{height:31.848825px;}
.h5{height:42.675460px;}
.h6{height:42.690879px;}
.hc{height:42.816972px;}
.h18{height:44.150391px;}
.h1{height:47.988281px;}
.ha{height:48.436410px;}
.h2{height:50.027344px;}
.h19{height:52.980469px;}
.h16{height:61.810547px;}
.h7{height:63.163635px;}
.h1a{height:136.909815px;}
.h11{height:223.425000px;}
.hd{height:365.696850px;}
.h15{height:467.535000px;}
.h17{height:510.000000px;}
.h22{height:564.167250px;}
.h1e{height:579.525000px;}
.h3{height:619.527150px;}
.h9{height:652.500000px;}
.h0{height:1188.000000px;}
.w9{width:22.888185px;}
.w2{width:27.163635px;}
.w3{width:27.490905px;}
.wb{width:264.179700px;}
.w7{width:281.415000px;}
.w8{width:339.000000px;}
.w1{width:475.854600px;}
.w4{width:600.000000px;}
.w5{width:693.075000px;}
.w6{width:695.510700px;}
.wa{width:702.000000px;}
.w0{width:918.000000px;}
.x50{left:-200.569442px;}
.x51{left:-125.692850px;}
.x52{left:-50.823113px;}
.x53{left:-8.870835px;}
.x0{left:0.000000px;}
.x2c{left:2.813700px;}
.x2f{left:4.313700px;}
.x35{left:10.525050px;}
.x4d{left:12.930000px;}
.x4c{left:21.000000px;}
.x28{left:25.266618px;}
.x49{left:28.560000px;}
.x22{left:35.857542px;}
.x6{left:37.015595px;}
.x23{left:38.615815px;}
.x1a{left:42.132086px;}
.x21{left:43.879693px;}
.x17{left:48.238185px;}
.x8{left:49.312016px;}
.x7{left:50.322681px;}
.x14{left:52.723010px;}
.x25{left:55.755004px;}
.x20{left:57.123612px;}
.xb{left:63.671877px;}
.x3a{left:64.767590px;}
.x3c{left:67.168077px;}
.x3e{left:68.828908px;}
.x39{left:70.251574px;}
.x3b{left:71.308075px;}
.x3d{left:72.359981px;}
.x12{left:74.452301px;}
.x1c{left:79.737235px;}
.x10{left:84.537893px;}
.x19{left:86.748722px;}
.x1d{left:91.591490px;}
.x18{left:92.623210px;}
.x13{left:93.949708px;}
.x1e{left:95.002484px;}
.x1b{left:96.434259px;}
.x15{left:97.887089px;}
.xf{left:99.466253px;}
.xa{left:101.066472px;}
.xc{left:102.771969px;}
.x11{left:104.309021px;}
.x16{left:105.488130px;}
.x2{left:108.000000px;}
.x5{left:109.425511px;}
.xd{left:110.920453px;}
.x24{left:113.089171px;}
.x9{left:115.426333px;}
.x4a{left:116.865000px;}
.x4{left:119.645430px;}
.x1f{left:123.027374px;}
.xe{left:129.470362px;}
.x57{left:140.639596px;}
.x45{left:174.175218px;}
.x26{left:184.972699px;}
.x3{left:189.000000px;}
.x43{left:197.345883px;}
.x58{left:211.672308px;}
.x42{left:220.343684px;}
.x4b{left:225.750000px;}
.x59{left:251.555674px;}
.x54{left:271.609482px;}
.x5a{left:276.716547px;}
.x55{left:279.715800px;}
.x48{left:283.335000px;}
.x27{left:284.965340px;}
.x29{left:290.208163px;}
.x44{left:297.524299px;}
.x38{left:303.162043px;}
.x56{left:354.637950px;}
.x4f{left:410.149200px;}
.x3f{left:459.000000px;}
.x41{left:522.238035px;}
.x36{left:552.831300px;}
.x30{left:572.400000px;}
.x33{left:579.831300px;}
.x34{left:580.862700px;}
.x32{left:581.893950px;}
.x31{left:583.956300px;}
.x2e{left:599.236350px;}
.x2d{left:626.400000px;}
.x2b{left:653.236350px;}
.x2a{left:680.400000px;}
.x47{left:692.100000px;}
.x1{left:707.760000px;}
.x37{left:805.500000px;}
.x40{left:806.759640px;}
.x4e{left:810.000000px;}
.x46{left:815.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.754786pt;}
.ls13{letter-spacing:-0.488630pt;}
.ls3{letter-spacing:-0.353280pt;}
.ls5{letter-spacing:-0.214109pt;}
.ls15{letter-spacing:-0.188448pt;}
.ls14{letter-spacing:-0.184923pt;}
.ls16{letter-spacing:-0.184921pt;}
.ls2{letter-spacing:-0.155229pt;}
.ls1a{letter-spacing:-0.144176pt;}
.ls17{letter-spacing:-0.072088pt;}
.ls19{letter-spacing:-0.031343pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.010705pt;}
.ls1b{letter-spacing:0.040745pt;}
.ls9{letter-spacing:0.043488pt;}
.ls1{letter-spacing:0.149876pt;}
.ls1c{letter-spacing:0.225667pt;}
.ls18{letter-spacing:0.266412pt;}
.ls1d{letter-spacing:0.307158pt;}
.ls7{letter-spacing:6.005333pt;}
.ls8{letter-spacing:284.320000pt;}
.ls12{letter-spacing:293.633916pt;}
.ls11{letter-spacing:297.112947pt;}
.lsd{letter-spacing:298.836792pt;}
.lsb{letter-spacing:300.591979pt;}
.lsa{letter-spacing:302.315823pt;}
.lsc{letter-spacing:304.071010pt;}
.ls10{letter-spacing:305.794855pt;}
.lsf{letter-spacing:307.550042pt;}
.lse{letter-spacing:314.508105pt;}
.ls6{letter-spacing:750.208000pt;}
.ws10{word-spacing:-299.146667pt;}
.wsb{word-spacing:-10.436839pt;}
.ws0{word-spacing:-10.402345pt;}
.ws13{word-spacing:-9.886248pt;}
.ws16{word-spacing:-8.979662pt;}
.ws1a{word-spacing:-8.938917pt;}
.ws18{word-spacing:-8.753995pt;}
.ws17{word-spacing:-8.681907pt;}
.ws19{word-spacing:-8.641162pt;}
.ws1b{word-spacing:-8.528329pt;}
.ws5{word-spacing:-0.176640pt;}
.wsd{word-spacing:-0.052560pt;}
.ws3{word-spacing:-0.052405pt;}
.ws2{word-spacing:-0.052386pt;}
.ws8{word-spacing:-0.037469pt;}
.ws14{word-spacing:-0.036240pt;}
.ws9{word-spacing:-0.026764pt;}
.ws12{word-spacing:-0.024431pt;}
.ws1d{word-spacing:-0.023587pt;}
.ws1c{word-spacing:-0.018870pt;}
.ws11{word-spacing:-0.012216pt;}
.wsf{word-spacing:0.000000pt;}
.ws6{word-spacing:0.128465pt;}
.wsa{word-spacing:0.187345pt;}
.ws7{word-spacing:0.326516pt;}
.ws1{word-spacing:143.238044pt;}
.wsc{word-spacing:143.713022pt;}
.ws4{word-spacing:157.606750pt;}
.wse{word-spacing:158.129375pt;}
.ws15{word-spacing:240.517174pt;}
._9{margin-left:-284.320000pt;}
._7{margin-left:-139.999415pt;}
._8{margin-left:-132.665548pt;}
._5{margin-left:-125.332943pt;}
._6{margin-left:-118.000143pt;}
._4{margin-left:-110.880581pt;}
._3{margin-left:-4.490221pt;}
._1{margin-left:-2.993481pt;}
._2{margin-left:-1.122555pt;}
._0{width:1.122555pt;}
._a{width:121.762023pt;}
.fs10{font-size:12.215749pt;}
.fs8{font-size:17.276961pt;}
.fs16{font-size:18.869662pt;}
.fs15{font-size:23.579568pt;}
.fs17{font-size:23.587077pt;}
.fsf{font-size:24.373147pt;}
.fs11{font-size:24.431499pt;}
.fs4{font-size:26.763634pt;}
.fsa{font-size:30.469588pt;}
.fs9{font-size:30.767928pt;}
.fs14{font-size:31.342626pt;}
.fs12{font-size:31.342831pt;}
.fsb{font-size:31.993069pt;}
.fs7{font-size:34.553922pt;}
.fs13{font-size:36.239911pt;}
.fs1{font-size:37.418507pt;}
.fs5{font-size:37.542587pt;}
.fsc{font-size:39.069418pt;}
.fs2{font-size:52.385909pt;}
.fs3{font-size:52.404837pt;}
.fs6{font-size:52.559621pt;}
.fse{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:74.666667pt;}
.y132{bottom:-398.351176pt;}
.y178{bottom:-393.935183pt;}
.y177{bottom:-386.575194pt;}
.y176{bottom:-379.215205pt;}
.y175{bottom:-371.855216pt;}
.y174{bottom:-364.495227pt;}
.y173{bottom:-357.135238pt;}
.y172{bottom:-349.781357pt;}
.y171{bottom:-342.421368pt;}
.y170{bottom:-335.061379pt;}
.y16f{bottom:-327.701390pt;}
.y16e{bottom:-320.341401pt;}
.y16d{bottom:-312.981412pt;}
.y16c{bottom:-305.621423pt;}
.y16b{bottom:-298.261434pt;}
.y16a{bottom:-290.901445pt;}
.y169{bottom:-283.541456pt;}
.y168{bottom:-276.181467pt;}
.y167{bottom:-268.827586pt;}
.y166{bottom:-261.467597pt;}
.y165{bottom:-254.107608pt;}
.y164{bottom:-246.747619pt;}
.y163{bottom:-239.387630pt;}
.y162{bottom:-232.027641pt;}
.y161{bottom:-224.667652pt;}
.y160{bottom:-217.307663pt;}
.y15f{bottom:-209.947674pt;}
.y15e{bottom:-202.587685pt;}
.y15d{bottom:-195.227696pt;}
.y15c{bottom:-187.867707pt;}
.y15b{bottom:-180.513826pt;}
.y15a{bottom:-173.153837pt;}
.y159{bottom:-165.793848pt;}
.y158{bottom:-158.433859pt;}
.y157{bottom:-151.073870pt;}
.y156{bottom:-143.713881pt;}
.y155{bottom:-136.353892pt;}
.y154{bottom:-128.993903pt;}
.y153{bottom:-121.633914pt;}
.y152{bottom:-114.273925pt;}
.y151{bottom:-106.913936pt;}
.y150{bottom:-99.553947pt;}
.y14f{bottom:-92.200066pt;}
.y14e{bottom:-84.840077pt;}
.y14d{bottom:-77.480088pt;}
.y14c{bottom:-70.120099pt;}
.y14b{bottom:-62.760110pt;}
.y14a{bottom:-55.400121pt;}
.y44{bottom:-50.755620pt;}
.y149{bottom:-48.040132pt;}
.y148{bottom:-40.680143pt;}
.y147{bottom:-33.320155pt;}
.y146{bottom:-25.960166pt;}
.y145{bottom:-18.600177pt;}
.y144{bottom:-11.240188pt;}
.y143{bottom:-3.886306pt;}
.y19f{bottom:-0.592458pt;}
.y0{bottom:0.000000pt;}
.y1e5{bottom:3.034055pt;}
.y142{bottom:3.473682pt;}
.y125{bottom:3.520000pt;}
.y42{bottom:6.569532pt;}
.y1e4{bottom:10.139662pt;}
.y141{bottom:10.833671pt;}
.y1e3{bottom:17.245270pt;}
.y140{bottom:18.193660pt;}
.ybc{bottom:18.731873pt;}
.y124{bottom:21.600000pt;}
.yc6{bottom:21.873590pt;}
.y1e2{bottom:24.350877pt;}
.y41{bottom:24.549124pt;}
.y179{bottom:24.832920pt;}
.y62{bottom:25.309130pt;}
.y13f{bottom:25.553649pt;}
.y46{bottom:25.600037pt;}
.ye6{bottom:27.380622pt;}
.y1e1{bottom:31.456484pt;}
.y13e{bottom:32.913638pt;}
.yc7{bottom:34.831332pt;}
.ye5{bottom:37.098928pt;}
.y1e0{bottom:38.562091pt;}
.yf4{bottom:39.410898pt;}
.y17a{bottom:40.102607pt;}
.y13d{bottom:40.273627pt;}
.yff{bottom:40.810560pt;}
.ya{bottom:45.017048pt;}
.y1df{bottom:45.667698pt;}
.y80{bottom:46.181770pt;}
.y13c{bottom:47.633616pt;}
.yc8{bottom:47.788988pt;}
.yfe{bottom:49.380111pt;}
.yf5{bottom:50.836967pt;}
.ye0{bottom:51.676345pt;}
.y11e{bottom:51.853333pt;}
.y1de{bottom:52.773305pt;}
.yb{bottom:53.997489pt;}
.y13b{bottom:54.993605pt;}
.y7f{bottom:55.200037pt;}
.y17b{bottom:55.372294pt;}
.y1dd{bottom:59.878912pt;}
.yc9{bottom:60.746730pt;}
.yf6{bottom:62.263035pt;}
.y13a{bottom:62.353594pt;}
.yc{bottom:62.959222pt;}
.y7e{bottom:64.218170pt;}
.ye2{bottom:66.253762pt;}
.yfc{bottom:66.519322pt;}
.y1dc{bottom:66.978622pt;}
.ydc{bottom:68.683317pt;}
.y139{bottom:69.713583pt;}
.y17c{bottom:70.641980pt;}
.yd{bottom:71.920954pt;}
.y7d{bottom:73.236343pt;}
.yf7{bottom:73.689103pt;}
.yca{bottom:73.704472pt;}
.y1db{bottom:74.084229pt;}
.yfd{bottom:75.088873pt;}
.yba{bottom:76.247116pt;}
.y138{bottom:77.067464pt;}
.ye{bottom:80.882686pt;}
.y1da{bottom:81.189836pt;}
.y7c{bottom:82.254610pt;}
.y100{bottom:83.658425pt;}
.ye7{bottom:83.665674pt;}
.y137{bottom:84.427453pt;}
.yf8{bottom:85.115280pt;}
.y17d{bottom:85.911667pt;}
.ycb{bottom:86.662214pt;}
.y1d9{bottom:88.295443pt;}
.yf{bottom:89.863128pt;}
.y7b{bottom:91.272743pt;}
.y136{bottom:91.787442pt;}
.yb9{bottom:94.286329pt;}
.y1d8{bottom:95.401050pt;}
.yf9{bottom:96.541337pt;}
.ye8{bottom:97.635766pt;}
.y10{bottom:98.824860pt;}
.y135{bottom:99.147431pt;}
.ycc{bottom:99.619870pt;}
.y7a{bottom:100.290877pt;}
.y17e{bottom:101.181354pt;}
.y1d7{bottom:102.506657pt;}
.y134{bottom:106.507420pt;}
.y11{bottom:107.786593pt;}
.yfa{bottom:107.967427pt;}
.y79{bottom:109.309143pt;}
.y1d6{bottom:109.612264pt;}
.ye4{bottom:111.099641pt;}
.ycd{bottom:112.577612pt;}
.y133{bottom:113.867409pt;}
.y82{bottom:114.822124pt;}
.y17f{bottom:116.451040pt;}
.y1d5{bottom:116.717871pt;}
.y12{bottom:116.748325pt;}
.y78{bottom:118.036343pt;}
.yfb{bottom:119.393528pt;}
.y1d4{bottom:123.823478pt;}
.y83{bottom:123.832345pt;}
.ye3{bottom:124.310449pt;}
.yce{bottom:125.535354pt;}
.y13{bottom:125.728766pt;}
.y77{bottom:127.054597pt;}
.y11f{bottom:128.680000pt;}
.y1d3{bottom:130.929085pt;}
.y84{bottom:132.823794pt;}
.y14{bottom:134.690499pt;}
.y76{bottom:136.072730pt;}
.ydf{bottom:137.394681pt;}
.y1d2{bottom:138.034693pt;}
.ycf{bottom:138.493096pt;}
.y85{bottom:141.815244pt;}
.y126{bottom:142.106667pt;}
.y15{bottom:143.652231pt;}
.y75{bottom:145.090863pt;}
.y1d1{bottom:145.140300pt;}
.y101{bottom:148.135336pt;}
.yde{bottom:150.415668pt;}
.y86{bottom:150.806693pt;}
.yd0{bottom:151.450753pt;}
.y1d0{bottom:152.240010pt;}
.y16{bottom:152.613963pt;}
.y74{bottom:154.109130pt;}
.y1cf{bottom:159.345617pt;}
.y87{bottom:159.816914pt;}
.y17{bottom:161.594405pt;}
.y73{bottom:163.127263pt;}
.yd1{bottom:164.408495pt;}
.y1ce{bottom:166.451224pt;}
.y88{bottom:168.808363pt;}
.y18{bottom:170.556137pt;}
.y72{bottom:172.145530pt;}
.y1cd{bottom:173.556831pt;}
.yd2{bottom:177.366237pt;}
.y89{bottom:177.799813pt;}
.ye1{bottom:178.792330pt;}
.y19{bottom:179.517870pt;}
.y1cc{bottom:180.662438pt;}
.y71{bottom:181.163663pt;}
.ydd{bottom:182.873268pt;}
.y19d{bottom:185.545793pt;}
.y8a{bottom:186.791262pt;}
.y1cb{bottom:187.768045pt;}
.y1a{bottom:188.479602pt;}
.y70{bottom:190.181799pt;}
.yd3{bottom:190.323979pt;}
.ydb{bottom:192.591575pt;}
.y1ca{bottom:194.873652pt;}
.y19c{bottom:195.095513pt;}
.y8b{bottom:195.801483pt;}
.y118{bottom:195.840000pt;}
.y1b{bottom:197.460044pt;}
.y6f{bottom:199.200066pt;}
.y1c9{bottom:201.979259pt;}
.yd4{bottom:203.281635pt;}
.y19b{bottom:204.400353pt;}
.y8c{bottom:204.792933pt;}
.y120{bottom:205.520000pt;}
.y1c{bottom:206.421776pt;}
.yd9{bottom:207.168992pt;}
.y6e{bottom:208.218198pt;}
.y1c8{bottom:209.084866pt;}
.y8d{bottom:213.784382pt;}
.y19a{bottom:213.950073pt;}
.y1d{bottom:215.383508pt;}
.y1c7{bottom:216.190473pt;}
.yd5{bottom:216.239377pt;}
.y6d{bottom:217.236330pt;}
.y130{bottom:218.880000pt;}
.yda{bottom:221.746409pt;}
.y8e{bottom:222.775832pt;}
.y199{bottom:223.254899pt;}
.y1c6{bottom:223.296080pt;}
.y8{bottom:224.320000pt;}
.y1e{bottom:224.345241pt;}
.y6c{bottom:226.254597pt;}
.yd6{bottom:229.197119pt;}
.y117{bottom:230.080000pt;}
.y1c5{bottom:230.401687pt;}
.y8f{bottom:231.786053pt;}
.y198{bottom:232.804619pt;}
.y1f{bottom:233.306973pt;}
.y6b{bottom:235.272730pt;}
.y1c4{bottom:237.501398pt;}
.y90{bottom:240.777502pt;}
.y197{bottom:242.109419pt;}
.yd7{bottom:242.154827pt;}
.y20{bottom:242.287415pt;}
.y6a{bottom:244.290863pt;}
.y1c3{bottom:244.607005pt;}
.y116{bottom:248.960000pt;}
.y91{bottom:249.768952pt;}
.y21{bottom:251.249147pt;}
.y196{bottom:251.659153pt;}
.y1c2{bottom:251.712612pt;}
.y69{bottom:253.309130pt;}
.y12f{bottom:253.440000pt;}
.yd8{bottom:255.112543pt;}
.y7{bottom:258.560000pt;}
.y92{bottom:258.760401pt;}
.y1c1{bottom:258.818219pt;}
.y22{bottom:260.210879pt;}
.y195{bottom:260.963953pt;}
.y68{bottom:262.036330pt;}
.y10b{bottom:262.080000pt;}
.y1c0{bottom:265.923826pt;}
.y43{bottom:266.946211pt;}
.y115{bottom:267.200000pt;}
.y93{bottom:267.770622pt;}
.y23{bottom:269.172612pt;}
.y194{bottom:270.513686pt;}
.y67{bottom:271.054597pt;}
.y12e{bottom:272.000000pt;}
.y1bf{bottom:273.029433pt;}
.y94{bottom:276.762071pt;}
.y6{bottom:277.440000pt;}
.y24{bottom:278.153053pt;}
.y193{bottom:279.818619pt;}
.y66{bottom:280.072730pt;}
.y1be{bottom:280.135040pt;}
.y121{bottom:282.346667pt;}
.y181{bottom:284.716000pt;}
.ye9{bottom:285.322093pt;}
.y95{bottom:285.753521pt;}
.y114{bottom:285.760000pt;}
.y25{bottom:287.114786pt;}
.y1bd{bottom:287.240647pt;}
.y65{bottom:289.090863pt;}
.y192{bottom:289.368219pt;}
.y12d{bottom:290.560000pt;}
.y1bc{bottom:294.346254pt;}
.y96{bottom:294.744970pt;}
.y5{bottom:295.680000pt;}
.y26{bottom:296.076518pt;}
.y10a{bottom:296.640000pt;}
.y64{bottom:298.109130pt;}
.y191{bottom:298.673153pt;}
.y1bb{bottom:301.451861pt;}
.y97{bottom:303.736420pt;}
.y113{bottom:304.000000pt;}
.y27{bottom:305.038250pt;}
.y63{bottom:307.127263pt;}
.y190{bottom:308.222886pt;}
.y1ba{bottom:308.557468pt;}
.y12c{bottom:308.800000pt;}
.y98{bottom:312.746641pt;}
.y28{bottom:314.018692pt;}
.y4{bottom:314.240000pt;}
.y109{bottom:315.200000pt;}
.y1b9{bottom:315.657178pt;}
.y60{bottom:316.145530pt;}
.y18f{bottom:317.527686pt;}
.y99{bottom:321.738090pt;}
.y112{bottom:322.560000pt;}
.y1b8{bottom:322.762785pt;}
.y29{bottom:322.980424pt;}
.y5f{bottom:325.163663pt;}
.y18e{bottom:327.077419pt;}
.y12b{bottom:327.360000pt;}
.y1b7{bottom:329.868392pt;}
.y9a{bottom:330.729540pt;}
.y2a{bottom:331.942157pt;}
.y3{bottom:332.480000pt;}
.y108{bottom:333.440000pt;}
.y5e{bottom:334.181797pt;}
.y18d{bottom:336.382219pt;}
.y1b6{bottom:336.974000pt;}
.ybb{bottom:337.487205pt;}
.y9b{bottom:339.720989pt;}
.y111{bottom:340.800000pt;}
.y2b{bottom:340.903889pt;}
.y5d{bottom:343.200037pt;}
.y1b5{bottom:344.079607pt;}
.y12a{bottom:345.600000pt;}
.y18c{bottom:345.931953pt;}
.y9c{bottom:348.731210pt;}
.y2c{bottom:349.884331pt;}
.y2{bottom:351.040000pt;}
.y1b4{bottom:351.185214pt;}
.y107{bottom:352.000000pt;}
.y5c{bottom:352.218170pt;}
.y11b{bottom:354.773333pt;}
.y18b{bottom:355.236753pt;}
.y9d{bottom:357.722660pt;}
.y1b3{bottom:358.290821pt;}
.y2d{bottom:358.846063pt;}
.y122{bottom:359.173333pt;}
.y110{bottom:359.360000pt;}
.y5b{bottom:361.236303pt;}
.y129{bottom:364.160000pt;}
.y18a{bottom:364.786486pt;}
.y1b2{bottom:365.396428pt;}
.y9e{bottom:366.714109pt;}
.y2e{bottom:367.807795pt;}
.y106{bottom:370.240000pt;}
.y5a{bottom:370.254570pt;}
.y1b1{bottom:372.502035pt;}
.y189{bottom:374.091286pt;}
.y9f{bottom:375.705559pt;}
.y11c{bottom:376.293333pt;}
.y2f{bottom:376.769528pt;}
.y10f{bottom:377.600000pt;}
.y47{bottom:378.133333pt;}
.y9{bottom:379.054667pt;}
.y1{bottom:379.200000pt;}
.y59{bottom:379.272703pt;}
.y1b0{bottom:379.607642pt;}
.y128{bottom:382.400000pt;}
.y188{bottom:383.641019pt;}
.ya0{bottom:384.715779pt;}
.y30{bottom:385.749969pt;}
.y1af{bottom:386.713249pt;}
.y58{bottom:388.290837pt;}
.y105{bottom:388.800000pt;}
.y11a{bottom:392.266667pt;}
.y187{bottom:392.945819pt;}
.ya1{bottom:393.707229pt;}
.y1ae{bottom:393.818856pt;}
.y31{bottom:394.711702pt;}
.y57{bottom:397.309103pt;}
.y1ad{bottom:400.918566pt;}
.y186{bottom:402.495553pt;}
.ya2{bottom:402.698678pt;}
.y32{bottom:403.673434pt;}
.y11d{bottom:404.928933pt;}
.y56{bottom:406.036303pt;}
.y10e{bottom:406.080000pt;}
.y104{bottom:407.040000pt;}
.y1e6{bottom:407.965206pt;}
.y1ac{bottom:408.024173pt;}
.y180{bottom:409.709600pt;}
.y19e{bottom:410.015733pt;}
.y127{bottom:410.880000pt;}
.ya3{bottom:411.690128pt;}
.y185{bottom:411.800486pt;}
.y33{bottom:412.635166pt;}
.y55{bottom:415.054570pt;}
.y1ab{bottom:415.129780pt;}
.ya4{bottom:420.700349pt;}
.y184{bottom:421.350219pt;}
.y34{bottom:421.596899pt;}
.y1aa{bottom:422.235387pt;}
.y1e7{bottom:422.707129pt;}
.y54{bottom:424.072703pt;}
.y103{bottom:425.600000pt;}
.y1a9{bottom:429.340994pt;}
.ya5{bottom:429.691798pt;}
.y35{bottom:430.577340pt;}
.y53{bottom:433.090837pt;}
.y123{bottom:436.000000pt;}
.y1a8{bottom:436.446601pt;}
.y1e8{bottom:437.449052pt;}
.ya6{bottom:438.683248pt;}
.y36{bottom:439.539073pt;}
.y52{bottom:442.109103pt;}
.y119{bottom:442.675600pt;}
.y1a7{bottom:443.552208pt;}
.ya7{bottom:447.674697pt;}
.y37{bottom:448.500805pt;}
.y1a6{bottom:450.657816pt;}
.y51{bottom:451.127237pt;}
.y1e9{bottom:452.190976pt;}
.y102{bottom:454.080000pt;}
.ya8{bottom:456.684918pt;}
.y38{bottom:457.462537pt;}
.y1a5{bottom:457.763423pt;}
.y182{bottom:458.569553pt;}
.y50{bottom:460.145503pt;}
.y1a4{bottom:464.869030pt;}
.ya9{bottom:465.676367pt;}
.y39{bottom:466.442979pt;}
.y1ea{bottom:466.932899pt;}
.y4f{bottom:469.163637pt;}
.y1a3{bottom:471.974637pt;}
.yaa{bottom:474.667817pt;}
.y3a{bottom:475.404711pt;}
.y4e{bottom:478.181770pt;}
.yc4{bottom:479.040000pt;}
.y1a2{bottom:479.080244pt;}
.y1eb{bottom:481.674822pt;}
.yab{bottom:483.659266pt;}
.y3b{bottom:484.366444pt;}
.y1a1{bottom:486.179954pt;}
.y4d{bottom:487.200037pt;}
.yac{bottom:492.650716pt;}
.y1a0{bottom:493.285561pt;}
.y3c{bottom:493.328176pt;}
.y4c{bottom:495.927237pt;}
.y1ec{bottom:496.416746pt;}
.yad{bottom:501.660937pt;}
.y3d{bottom:502.308618pt;}
.y183{bottom:502.400219pt;}
.y4b{bottom:504.363637pt;}
.yae{bottom:510.652386pt;}
.y3e{bottom:511.270350pt;}
.y4a{bottom:513.090837pt;}
.yc3{bottom:513.600000pt;}
.yaf{bottom:519.643836pt;}
.y3f{bottom:520.232082pt;}
.y49{bottom:521.818170pt;}
.yb0{bottom:528.635285pt;}
.y40{bottom:529.193815pt;}
.y48{bottom:530.254570pt;}
.yc2{bottom:532.160000pt;}
.yb1{bottom:537.645506pt;}
.yb2{bottom:546.636956pt;}
.yc1{bottom:550.720000pt;}
.yb3{bottom:555.628405pt;}
.yb4{bottom:564.619855pt;}
.yc0{bottom:568.960000pt;}
.yf2{bottom:572.160000pt;}
.yb5{bottom:573.630075pt;}
.yb6{bottom:582.621525pt;}
.ybf{bottom:587.520000pt;}
.yb7{bottom:591.612974pt;}
.yb8{bottom:600.604424pt;}
.ybe{bottom:605.760000pt;}
.yf1{bottom:606.720000pt;}
.yf0{bottom:625.280000pt;}
.yc5{bottom:633.069333pt;}
.ybd{bottom:634.240000pt;}
.yef{bottom:643.840000pt;}
.y61{bottom:659.951467pt;}
.yee{bottom:662.080000pt;}
.yed{bottom:680.640000pt;}
.yec{bottom:698.880000pt;}
.yf3{bottom:726.242933pt;}
.yeb{bottom:727.360000pt;}
.y131{bottom:736.664533pt;}
.y10d{bottom:877.760000pt;}
.y45{bottom:892.387867pt;}
.y10c{bottom:911.040000pt;}
.y81{bottom:914.036267pt;}
.yea{bottom:944.320000pt;}
.h1c{height:9.000765pt;}
.hf{height:12.519048pt;}
.h24{height:13.903476pt;}
.h23{height:17.373813pt;}
.h25{height:17.379346pt;}
.h1b{height:17.958534pt;}
.h1d{height:18.001529pt;}
.h8{height:19.497726pt;}
.h12{height:22.078549pt;}
.h10{height:22.294729pt;}
.h21{height:22.833593pt;}
.h1f{height:22.833742pt;}
.h13{height:23.182478pt;}
.he{height:25.038095pt;}
.h20{height:26.383646pt;}
.h4{height:27.570570pt;}
.hb{height:27.661994pt;}
.h14{height:28.310066pt;}
.h5{height:37.933742pt;}
.h6{height:37.947448pt;}
.hc{height:38.059530pt;}
.h18{height:39.244792pt;}
.h1{height:42.656250pt;}
.ha{height:43.054587pt;}
.h2{height:44.468750pt;}
.h19{height:47.093750pt;}
.h16{height:54.942708pt;}
.h7{height:56.145453pt;}
.h1a{height:121.697613pt;}
.h11{height:198.600000pt;}
.hd{height:325.063867pt;}
.h15{height:415.586667pt;}
.h17{height:453.333333pt;}
.h22{height:501.482000pt;}
.h1e{height:515.133333pt;}
.h3{height:550.690800pt;}
.h9{height:580.000000pt;}
.h0{height:1056.000000pt;}
.w9{width:20.345053pt;}
.w2{width:24.145453pt;}
.w3{width:24.436360pt;}
.wb{width:234.826400pt;}
.w7{width:250.146667pt;}
.w8{width:301.333333pt;}
.w1{width:422.981867pt;}
.w4{width:533.333333pt;}
.w5{width:616.066667pt;}
.w6{width:618.231733pt;}
.wa{width:624.000000pt;}
.w0{width:816.000000pt;}
.x50{left:-178.283948pt;}
.x51{left:-111.726978pt;}
.x52{left:-45.176101pt;}
.x53{left:-7.885186pt;}
.x0{left:0.000000pt;}
.x2c{left:2.501067pt;}
.x2f{left:3.834400pt;}
.x35{left:9.355600pt;}
.x4d{left:11.493333pt;}
.x4c{left:18.666667pt;}
.x28{left:22.459216pt;}
.x49{left:25.386667pt;}
.x22{left:31.873371pt;}
.x6{left:32.902751pt;}
.x23{left:34.325168pt;}
.x1a{left:37.450743pt;}
.x21{left:39.004172pt;}
.x17{left:42.878387pt;}
.x8{left:43.832903pt;}
.x7{left:44.731272pt;}
.x14{left:46.864897pt;}
.x25{left:49.560003pt;}
.x20{left:50.776544pt;}
.xb{left:56.597224pt;}
.x3a{left:57.571191pt;}
.x3c{left:59.704957pt;}
.x3e{left:61.181252pt;}
.x39{left:62.445844pt;}
.x3b{left:63.384956pt;}
.x3d{left:64.319983pt;}
.x12{left:66.179823pt;}
.x1c{left:70.877542pt;}
.x10{left:75.144794pt;}
.x19{left:77.109975pt;}
.x1d{left:81.414658pt;}
.x18{left:82.331743pt;}
.x13{left:83.510851pt;}
.x1e{left:84.446652pt;}
.x1b{left:85.719341pt;}
.x15{left:87.010746pt;}
.xf{left:88.414447pt;}
.xa{left:89.836864pt;}
.xc{left:91.352861pt;}
.x11{left:92.719130pt;}
.x16{left:93.767227pt;}
.x2{left:96.000000pt;}
.x5{left:97.267121pt;}
.xd{left:98.595958pt;}
.x24{left:100.523708pt;}
.x9{left:102.601185pt;}
.x4a{left:103.880000pt;}
.x4{left:106.351493pt;}
.x1f{left:109.357666pt;}
.xe{left:115.084766pt;}
.x57{left:125.012975pt;}
.x45{left:154.822416pt;}
.x26{left:164.420177pt;}
.x3{left:168.000000pt;}
.x43{left:175.418562pt;}
.x58{left:188.153163pt;}
.x42{left:195.861053pt;}
.x4b{left:200.666667pt;}
.x59{left:223.605043pt;}
.x54{left:241.430651pt;}
.x5a{left:245.970264pt;}
.x55{left:248.636267pt;}
.x48{left:251.853333pt;}
.x27{left:253.302524pt;}
.x29{left:257.962812pt;}
.x44{left:264.466043pt;}
.x38{left:269.477372pt;}
.x56{left:315.233733pt;}
.x4f{left:364.577067pt;}
.x3f{left:408.000000pt;}
.x41{left:464.211587pt;}
.x36{left:491.405600pt;}
.x30{left:508.800000pt;}
.x33{left:515.405600pt;}
.x34{left:516.322400pt;}
.x32{left:517.239067pt;}
.x31{left:519.072267pt;}
.x2e{left:532.654533pt;}
.x2d{left:556.800000pt;}
.x2b{left:580.654533pt;}
.x2a{left:604.800000pt;}
.x47{left:615.200000pt;}
.x1{left:629.120000pt;}
.x37{left:716.000000pt;}
.x40{left:717.119680pt;}
.x4e{left:720.000000pt;}
.x46{left:724.480000pt;}
}




    .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; }
  