
    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_532bbf1dc942eca8a2bc6ba2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_ca0fc9c612d782ea412d423c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.706055;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_f6d0ad6996b0386e7e557cd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_26f5ece59b09c1780e2bda7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_5339a821eded3d11fa464fd4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_b7a97b1f0e0b58fbbcac0b90.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_ffcde6afff50f6c1fa20b5af.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3c09f8420b838d1f2b39ac37.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_fea4df574c73b56e85975ed9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_e6591f9888e32962bcf9884d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_d83fcb6fb78d152ff04e0ff4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_e8c9e7488ac2e37f1eb536da.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.117188;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_817f8187b0fa0def54a3a2be.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722656;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_be634d880c270798c29e260b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.783203;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_d466a49b72494a89bfd2b1bf.woff2')format("woff");}.fff{font-family:fff;line-height:0.783203;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_5056b0e46c2bd5a74aed447e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.747559;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_ed17a41abce79d32309960bd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921387;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_75aab3adaf85c93751366a48.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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;}
.m4{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);}
.m2{transform:matrix(0.144337,-0.204124,0.204124,0.144337,0,0);-ms-transform:matrix(0.144337,-0.204124,0.204124,0.144337,0,0);-webkit-transform:matrix(0.144337,-0.204124,0.204124,0.144337,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-29.400000px;}
.v6{vertical-align:-15.120000px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.040000px;}
.v9{vertical-align:6.180000px;}
.v3{vertical-align:9.360000px;}
.v8{vertical-align:24.900000px;}
.v2{vertical-align:33.120000px;}
.v5{vertical-align:54.000000px;}
.ls28{letter-spacing:-11.160000px;}
.ls1b{letter-spacing:-1.176000px;}
.ls4{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.262200px;}
.lsd{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.010800px;}
.lsb{letter-spacing:0.050400px;}
.lse{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.152400px;}
.ls27{letter-spacing:0.175200px;}
.ls2b{letter-spacing:0.178560px;}
.ls2e{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.181200px;}
.ls2a{letter-spacing:0.181440px;}
.ls7{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.256200px;}
.ls1c{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.311040px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.828000px;}
.ls29{letter-spacing:0.901440px;}
.ls1f{letter-spacing:5.708160px;}
.ls12{letter-spacing:5.904000px;}
.ls23{letter-spacing:6.480000px;}
.ls2d{letter-spacing:13.680000px;}
.ls11{letter-spacing:17.424000px;}
.ls14{letter-spacing:19.589760px;}
.ls10{letter-spacing:32.544000px;}
.ls8{letter-spacing:33.984000px;}
.ls13{letter-spacing:51.984000px;}
.ls2f{letter-spacing:57.905280px;}
.ls26{letter-spacing:266.994240px;}
.ls25{letter-spacing:268.314240px;}
.ls2{letter-spacing:846.180000px;}
.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;}
}
.ws13{word-spacing:-66.240000px;}
.ws22{word-spacing:-59.760000px;}
.ws17{word-spacing:-18.720000px;}
.ws19{word-spacing:-18.576000px;}
.ws1c{word-spacing:-18.432000px;}
.ws15{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.216000px;}
.wse{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws12{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.928000px;}
.ws14{word-spacing:-17.856000px;}
.ws16{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.ws21{word-spacing:-16.822200px;}
.ws1e{word-spacing:-16.712400px;}
.ws2a{word-spacing:-16.669200px;}
.ws1d{word-spacing:-16.560000px;}
.ws26{word-spacing:-16.297800px;}
.ws2b{word-spacing:-16.272000px;}
.ws1f{word-spacing:-15.840000px;}
.ws20{word-spacing:-15.384000px;}
.ws1a{word-spacing:-15.226440px;}
.ws2d{word-spacing:-13.680960px;}
.ws31{word-spacing:-12.420000px;}
.ws30{word-spacing:-12.241200px;}
.ws11{word-spacing:-12.060000px;}
.ws27{word-spacing:-10.440000px;}
.ws2f{word-spacing:-9.900000px;}
.ws7{word-spacing:-1.511400px;}
.wsa{word-spacing:-0.364200px;}
.wsd{word-spacing:0.000000px;}
.ws4{word-spacing:0.120000px;}
.wsb{word-spacing:2.022000px;}
.ws5{word-spacing:5.854200px;}
.ws8{word-spacing:6.238800px;}
.wsc{word-spacing:6.421800px;}
.ws6{word-spacing:7.199400px;}
.ws1{word-spacing:8.271000px;}
.ws9{word-spacing:10.768200px;}
.ws2{word-spacing:16.153200px;}
.ws0{word-spacing:24.268200px;}
.ws2c{word-spacing:183.480000px;}
.ws2e{word-spacing:236.460000px;}
.ws29{word-spacing:239.916000px;}
.ws23{word-spacing:244.380000px;}
.ws24{word-spacing:245.340000px;}
.ws25{word-spacing:245.640000px;}
.ws28{word-spacing:257.652000px;}
.ws3{word-spacing:514.657800px;}
._2a{margin-left:-6.823440px;}
._0{margin-left:-4.585200px;}
._4{margin-left:-2.406000px;}
._b{margin-left:-1.153800px;}
._c{width:1.477800px;}
._16{width:2.564400px;}
._17{width:4.203600px;}
._14{width:6.048000px;}
._15{width:7.146600px;}
._20{width:8.244600px;}
._12{width:9.504000px;}
._13{width:10.584000px;}
._19{width:12.433800px;}
._18{width:13.704000px;}
._d{width:14.952000px;}
._e{width:16.058400px;}
._2e{width:18.104160px;}
._1e{width:19.512000px;}
._21{width:20.520000px;}
._1b{width:21.720000px;}
._1c{width:22.992000px;}
._1f{width:24.120000px;}
._9{width:25.287600px;}
._8{width:26.537400px;}
._24{width:27.605400px;}
._1d{width:28.609200px;}
._a{width:29.854800px;}
._1a{width:31.226400px;}
._10{width:33.240000px;}
._11{width:34.584000px;}
._23{width:38.520000px;}
._f{width:40.176000px;}
._25{width:52.176000px;}
._26{width:53.244000px;}
._22{width:194.485200px;}
._31{width:204.552000px;}
._7{width:211.393800px;}
._5{width:215.425800px;}
._2d{width:237.480000px;}
._6{width:251.209800px;}
._3{width:261.699000px;}
._30{width:268.669200px;}
._2f{width:281.760240px;}
._2c{width:293.808000px;}
._29{width:298.200000px;}
._2b{width:299.400000px;}
._2{width:329.257800px;}
._1{width:492.697800px;}
._27{width:846.168000px;}
._28{width:847.596000px;}
.fc5{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(216,216,216);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs4{font-size:75.893905px;}
.fs9{font-size:84.240000px;}
.fs0{font-size:94.500000px;}
.fs6{font-size:120.000000px;}
.fs2{font-size:240.000633px;}
.y0{bottom:0.000000px;}
.y1ae{bottom:6.555000px;}
.y1e3{bottom:7.200000px;}
.y224{bottom:9.360000px;}
.y1bf{bottom:10.770000px;}
.y1e5{bottom:10.800000px;}
.y1f6{bottom:10.830000px;}
.y1ea{bottom:11.160000px;}
.y1f7{bottom:11.190000px;}
.y208{bottom:11.205000px;}
.y1de{bottom:11.730000px;}
.y217{bottom:13.320000px;}
.y215{bottom:13.500000px;}
.y216{bottom:14.760000px;}
.y218{bottom:14.940000px;}
.y1fe{bottom:15.300000px;}
.y1ff{bottom:15.480000px;}
.y1e1{bottom:17.640000px;}
.y202{bottom:19.620000px;}
.y222{bottom:19.800000px;}
.y19f{bottom:21.030000px;}
.y18e{bottom:21.885000px;}
.y213{bottom:22.860000px;}
.y1fc{bottom:27.360000px;}
.y1e2{bottom:27.900000px;}
.y223{bottom:30.060000px;}
.y17e{bottom:30.420000px;}
.y1ac{bottom:33.945000px;}
.y1fb{bottom:37.800000px;}
.y201{bottom:40.320000px;}
.y1db{bottom:40.860000px;}
.y212{bottom:43.560000px;}
.y220{bottom:45.540000px;}
.y1f3{bottom:45.900000px;}
.y1bd{bottom:48.060000px;}
.y1a6{bottom:55.110000px;}
.y228{bottom:57.465000px;}
.y1a{bottom:57.600000px;}
.y17c{bottom:57.705000px;}
.y226{bottom:57.825000px;}
.y19d{bottom:59.970000px;}
.y1d5{bottom:61.995000px;}
.y1e9{bottom:62.280000px;}
.y1d0{bottom:62.970000px;}
.y1dd{bottom:63.750000px;}
.y1b7{bottom:69.225000px;}
.y18c{bottom:70.815000px;}
.y19{bottom:77.760000px;}
.y176{bottom:78.840000px;}
.y197{bottom:81.105000px;}
.y186{bottom:91.950000px;}
.y1ad{bottom:91.980000px;}
.y206{bottom:94.500000px;}
.y1e7{bottom:96.705000px;}
.y225{bottom:97.785000px;}
.y227{bottom:99.585000px;}
.y1f1{bottom:104.070000px;}
.y1d6{bottom:110.190000px;}
.y8f{bottom:111.780000px;}
.y109{bottom:111.960000px;}
.y7c{bottom:113.400000px;}
.y205{bottom:115.200000px;}
.ye1{bottom:115.380000px;}
.y1a7{bottom:117.540000px;}
.ya4{bottom:118.080000px;}
.yb4{bottom:120.780000px;}
.ycc{bottom:121.500000px;}
.y1d1{bottom:123.195000px;}
.y16e{bottom:124.200000px;}
.y1f0{bottom:124.770000px;}
.y38{bottom:128.700000px;}
.y1b8{bottom:131.550000px;}
.y12a{bottom:135.000000px;}
.y19e{bottom:135.465000px;}
.y5a{bottom:136.080000px;}
.y149{bottom:137.520000px;}
.y177{bottom:141.330000px;}
.y8e{bottom:142.920000px;}
.y108{bottom:143.100000px;}
.y198{bottom:144.030000px;}
.y7b{bottom:144.360000px;}
.ye0{bottom:146.520000px;}
.ya3{bottom:149.220000px;}
.y1be{bottom:150.375000px;}
.yb3{bottom:151.920000px;}
.y37{bottom:152.100000px;}
.y1ce{bottom:152.355000px;}
.ycb{bottom:152.460000px;}
.y166{bottom:152.640000px;}
.y187{bottom:154.155000px;}
.y1d7{bottom:158.400000px;}
.y129{bottom:163.440000px;}
.yde{bottom:165.780000px;}
.y148{bottom:166.140000px;}
.y59{bottom:167.220000px;}
.y17d{bottom:167.250000px;}
.y1dc{bottom:167.550000px;}
.y36{bottom:172.980000px;}
.y8d{bottom:173.880000px;}
.y107{bottom:174.060000px;}
.y7a{bottom:176.220000px;}
.ydf{bottom:177.480000px;}
.y1a8{bottom:179.970000px;}
.ya2{bottom:180.180000px;}
.y165{bottom:181.080000px;}
.yb2{bottom:182.880000px;}
.y1d2{bottom:183.450000px;}
.y128{bottom:191.880000px;}
.yca{bottom:193.680000px;}
.y1b9{bottom:193.890000px;}
.y147{bottom:194.580000px;}
.y18d{bottom:194.910000px;}
.y1cc{bottom:195.045000px;}
.ydd{bottom:196.920000px;}
.y58{bottom:198.180000px;}
.y178{bottom:203.835000px;}
.y8c{bottom:205.020000px;}
.y106{bottom:205.200000px;}
.y1d8{bottom:206.610000px;}
.y199{bottom:206.970000px;}
.y79{bottom:208.650000px;}
.y164{bottom:209.550000px;}
.ya1{bottom:211.350000px;}
.yb1{bottom:214.050000px;}
.y35{bottom:215.130000px;}
.y188{bottom:216.360000px;}
.ydc{bottom:227.910000px;}
.y57{bottom:229.350000px;}
.y1cf{bottom:235.290000px;}
.y127{bottom:235.470000px;}
.y8b{bottom:236.010000px;}
.y105{bottom:236.190000px;}
.y146{bottom:237.990000px;}
.y78{bottom:239.610000px;}
.ya0{bottom:242.310000px;}
.y1a9{bottom:242.385000px;}
.yc9{bottom:243.030000px;}
.y1d3{bottom:243.720000px;}
.yb0{bottom:245.010000px;}
.y34{bottom:246.090000px;}
.y163{bottom:252.930000px;}
.y1d9{bottom:254.805000px;}
.y1ba{bottom:256.215000px;}
.ydb{bottom:259.050000px;}
.y56{bottom:260.310000px;}
.y126{bottom:263.910000px;}
.y179{bottom:266.325000px;}
.y145{bottom:266.430000px;}
.y8a{bottom:267.150000px;}
.y104{bottom:267.330000px;}
.y19a{bottom:269.895000px;}
.y77{bottom:270.750000px;}
.y9f{bottom:273.450000px;}
.yc8{bottom:273.990000px;}
.yaf{bottom:276.150000px;}
.y33{bottom:277.230000px;}
.y189{bottom:278.610000px;}
.y162{bottom:281.550000px;}
.yda{bottom:290.010000px;}
.y55{bottom:291.450000px;}
.y125{bottom:292.350000px;}
.y144{bottom:294.870000px;}
.y1cd{bottom:297.645000px;}
.y103{bottom:298.290000px;}
.y76{bottom:301.710000px;}
.y1da{bottom:303.015000px;}
.y1d4{bottom:303.990000px;}
.y9e{bottom:304.410000px;}
.y1aa{bottom:304.845000px;}
.yc7{bottom:305.130000px;}
.yae{bottom:307.110000px;}
.y32{bottom:308.190000px;}
.y89{bottom:308.370000px;}
.y161{bottom:309.990000px;}
.y10b{bottom:317.370000px;}
.y1bb{bottom:318.525000px;}
.yd9{bottom:321.150000px;}
.y54{bottom:322.410000px;}
.y143{bottom:323.310000px;}
.y17a{bottom:328.830000px;}
.y18{bottom:329.325000px;}
.y102{bottom:329.430000px;}
.y19b{bottom:332.820000px;}
.y75{bottom:332.850000px;}
.y9d{bottom:335.550000px;}
.y124{bottom:335.730000px;}
.yc6{bottom:336.090000px;}
.yad{bottom:338.250000px;}
.y16d{bottom:338.430000px;}
.y18a{bottom:340.815000px;}
.yd8{bottom:352.110000px;}
.y160{bottom:353.370000px;}
.y53{bottom:353.550000px;}
.y31{bottom:357.330000px;}
.y88{bottom:357.510000px;}
.y17{bottom:358.426800px;}
.y101{bottom:360.390000px;}
.y74{bottom:363.810000px;}
.y123{bottom:364.350000px;}
.y9c{bottom:366.510000px;}
.y142{bottom:366.870000px;}
.yc5{bottom:367.230000px;}
.y1ab{bottom:367.275000px;}
.yac{bottom:369.210000px;}
.y16{bottom:380.026800px;}
.y1bc{bottom:380.880000px;}
.y15f{bottom:381.810000px;}
.yd7{bottom:383.070000px;}
.y52{bottom:384.510000px;}
.y87{bottom:388.650000px;}
.y17b{bottom:391.290000px;}
.y100{bottom:391.530000px;}
.y73{bottom:394.950000px;}
.y141{bottom:395.310000px;}
.y19c{bottom:395.745000px;}
.y9b{bottom:397.650000px;}
.yc4{bottom:398.190000px;}
.yab{bottom:400.170000px;}
.y15{bottom:401.626800px;}
.y18b{bottom:403.020000px;}
.y30{bottom:406.290000px;}
.y122{bottom:407.730000px;}
.y15e{bottom:410.250000px;}
.yd6{bottom:414.210000px;}
.y51{bottom:415.650000px;}
.y86{bottom:419.610000px;}
.yff{bottom:422.490000px;}
.y14{bottom:423.226800px;}
.y140{bottom:423.750000px;}
.y72{bottom:425.910000px;}
.y9a{bottom:428.610000px;}
.yc3{bottom:429.330000px;}
.y121{bottom:436.170000px;}
.y2f{bottom:437.430000px;}
.yaa{bottom:441.435000px;}
.y13{bottom:444.826800px;}
.yd5{bottom:445.215000px;}
.y50{bottom:446.655000px;}
.y85{bottom:450.615000px;}
.yfe{bottom:453.675000px;}
.y15d{bottom:453.855000px;}
.y71{bottom:456.915000px;}
.y99{bottom:459.615000px;}
.yc2{bottom:460.335000px;}
.y120{bottom:464.655000px;}
.y12{bottom:466.426800px;}
.y13f{bottom:467.355000px;}
.y2e{bottom:468.435000px;}
.yd4{bottom:477.075000px;}
.y4f{bottom:477.615000px;}
.y84{bottom:481.755000px;}
.y15c{bottom:482.295000px;}
.yfd{bottom:484.635000px;}
.y70{bottom:488.055000px;}
.y98{bottom:490.755000px;}
.yc1{bottom:491.475000px;}
.y11f{bottom:493.095000px;}
.y195{bottom:495.075000px;}
.y13e{bottom:495.795000px;}
.y2d{bottom:499.575000px;}
.y1b5{bottom:501.375000px;}
.y4e{bottom:508.755000px;}
.yd3{bottom:510.195000px;}
.y16c{bottom:510.735000px;}
.y83{bottom:512.715000px;}
.yfc{bottom:515.775000px;}
.y6f{bottom:519.015000px;}
.y97{bottom:521.715000px;}
.yc0{bottom:522.435000px;}
.y13d{bottom:524.235000px;}
.y15b{bottom:525.675000px;}
.y2c{bottom:530.535000px;}
.y194{bottom:532.695000px;}
.y11{bottom:535.276800px;}
.y11e{bottom:536.655000px;}
.y1b4{bottom:538.095000px;}
.y4d{bottom:539.715000px;}
.yd2{bottom:542.415000px;}
.y82{bottom:543.855000px;}
.yfb{bottom:546.735000px;}
.y6e{bottom:550.155000px;}
.y96{bottom:552.855000px;}
.ybf{bottom:553.575000px;}
.y15a{bottom:554.115000px;}
.y193{bottom:555.555000px;}
.y10{bottom:556.876800px;}
.y2b{bottom:561.675000px;}
.y11d{bottom:565.095000px;}
.y13c{bottom:567.615000px;}
.y4c{bottom:570.855000px;}
.y184{bottom:572.115000px;}
.yd1{bottom:573.555000px;}
.y81{bottom:574.815000px;}
.y1b3{bottom:575.355000px;}
.yfa{bottom:577.875000px;}
.yf{bottom:578.476800px;}
.y6d{bottom:581.115000px;}
.y16b{bottom:582.735000px;}
.y95{bottom:583.815000px;}
.ybe{bottom:584.535000px;}
.y192{bottom:584.715000px;}
.y1f9{bottom:587.055000px;}
.y2a{bottom:592.635000px;}
.y174{bottom:593.175000px;}
.y11c{bottom:593.535000px;}
.y13b{bottom:596.055000px;}
.y159{bottom:597.675000px;}
.y1b2{bottom:598.395000px;}
.ye{bottom:600.076800px;}
.y4b{bottom:601.815000px;}
.y1ef{bottom:603.075000px;}
.yd0{bottom:604.515000px;}
.y80{bottom:605.955000px;}
.yf9{bottom:608.835000px;}
.y183{bottom:610.455000px;}
.y16a{bottom:611.175000px;}
.y6c{bottom:612.255000px;}
.y191{bottom:612.795000px;}
.y94{bottom:614.955000px;}
.y11b{bottom:621.975000px;}
.y1b1{bottom:622.515000px;}
.y29{bottom:623.775000px;}
.y1a4{bottom:625.395000px;}
.ybd{bottom:625.755000px;}
.y158{bottom:626.115000px;}
.y173{bottom:630.075000px;}
.y182{bottom:632.235000px;}
.y4a{bottom:632.955000px;}
.y190{bottom:634.575000px;}
.ycf{bottom:635.655000px;}
.y7f{bottom:636.915000px;}
.y1f8{bottom:637.095000px;}
.y13a{bottom:639.615000px;}
.yf8{bottom:639.975000px;}
.y6b{bottom:643.215000px;}
.y1b0{bottom:644.295000px;}
.y93{bottom:645.915000px;}
.yd{bottom:646.426800px;}
.y1ca{bottom:646.815000px;}
.y172{bottom:651.855000px;}
.y22e{bottom:653.475000px;}
.y181{bottom:654.015000px;}
.y157{bottom:654.555000px;}
.y28{bottom:654.735000px;}
.ye8{bottom:656.175000px;}
.y20e{bottom:658.875000px;}
.y1a3{bottom:662.475000px;}
.y49{bottom:663.915000px;}
.y11a{bottom:665.535000px;}
.y1c9{bottom:666.255000px;}
.yce{bottom:666.615000px;}
.ybc{bottom:667.155000px;}
.y7e{bottom:667.695000px;}
.y139{bottom:668.055000px;}
.yc{bottom:670.276800px;}
.yf7{bottom:670.935000px;}
.y1f5{bottom:671.115000px;}
.y171{bottom:673.635000px;}
.y6a{bottom:674.355000px;}
.y18f{bottom:674.895000px;}
.y196{bottom:675.720000px;}
.y180{bottom:676.005000px;}
.y92{bottom:677.085000px;}
.y1b6{bottom:677.520000px;}
.y20d{bottom:677.985000px;}
.y169{bottom:683.025000px;}
.y1a2{bottom:685.005000px;}
.y1c8{bottom:685.185000px;}
.y27{bottom:685.905000px;}
.y22d{bottom:691.305000px;}
.y119{bottom:694.005000px;}
.yb{bottom:694.126800px;}
.y48{bottom:695.085000px;}
.y170{bottom:695.445000px;}
.y138{bottom:696.525000px;}
.y156{bottom:698.145000px;}
.yf6{bottom:702.105000px;}
.y1c7{bottom:704.265000px;}
.y20c{bottom:704.445000px;}
.y69{bottom:705.345000px;}
.ycd{bottom:707.865000px;}
.y91{bottom:708.045000px;}
.ybb{bottom:708.585000px;}
.y17f{bottom:708.765000px;}
.y185{bottom:708.840000px;}
.y7d{bottom:709.305000px;}
.y168{bottom:711.465000px;}
.y204{bottom:712.545000px;}
.y26{bottom:716.865000px;}
.y1c6{bottom:723.165000px;}
.y22c{bottom:724.425000px;}
.y21d{bottom:725.505000px;}
.y47{bottom:726.045000px;}
.y155{bottom:726.585000px;}
.y16f{bottom:728.385000px;}
.y175{bottom:728.460000px;}
.ya{bottom:729.226800px;}
.y1a1{bottom:731.985000px;}
.yf5{bottom:733.065000px;}
.y68{bottom:736.485000px;}
.y118{bottom:737.385000px;}
.ya9{bottom:739.185000px;}
.y137{bottom:739.905000px;}
.y1f2{bottom:740.085000px;}
.y1c5{bottom:742.065000px;}
.y25{bottom:748.005000px;}
.y90{bottom:749.265000px;}
.yba{bottom:749.985000px;}
.y154{bottom:755.025000px;}
.y46{bottom:757.185000px;}
.y1c4{bottom:761.145000px;}
.y21c{bottom:761.505000px;}
.yf4{bottom:764.205000px;}
.y9{bottom:764.326800px;}
.y1a0{bottom:764.925000px;}
.y1a5{bottom:765.180000px;}
.y117{bottom:765.825000px;}
.y67{bottom:767.445000px;}
.y136{bottom:768.525000px;}
.ya8{bottom:770.145000px;}
.y1f4{bottom:774.825000px;}
.y24{bottom:778.965000px;}
.y21b{bottom:779.685000px;}
.y10a{bottom:780.405000px;}
.y1c3{bottom:780.585000px;}
.y167{bottom:783.465000px;}
.y20b{bottom:787.425000px;}
.y45{bottom:788.145000px;}
.y8{bottom:788.176800px;}
.y22b{bottom:789.045000px;}
.yf3{bottom:795.885000px;}
.y135{bottom:796.965000px;}
.y153{bottom:798.405000px;}
.y66{bottom:798.585000px;}
.yb9{bottom:799.305000px;}
.y1c2{bottom:800.385000px;}
.ya7{bottom:801.285000px;}
.y116{bottom:809.385000px;}
.y1ee{bottom:809.745000px;}
.y23{bottom:810.105000px;}
.y7{bottom:812.026800px;}
.y21a{bottom:814.245000px;}
.y44{bottom:819.285000px;}
.y1c1{bottom:819.465000px;}
.y20a{bottom:824.865000px;}
.y134{bottom:825.405000px;}
.y22a{bottom:825.945000px;}
.y152{bottom:826.845000px;}
.yf2{bottom:828.285000px;}
.y65{bottom:829.545000px;}
.yb8{bottom:830.265000px;}
.ya6{bottom:832.245000px;}
.y1c0{bottom:834.765000px;}
.y1cb{bottom:834.840000px;}
.y115{bottom:837.825000px;}
.y22{bottom:841.065000px;}
.y1e6{bottom:844.485000px;}
.y229{bottom:847.725000px;}
.y43{bottom:850.245000px;}
.y219{bottom:854.385000px;}
.y151{bottom:855.285000px;}
.y6{bottom:857.701800px;}
.yf1{bottom:859.245000px;}
.y64{bottom:860.685000px;}
.yb7{bottom:862.125000px;}
.y209{bottom:862.305000px;}
.ye7{bottom:863.385000px;}
.y114{bottom:866.265000px;}
.y133{bottom:868.785000px;}
.y21{bottom:870.585000px;}
.ya5{bottom:873.465000px;}
.y5{bottom:877.951800px;}
.y1ed{bottom:878.505000px;}
.y42{bottom:881.385000px;}
.y150{bottom:883.905000px;}
.yf0{bottom:890.385000px;}
.y63{bottom:891.645000px;}
.yb6{bottom:894.345000px;}
.y113{bottom:894.705000px;}
.y132{bottom:897.225000px;}
.y207{bottom:899.745000px;}
.y41{bottom:912.390000px;}
.y1e8{bottom:913.290000px;}
.yef{bottom:921.390000px;}
.y62{bottom:922.830000px;}
.ye6{bottom:925.530000px;}
.y131{bottom:925.710000px;}
.y14f{bottom:927.330000px;}
.y20{bottom:928.770000px;}
.y200{bottom:934.530000px;}
.yb5{bottom:935.610000px;}
.y112{bottom:938.130000px;}
.y40{bottom:943.530000px;}
.y1ec{bottom:947.490000px;}
.y4{bottom:947.701800px;}
.yee{bottom:952.530000px;}
.y61{bottom:953.790000px;}
.y14e{bottom:955.770000px;}
.ye5{bottom:956.490000px;}
.y1f{bottom:959.910000px;}
.y111{bottom:966.750000px;}
.y3{bottom:967.951800px;}
.y130{bottom:969.270000px;}
.y203{bottom:971.970000px;}
.y3f{bottom:974.490000px;}
.y211{bottom:975.390000px;}
.y233{bottom:980.610000px;}
.y1eb{bottom:981.510000px;}
.yed{bottom:983.490000px;}
.y14d{bottom:984.210000px;}
.y60{bottom:984.930000px;}
.ye4{bottom:987.630000px;}
.y2{bottom:988.201800px;}
.y21f{bottom:990.330000px;}
.y110{bottom:995.190000px;}
.y3e{bottom:1005.630000px;}
.y1fa{bottom:1008.330000px;}
.y1e{bottom:1009.770000px;}
.y232{bottom:1011.750000px;}
.y12f{bottom:1012.650000px;}
.yec{bottom:1014.630000px;}
.y214{bottom:1014.810000px;}
.y1e4{bottom:1015.530000px;}
.y5f{bottom:1015.890000px;}
.ye3{bottom:1018.590000px;}
.y10f{bottom:1023.630000px;}
.y3d{bottom:1036.590000px;}
.y12e{bottom:1041.090000px;}
.y221{bottom:1042.170000px;}
.y231{bottom:1042.710000px;}
.y5e{bottom:1047.030000px;}
.y1e0{bottom:1050.270000px;}
.y1fd{bottom:1053.150000px;}
.yeb{bottom:1055.850000px;}
.y14c{bottom:1056.210000px;}
.y1d{bottom:1059.630000px;}
.ye2{bottom:1059.810000px;}
.y1{bottom:1060.103850px;}
.y10e{bottom:1067.010000px;}
.y3c{bottom:1067.730000px;}
.y12d{bottom:1069.710000px;}
.y230{bottom:1073.850000px;}
.y210{bottom:1076.190000px;}
.y5d{bottom:1077.990000px;}
.y14b{bottom:1084.650000px;}
.y1c{bottom:1090.770000px;}
.y20f{bottom:1097.970000px;}
.y12c{bottom:1098.150000px;}
.y3b{bottom:1098.690000px;}
.y1af{bottom:1104.810000px;}
.yea{bottom:1105.710000px;}
.y5c{bottom:1109.130000px;}
.y10d{bottom:1110.570000px;}
.y14a{bottom:1113.090000px;}
.y21e{bottom:1116.330000px;}
.y1df{bottom:1119.750000px;}
.y1b{bottom:1121.730000px;}
.y22f{bottom:1137.030000px;}
.ye9{bottom:1138.830000px;}
.y10c{bottom:1139.730000px;}
.y3a{bottom:1139.910000px;}
.y5b{bottom:1140.090000px;}
.y12b{bottom:1141.530000px;}
.y39{bottom:1217.880000px;}
.h20{height:34.005000px;}
.h25{height:34.020000px;}
.h24{height:34.042500px;}
.h23{height:34.185000px;}
.h2e{height:34.200000px;}
.h29{height:34.230000px;}
.h31{height:38.685000px;}
.h32{height:39.945000px;}
.h35{height:39.960000px;}
.h36{height:40.140000px;}
.h33{height:40.162500px;}
.h2f{height:40.985156px;}
.h2b{height:42.465000px;}
.h1a{height:45.374414px;}
.h1f{height:46.785000px;}
.h3c{height:49.992188px;}
.h6{height:50.294531px;}
.h39{height:50.925000px;}
.h3a{height:51.105000px;}
.h9{height:52.695866px;}
.h10{height:58.121719px;}
.h1d{height:58.651172px;}
.h3d{height:59.436914px;}
.h37{height:60.226875px;}
.h2{height:63.175781px;}
.hf{height:65.010937px;}
.h11{height:66.757500px;}
.h8{height:70.628906px;}
.ha{height:70.664062px;}
.h13{height:70.805391px;}
.h2c{height:71.445000px;}
.h7{height:72.562500px;}
.hd{height:74.953125px;}
.h30{height:78.105000px;}
.he{height:80.464922px;}
.h34{height:80.644922px;}
.h1c{height:81.254414px;}
.h14{height:82.676953px;}
.h1{height:82.918213px;}
.h1e{height:84.898125px;}
.h2a{height:87.285000px;}
.h1b{height:99.374414px;}
.h38{height:102.765000px;}
.h27{height:103.680000px;}
.hc{height:125.156250px;}
.h3b{height:126.202500px;}
.h22{height:136.245000px;}
.h28{height:136.290000px;}
.h21{height:205.050000px;}
.h2d{height:221.250000px;}
.h26{height:240.690000px;}
.h5{height:250.313160px;}
.h19{height:321.660000px;}
.h17{height:391.320000px;}
.h18{height:420.300000px;}
.h12{height:428.040000px;}
.h15{height:447.660000px;}
.h16{height:480.780000px;}
.h0{height:1188.000000px;}
.hb{height:1262.877990px;}
.h3{height:1262.880000px;}
.h4{height:1263.000000px;}
.w9{width:61.189500px;}
.w1c{width:63.754500px;}
.w23{width:102.765000px;}
.w20{width:102.769500px;}
.w21{width:102.801000px;}
.w22{width:102.816000px;}
.we{width:103.665000px;}
.wb{width:106.200000px;}
.wa{width:106.401000px;}
.w12{width:114.876000px;}
.w17{width:117.381000px;}
.w14{width:121.845000px;}
.w13{width:122.241000px;}
.w16{width:127.620000px;}
.wc{width:127.656000px;}
.wf{width:133.942500px;}
.w10{width:138.420000px;}
.w15{width:144.742500px;}
.wd{width:148.881000px;}
.w1b{width:155.175000px;}
.w19{width:155.340000px;}
.w1a{width:155.370000px;}
.w1f{width:205.575000px;}
.w1d{width:205.579500px;}
.w1e{width:205.590000px;}
.w11{width:358.995000px;}
.w18{width:465.915000px;}
.w6{width:560.520000px;}
.w4{width:592.920000px;}
.w7{width:605.520000px;}
.w5{width:606.960000px;}
.w8{width:637.920000px;}
.w3{width:892.978125px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4d{left:6.120000px;}
.x54{left:8.100000px;}
.x47{left:9.345000px;}
.x53{left:10.620000px;}
.x5f{left:12.043500px;}
.x3c{left:13.849500px;}
.x4a{left:16.020000px;}
.x42{left:17.820000px;}
.x3d{left:21.225000px;}
.x3e{left:23.565000px;}
.x58{left:24.840000px;}
.x46{left:26.089500px;}
.x28{left:27.795000px;}
.x40{left:30.060000px;}
.x2d{left:31.170000px;}
.x49{left:33.300000px;}
.x39{left:34.530000px;}
.x51{left:35.805000px;}
.x25{left:37.695000px;}
.x36{left:41.865000px;}
.x2b{left:44.490000px;}
.x18{left:45.825000px;}
.x43{left:48.990000px;}
.x35{left:50.865000px;}
.x1f{left:53.355000px;}
.x23{left:55.725000px;}
.x55{left:59.040000px;}
.x48{left:60.285000px;}
.x1d{left:62.385000px;}
.x16{left:65.370000px;}
.x1c{left:71.385000px;}
.x15{left:74.370000px;}
.x5a{left:77.761500px;}
.x1b{left:80.385000px;}
.x2c{left:82.290000px;}
.x14{left:83.370000px;}
.x24{left:84.570000px;}
.x5d{left:89.820000px;}
.x4f{left:91.290000px;}
.x37{left:94.500000px;}
.x1e{left:100.185000px;}
.x17{left:103.215000px;}
.x30{left:108.435000px;}
.x3b{left:119.566500px;}
.x4{left:127.656000px;}
.x4b{left:130.906500px;}
.x1{left:135.000000px;}
.x5b{left:141.526500px;}
.x22{left:142.560000px;}
.x2a{left:143.640000px;}
.xe{left:148.896000px;}
.x6{left:152.670000px;}
.xd{left:154.650000px;}
.x59{left:159.690000px;}
.x12{left:163.650000px;}
.x27{left:166.140000px;}
.x5{left:169.230000px;}
.xf{left:180.750000px;}
.x10{left:191.550000px;}
.x31{left:194.370000px;}
.x3a{left:215.925000px;}
.x2{left:232.860000px;}
.x29{left:244.950000px;}
.xc{left:259.830000px;}
.x4c{left:264.855000px;}
.x2e{left:267.150000px;}
.x20{left:272.700000px;}
.x32{left:275.250000px;}
.x19{left:283.215000px;}
.x3f{left:287.175000px;}
.xa{left:290.235000px;}
.xb{left:343.695000px;}
.x5c{left:347.115000px;}
.x41{left:393.375000px;}
.x4e{left:403.275000px;}
.x7{left:412.455000px;}
.x56{left:427.575000px;}
.x33{left:438.870000px;}
.x1a{left:446.505000px;}
.x60{left:449.940000px;}
.x8{left:465.585000px;}
.x9{left:474.585000px;}
.x50{left:518.160000px;}
.x44{left:521.040000px;}
.x5e{left:552.720000px;}
.x34{left:577.725000px;}
.x57{left:582.960000px;}
.x38{left:625.215000px;}
.x52{left:640.410000px;}
.x61{left:655.530000px;}
.x45{left:669.930000px;}
.x13{left:720.510000px;}
.x26{left:726.810000px;}
.x11{left:748.770000px;}
.x21{left:750.390000px;}
.x3{left:757.230000px;}
.x2f{left:765.510000px;}
@media print{
.v4{vertical-align:-26.133333pt;}
.v6{vertical-align:-13.440000pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.813333pt;}
.v9{vertical-align:5.493333pt;}
.v3{vertical-align:8.320000pt;}
.v8{vertical-align:22.133333pt;}
.v2{vertical-align:29.440000pt;}
.v5{vertical-align:48.000000pt;}
.ls28{letter-spacing:-9.920000pt;}
.ls1b{letter-spacing:-1.045333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.233067pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.009600pt;}
.lsb{letter-spacing:0.044800pt;}
.lse{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.135467pt;}
.ls27{letter-spacing:0.155733pt;}
.ls2b{letter-spacing:0.158720pt;}
.ls2e{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.161067pt;}
.ls2a{letter-spacing:0.161280pt;}
.ls7{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.227733pt;}
.ls1c{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.276480pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.736000pt;}
.ls29{letter-spacing:0.801280pt;}
.ls1f{letter-spacing:5.073920pt;}
.ls12{letter-spacing:5.248000pt;}
.ls23{letter-spacing:5.760000pt;}
.ls2d{letter-spacing:12.160000pt;}
.ls11{letter-spacing:15.488000pt;}
.ls14{letter-spacing:17.413120pt;}
.ls10{letter-spacing:28.928000pt;}
.ls8{letter-spacing:30.208000pt;}
.ls13{letter-spacing:46.208000pt;}
.ls2f{letter-spacing:51.471360pt;}
.ls26{letter-spacing:237.328213pt;}
.ls25{letter-spacing:238.501547pt;}
.ls2{letter-spacing:752.160000pt;}
.ws13{word-spacing:-58.880000pt;}
.ws22{word-spacing:-53.120000pt;}
.ws17{word-spacing:-16.640000pt;}
.ws19{word-spacing:-16.512000pt;}
.ws1c{word-spacing:-16.384000pt;}
.ws15{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws12{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.936000pt;}
.ws14{word-spacing:-15.872000pt;}
.ws16{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws21{word-spacing:-14.953067pt;}
.ws1e{word-spacing:-14.855467pt;}
.ws2a{word-spacing:-14.817067pt;}
.ws1d{word-spacing:-14.720000pt;}
.ws26{word-spacing:-14.486933pt;}
.ws2b{word-spacing:-14.464000pt;}
.ws1f{word-spacing:-14.080000pt;}
.ws20{word-spacing:-13.674667pt;}
.ws1a{word-spacing:-13.534613pt;}
.ws2d{word-spacing:-12.160853pt;}
.ws31{word-spacing:-11.040000pt;}
.ws30{word-spacing:-10.881067pt;}
.ws11{word-spacing:-10.720000pt;}
.ws27{word-spacing:-9.280000pt;}
.ws2f{word-spacing:-8.800000pt;}
.ws7{word-spacing:-1.343467pt;}
.wsa{word-spacing:-0.323733pt;}
.wsd{word-spacing:0.000000pt;}
.ws4{word-spacing:0.106667pt;}
.wsb{word-spacing:1.797333pt;}
.ws5{word-spacing:5.203733pt;}
.ws8{word-spacing:5.545600pt;}
.wsc{word-spacing:5.708267pt;}
.ws6{word-spacing:6.399467pt;}
.ws1{word-spacing:7.352000pt;}
.ws9{word-spacing:9.571733pt;}
.ws2{word-spacing:14.358400pt;}
.ws0{word-spacing:21.571733pt;}
.ws2c{word-spacing:163.093333pt;}
.ws2e{word-spacing:210.186667pt;}
.ws29{word-spacing:213.258667pt;}
.ws23{word-spacing:217.226667pt;}
.ws24{word-spacing:218.080000pt;}
.ws25{word-spacing:218.346667pt;}
.ws28{word-spacing:229.024000pt;}
.ws3{word-spacing:457.473600pt;}
._2a{margin-left:-6.065280pt;}
._0{margin-left:-4.075733pt;}
._4{margin-left:-2.138667pt;}
._b{margin-left:-1.025600pt;}
._c{width:1.313600pt;}
._16{width:2.279467pt;}
._17{width:3.736533pt;}
._14{width:5.376000pt;}
._15{width:6.352533pt;}
._20{width:7.328533pt;}
._12{width:8.448000pt;}
._13{width:9.408000pt;}
._19{width:11.052267pt;}
._18{width:12.181333pt;}
._d{width:13.290667pt;}
._e{width:14.274133pt;}
._2e{width:16.092587pt;}
._1e{width:17.344000pt;}
._21{width:18.240000pt;}
._1b{width:19.306667pt;}
._1c{width:20.437333pt;}
._1f{width:21.440000pt;}
._9{width:22.477867pt;}
._8{width:23.588800pt;}
._24{width:24.538133pt;}
._1d{width:25.430400pt;}
._a{width:26.537600pt;}
._1a{width:27.756800pt;}
._10{width:29.546667pt;}
._11{width:30.741333pt;}
._23{width:34.240000pt;}
._f{width:35.712000pt;}
._25{width:46.378667pt;}
._26{width:47.328000pt;}
._22{width:172.875733pt;}
._31{width:181.824000pt;}
._7{width:187.905600pt;}
._5{width:191.489600pt;}
._2d{width:211.093333pt;}
._6{width:223.297600pt;}
._3{width:232.621333pt;}
._30{width:238.817067pt;}
._2f{width:250.453547pt;}
._2c{width:261.162667pt;}
._29{width:265.066667pt;}
._2b{width:266.133333pt;}
._2{width:292.673600pt;}
._1{width:437.953600pt;}
._27{width:752.149333pt;}
._28{width:753.418667pt;}
.fsa{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs4{font-size:67.461249pt;}
.fs9{font-size:74.880000pt;}
.fs0{font-size:84.000000pt;}
.fs6{font-size:106.666667pt;}
.fs2{font-size:213.333896pt;}
.y0{bottom:0.000000pt;}
.y1ae{bottom:5.826667pt;}
.y1e3{bottom:6.400000pt;}
.y224{bottom:8.320000pt;}
.y1bf{bottom:9.573333pt;}
.y1e5{bottom:9.600000pt;}
.y1f6{bottom:9.626667pt;}
.y1ea{bottom:9.920000pt;}
.y1f7{bottom:9.946667pt;}
.y208{bottom:9.960000pt;}
.y1de{bottom:10.426667pt;}
.y217{bottom:11.840000pt;}
.y215{bottom:12.000000pt;}
.y216{bottom:13.120000pt;}
.y218{bottom:13.280000pt;}
.y1fe{bottom:13.600000pt;}
.y1ff{bottom:13.760000pt;}
.y1e1{bottom:15.680000pt;}
.y202{bottom:17.440000pt;}
.y222{bottom:17.600000pt;}
.y19f{bottom:18.693333pt;}
.y18e{bottom:19.453333pt;}
.y213{bottom:20.320000pt;}
.y1fc{bottom:24.320000pt;}
.y1e2{bottom:24.800000pt;}
.y223{bottom:26.720000pt;}
.y17e{bottom:27.040000pt;}
.y1ac{bottom:30.173333pt;}
.y1fb{bottom:33.600000pt;}
.y201{bottom:35.840000pt;}
.y1db{bottom:36.320000pt;}
.y212{bottom:38.720000pt;}
.y220{bottom:40.480000pt;}
.y1f3{bottom:40.800000pt;}
.y1bd{bottom:42.720000pt;}
.y1a6{bottom:48.986667pt;}
.y228{bottom:51.080000pt;}
.y1a{bottom:51.200000pt;}
.y17c{bottom:51.293333pt;}
.y226{bottom:51.400000pt;}
.y19d{bottom:53.306667pt;}
.y1d5{bottom:55.106667pt;}
.y1e9{bottom:55.360000pt;}
.y1d0{bottom:55.973333pt;}
.y1dd{bottom:56.666667pt;}
.y1b7{bottom:61.533333pt;}
.y18c{bottom:62.946667pt;}
.y19{bottom:69.120000pt;}
.y176{bottom:70.080000pt;}
.y197{bottom:72.093333pt;}
.y186{bottom:81.733333pt;}
.y1ad{bottom:81.760000pt;}
.y206{bottom:84.000000pt;}
.y1e7{bottom:85.960000pt;}
.y225{bottom:86.920000pt;}
.y227{bottom:88.520000pt;}
.y1f1{bottom:92.506667pt;}
.y1d6{bottom:97.946667pt;}
.y8f{bottom:99.360000pt;}
.y109{bottom:99.520000pt;}
.y7c{bottom:100.800000pt;}
.y205{bottom:102.400000pt;}
.ye1{bottom:102.560000pt;}
.y1a7{bottom:104.480000pt;}
.ya4{bottom:104.960000pt;}
.yb4{bottom:107.360000pt;}
.ycc{bottom:108.000000pt;}
.y1d1{bottom:109.506667pt;}
.y16e{bottom:110.400000pt;}
.y1f0{bottom:110.906667pt;}
.y38{bottom:114.400000pt;}
.y1b8{bottom:116.933333pt;}
.y12a{bottom:120.000000pt;}
.y19e{bottom:120.413333pt;}
.y5a{bottom:120.960000pt;}
.y149{bottom:122.240000pt;}
.y177{bottom:125.626667pt;}
.y8e{bottom:127.040000pt;}
.y108{bottom:127.200000pt;}
.y198{bottom:128.026667pt;}
.y7b{bottom:128.320000pt;}
.ye0{bottom:130.240000pt;}
.ya3{bottom:132.640000pt;}
.y1be{bottom:133.666667pt;}
.yb3{bottom:135.040000pt;}
.y37{bottom:135.200000pt;}
.y1ce{bottom:135.426667pt;}
.ycb{bottom:135.520000pt;}
.y166{bottom:135.680000pt;}
.y187{bottom:137.026667pt;}
.y1d7{bottom:140.800000pt;}
.y129{bottom:145.280000pt;}
.yde{bottom:147.360000pt;}
.y148{bottom:147.680000pt;}
.y59{bottom:148.640000pt;}
.y17d{bottom:148.666667pt;}
.y1dc{bottom:148.933333pt;}
.y36{bottom:153.760000pt;}
.y8d{bottom:154.560000pt;}
.y107{bottom:154.720000pt;}
.y7a{bottom:156.640000pt;}
.ydf{bottom:157.760000pt;}
.y1a8{bottom:159.973333pt;}
.ya2{bottom:160.160000pt;}
.y165{bottom:160.960000pt;}
.yb2{bottom:162.560000pt;}
.y1d2{bottom:163.066667pt;}
.y128{bottom:170.560000pt;}
.yca{bottom:172.160000pt;}
.y1b9{bottom:172.346667pt;}
.y147{bottom:172.960000pt;}
.y18d{bottom:173.253333pt;}
.y1cc{bottom:173.373333pt;}
.ydd{bottom:175.040000pt;}
.y58{bottom:176.160000pt;}
.y178{bottom:181.186667pt;}
.y8c{bottom:182.240000pt;}
.y106{bottom:182.400000pt;}
.y1d8{bottom:183.653333pt;}
.y199{bottom:183.973333pt;}
.y79{bottom:185.466667pt;}
.y164{bottom:186.266667pt;}
.ya1{bottom:187.866667pt;}
.yb1{bottom:190.266667pt;}
.y35{bottom:191.226667pt;}
.y188{bottom:192.320000pt;}
.ydc{bottom:202.586667pt;}
.y57{bottom:203.866667pt;}
.y1cf{bottom:209.146667pt;}
.y127{bottom:209.306667pt;}
.y8b{bottom:209.786667pt;}
.y105{bottom:209.946667pt;}
.y146{bottom:211.546667pt;}
.y78{bottom:212.986667pt;}
.ya0{bottom:215.386667pt;}
.y1a9{bottom:215.453333pt;}
.yc9{bottom:216.026667pt;}
.y1d3{bottom:216.640000pt;}
.yb0{bottom:217.786667pt;}
.y34{bottom:218.746667pt;}
.y163{bottom:224.826667pt;}
.y1d9{bottom:226.493333pt;}
.y1ba{bottom:227.746667pt;}
.ydb{bottom:230.266667pt;}
.y56{bottom:231.386667pt;}
.y126{bottom:234.586667pt;}
.y179{bottom:236.733333pt;}
.y145{bottom:236.826667pt;}
.y8a{bottom:237.466667pt;}
.y104{bottom:237.626667pt;}
.y19a{bottom:239.906667pt;}
.y77{bottom:240.666667pt;}
.y9f{bottom:243.066667pt;}
.yc8{bottom:243.546667pt;}
.yaf{bottom:245.466667pt;}
.y33{bottom:246.426667pt;}
.y189{bottom:247.653333pt;}
.y162{bottom:250.266667pt;}
.yda{bottom:257.786667pt;}
.y55{bottom:259.066667pt;}
.y125{bottom:259.866667pt;}
.y144{bottom:262.106667pt;}
.y1cd{bottom:264.573333pt;}
.y103{bottom:265.146667pt;}
.y76{bottom:268.186667pt;}
.y1da{bottom:269.346667pt;}
.y1d4{bottom:270.213333pt;}
.y9e{bottom:270.586667pt;}
.y1aa{bottom:270.973333pt;}
.yc7{bottom:271.226667pt;}
.yae{bottom:272.986667pt;}
.y32{bottom:273.946667pt;}
.y89{bottom:274.106667pt;}
.y161{bottom:275.546667pt;}
.y10b{bottom:282.106667pt;}
.y1bb{bottom:283.133333pt;}
.yd9{bottom:285.466667pt;}
.y54{bottom:286.586667pt;}
.y143{bottom:287.386667pt;}
.y17a{bottom:292.293333pt;}
.y18{bottom:292.733333pt;}
.y102{bottom:292.826667pt;}
.y19b{bottom:295.840000pt;}
.y75{bottom:295.866667pt;}
.y9d{bottom:298.266667pt;}
.y124{bottom:298.426667pt;}
.yc6{bottom:298.746667pt;}
.yad{bottom:300.666667pt;}
.y16d{bottom:300.826667pt;}
.y18a{bottom:302.946667pt;}
.yd8{bottom:312.986667pt;}
.y160{bottom:314.106667pt;}
.y53{bottom:314.266667pt;}
.y31{bottom:317.626667pt;}
.y88{bottom:317.786667pt;}
.y17{bottom:318.601600pt;}
.y101{bottom:320.346667pt;}
.y74{bottom:323.386667pt;}
.y123{bottom:323.866667pt;}
.y9c{bottom:325.786667pt;}
.y142{bottom:326.106667pt;}
.yc5{bottom:326.426667pt;}
.y1ab{bottom:326.466667pt;}
.yac{bottom:328.186667pt;}
.y16{bottom:337.801600pt;}
.y1bc{bottom:338.560000pt;}
.y15f{bottom:339.386667pt;}
.yd7{bottom:340.506667pt;}
.y52{bottom:341.786667pt;}
.y87{bottom:345.466667pt;}
.y17b{bottom:347.813333pt;}
.y100{bottom:348.026667pt;}
.y73{bottom:351.066667pt;}
.y141{bottom:351.386667pt;}
.y19c{bottom:351.773333pt;}
.y9b{bottom:353.466667pt;}
.yc4{bottom:353.946667pt;}
.yab{bottom:355.706667pt;}
.y15{bottom:357.001600pt;}
.y18b{bottom:358.240000pt;}
.y30{bottom:361.146667pt;}
.y122{bottom:362.426667pt;}
.y15e{bottom:364.666667pt;}
.yd6{bottom:368.186667pt;}
.y51{bottom:369.466667pt;}
.y86{bottom:372.986667pt;}
.yff{bottom:375.546667pt;}
.y14{bottom:376.201600pt;}
.y140{bottom:376.666667pt;}
.y72{bottom:378.586667pt;}
.y9a{bottom:380.986667pt;}
.yc3{bottom:381.626667pt;}
.y121{bottom:387.706667pt;}
.y2f{bottom:388.826667pt;}
.yaa{bottom:392.386667pt;}
.y13{bottom:395.401600pt;}
.yd5{bottom:395.746667pt;}
.y50{bottom:397.026667pt;}
.y85{bottom:400.546667pt;}
.yfe{bottom:403.266667pt;}
.y15d{bottom:403.426667pt;}
.y71{bottom:406.146667pt;}
.y99{bottom:408.546667pt;}
.yc2{bottom:409.186667pt;}
.y120{bottom:413.026667pt;}
.y12{bottom:414.601600pt;}
.y13f{bottom:415.426667pt;}
.y2e{bottom:416.386667pt;}
.yd4{bottom:424.066667pt;}
.y4f{bottom:424.546667pt;}
.y84{bottom:428.226667pt;}
.y15c{bottom:428.706667pt;}
.yfd{bottom:430.786667pt;}
.y70{bottom:433.826667pt;}
.y98{bottom:436.226667pt;}
.yc1{bottom:436.866667pt;}
.y11f{bottom:438.306667pt;}
.y195{bottom:440.066667pt;}
.y13e{bottom:440.706667pt;}
.y2d{bottom:444.066667pt;}
.y1b5{bottom:445.666667pt;}
.y4e{bottom:452.226667pt;}
.yd3{bottom:453.506667pt;}
.y16c{bottom:453.986667pt;}
.y83{bottom:455.746667pt;}
.yfc{bottom:458.466667pt;}
.y6f{bottom:461.346667pt;}
.y97{bottom:463.746667pt;}
.yc0{bottom:464.386667pt;}
.y13d{bottom:465.986667pt;}
.y15b{bottom:467.266667pt;}
.y2c{bottom:471.586667pt;}
.y194{bottom:473.506667pt;}
.y11{bottom:475.801600pt;}
.y11e{bottom:477.026667pt;}
.y1b4{bottom:478.306667pt;}
.y4d{bottom:479.746667pt;}
.yd2{bottom:482.146667pt;}
.y82{bottom:483.426667pt;}
.yfb{bottom:485.986667pt;}
.y6e{bottom:489.026667pt;}
.y96{bottom:491.426667pt;}
.ybf{bottom:492.066667pt;}
.y15a{bottom:492.546667pt;}
.y193{bottom:493.826667pt;}
.y10{bottom:495.001600pt;}
.y2b{bottom:499.266667pt;}
.y11d{bottom:502.306667pt;}
.y13c{bottom:504.546667pt;}
.y4c{bottom:507.426667pt;}
.y184{bottom:508.546667pt;}
.yd1{bottom:509.826667pt;}
.y81{bottom:510.946667pt;}
.y1b3{bottom:511.426667pt;}
.yfa{bottom:513.666667pt;}
.yf{bottom:514.201600pt;}
.y6d{bottom:516.546667pt;}
.y16b{bottom:517.986667pt;}
.y95{bottom:518.946667pt;}
.ybe{bottom:519.586667pt;}
.y192{bottom:519.746667pt;}
.y1f9{bottom:521.826667pt;}
.y2a{bottom:526.786667pt;}
.y174{bottom:527.266667pt;}
.y11c{bottom:527.586667pt;}
.y13b{bottom:529.826667pt;}
.y159{bottom:531.266667pt;}
.y1b2{bottom:531.906667pt;}
.ye{bottom:533.401600pt;}
.y4b{bottom:534.946667pt;}
.y1ef{bottom:536.066667pt;}
.yd0{bottom:537.346667pt;}
.y80{bottom:538.626667pt;}
.yf9{bottom:541.186667pt;}
.y183{bottom:542.626667pt;}
.y16a{bottom:543.266667pt;}
.y6c{bottom:544.226667pt;}
.y191{bottom:544.706667pt;}
.y94{bottom:546.626667pt;}
.y11b{bottom:552.866667pt;}
.y1b1{bottom:553.346667pt;}
.y29{bottom:554.466667pt;}
.y1a4{bottom:555.906667pt;}
.ybd{bottom:556.226667pt;}
.y158{bottom:556.546667pt;}
.y173{bottom:560.066667pt;}
.y182{bottom:561.986667pt;}
.y4a{bottom:562.626667pt;}
.y190{bottom:564.066667pt;}
.ycf{bottom:565.026667pt;}
.y7f{bottom:566.146667pt;}
.y1f8{bottom:566.306667pt;}
.y13a{bottom:568.546667pt;}
.yf8{bottom:568.866667pt;}
.y6b{bottom:571.746667pt;}
.y1b0{bottom:572.706667pt;}
.y93{bottom:574.146667pt;}
.yd{bottom:574.601600pt;}
.y1ca{bottom:574.946667pt;}
.y172{bottom:579.426667pt;}
.y22e{bottom:580.866667pt;}
.y181{bottom:581.346667pt;}
.y157{bottom:581.826667pt;}
.y28{bottom:581.986667pt;}
.ye8{bottom:583.266667pt;}
.y20e{bottom:585.666667pt;}
.y1a3{bottom:588.866667pt;}
.y49{bottom:590.146667pt;}
.y11a{bottom:591.586667pt;}
.y1c9{bottom:592.226667pt;}
.yce{bottom:592.546667pt;}
.ybc{bottom:593.026667pt;}
.y7e{bottom:593.506667pt;}
.y139{bottom:593.826667pt;}
.yc{bottom:595.801600pt;}
.yf7{bottom:596.386667pt;}
.y1f5{bottom:596.546667pt;}
.y171{bottom:598.786667pt;}
.y6a{bottom:599.426667pt;}
.y18f{bottom:599.906667pt;}
.y196{bottom:600.640000pt;}
.y180{bottom:600.893333pt;}
.y92{bottom:601.853333pt;}
.y1b6{bottom:602.240000pt;}
.y20d{bottom:602.653333pt;}
.y169{bottom:607.133333pt;}
.y1a2{bottom:608.893333pt;}
.y1c8{bottom:609.053333pt;}
.y27{bottom:609.693333pt;}
.y22d{bottom:614.493333pt;}
.y119{bottom:616.893333pt;}
.yb{bottom:617.001600pt;}
.y48{bottom:617.853333pt;}
.y170{bottom:618.173333pt;}
.y138{bottom:619.133333pt;}
.y156{bottom:620.573333pt;}
.yf6{bottom:624.093333pt;}
.y1c7{bottom:626.013333pt;}
.y20c{bottom:626.173333pt;}
.y69{bottom:626.973333pt;}
.ycd{bottom:629.213333pt;}
.y91{bottom:629.373333pt;}
.ybb{bottom:629.853333pt;}
.y17f{bottom:630.013333pt;}
.y185{bottom:630.080000pt;}
.y7d{bottom:630.493333pt;}
.y168{bottom:632.413333pt;}
.y204{bottom:633.373333pt;}
.y26{bottom:637.213333pt;}
.y1c6{bottom:642.813333pt;}
.y22c{bottom:643.933333pt;}
.y21d{bottom:644.893333pt;}
.y47{bottom:645.373333pt;}
.y155{bottom:645.853333pt;}
.y16f{bottom:647.453333pt;}
.y175{bottom:647.520000pt;}
.ya{bottom:648.201600pt;}
.y1a1{bottom:650.653333pt;}
.yf5{bottom:651.613333pt;}
.y68{bottom:654.653333pt;}
.y118{bottom:655.453333pt;}
.ya9{bottom:657.053333pt;}
.y137{bottom:657.693333pt;}
.y1f2{bottom:657.853333pt;}
.y1c5{bottom:659.613333pt;}
.y25{bottom:664.893333pt;}
.y90{bottom:666.013333pt;}
.yba{bottom:666.653333pt;}
.y154{bottom:671.133333pt;}
.y46{bottom:673.053333pt;}
.y1c4{bottom:676.573333pt;}
.y21c{bottom:676.893333pt;}
.yf4{bottom:679.293333pt;}
.y9{bottom:679.401600pt;}
.y1a0{bottom:679.933333pt;}
.y1a5{bottom:680.160000pt;}
.y117{bottom:680.733333pt;}
.y67{bottom:682.173333pt;}
.y136{bottom:683.133333pt;}
.ya8{bottom:684.573333pt;}
.y1f4{bottom:688.733333pt;}
.y24{bottom:692.413333pt;}
.y21b{bottom:693.053333pt;}
.y10a{bottom:693.693333pt;}
.y1c3{bottom:693.853333pt;}
.y167{bottom:696.413333pt;}
.y20b{bottom:699.933333pt;}
.y45{bottom:700.573333pt;}
.y8{bottom:700.601600pt;}
.y22b{bottom:701.373333pt;}
.yf3{bottom:707.453333pt;}
.y135{bottom:708.413333pt;}
.y153{bottom:709.693333pt;}
.y66{bottom:709.853333pt;}
.yb9{bottom:710.493333pt;}
.y1c2{bottom:711.453333pt;}
.ya7{bottom:712.253333pt;}
.y116{bottom:719.453333pt;}
.y1ee{bottom:719.773333pt;}
.y23{bottom:720.093333pt;}
.y7{bottom:721.801600pt;}
.y21a{bottom:723.773333pt;}
.y44{bottom:728.253333pt;}
.y1c1{bottom:728.413333pt;}
.y20a{bottom:733.213333pt;}
.y134{bottom:733.693333pt;}
.y22a{bottom:734.173333pt;}
.y152{bottom:734.973333pt;}
.yf2{bottom:736.253333pt;}
.y65{bottom:737.373333pt;}
.yb8{bottom:738.013333pt;}
.ya6{bottom:739.773333pt;}
.y1c0{bottom:742.013333pt;}
.y1cb{bottom:742.080000pt;}
.y115{bottom:744.733333pt;}
.y22{bottom:747.613333pt;}
.y1e6{bottom:750.653333pt;}
.y229{bottom:753.533333pt;}
.y43{bottom:755.773333pt;}
.y219{bottom:759.453333pt;}
.y151{bottom:760.253333pt;}
.y6{bottom:762.401600pt;}
.yf1{bottom:763.773333pt;}
.y64{bottom:765.053333pt;}
.yb7{bottom:766.333333pt;}
.y209{bottom:766.493333pt;}
.ye7{bottom:767.453333pt;}
.y114{bottom:770.013333pt;}
.y133{bottom:772.253333pt;}
.y21{bottom:773.853333pt;}
.ya5{bottom:776.413333pt;}
.y5{bottom:780.401600pt;}
.y1ed{bottom:780.893333pt;}
.y42{bottom:783.453333pt;}
.y150{bottom:785.693333pt;}
.yf0{bottom:791.453333pt;}
.y63{bottom:792.573333pt;}
.yb6{bottom:794.973333pt;}
.y113{bottom:795.293333pt;}
.y132{bottom:797.533333pt;}
.y207{bottom:799.773333pt;}
.y41{bottom:811.013333pt;}
.y1e8{bottom:811.813333pt;}
.yef{bottom:819.013333pt;}
.y62{bottom:820.293333pt;}
.ye6{bottom:822.693333pt;}
.y131{bottom:822.853333pt;}
.y14f{bottom:824.293333pt;}
.y20{bottom:825.573333pt;}
.y200{bottom:830.693333pt;}
.yb5{bottom:831.653333pt;}
.y112{bottom:833.893333pt;}
.y40{bottom:838.693333pt;}
.y1ec{bottom:842.213333pt;}
.y4{bottom:842.401600pt;}
.yee{bottom:846.693333pt;}
.y61{bottom:847.813333pt;}
.y14e{bottom:849.573333pt;}
.ye5{bottom:850.213333pt;}
.y1f{bottom:853.253333pt;}
.y111{bottom:859.333333pt;}
.y3{bottom:860.401600pt;}
.y130{bottom:861.573333pt;}
.y203{bottom:863.973333pt;}
.y3f{bottom:866.213333pt;}
.y211{bottom:867.013333pt;}
.y233{bottom:871.653333pt;}
.y1eb{bottom:872.453333pt;}
.yed{bottom:874.213333pt;}
.y14d{bottom:874.853333pt;}
.y60{bottom:875.493333pt;}
.ye4{bottom:877.893333pt;}
.y2{bottom:878.401600pt;}
.y21f{bottom:880.293333pt;}
.y110{bottom:884.613333pt;}
.y3e{bottom:893.893333pt;}
.y1fa{bottom:896.293333pt;}
.y1e{bottom:897.573333pt;}
.y232{bottom:899.333333pt;}
.y12f{bottom:900.133333pt;}
.yec{bottom:901.893333pt;}
.y214{bottom:902.053333pt;}
.y1e4{bottom:902.693333pt;}
.y5f{bottom:903.013333pt;}
.ye3{bottom:905.413333pt;}
.y10f{bottom:909.893333pt;}
.y3d{bottom:921.413333pt;}
.y12e{bottom:925.413333pt;}
.y221{bottom:926.373333pt;}
.y231{bottom:926.853333pt;}
.y5e{bottom:930.693333pt;}
.y1e0{bottom:933.573333pt;}
.y1fd{bottom:936.133333pt;}
.yeb{bottom:938.533333pt;}
.y14c{bottom:938.853333pt;}
.y1d{bottom:941.893333pt;}
.ye2{bottom:942.053333pt;}
.y1{bottom:942.314533pt;}
.y10e{bottom:948.453333pt;}
.y3c{bottom:949.093333pt;}
.y12d{bottom:950.853333pt;}
.y230{bottom:954.533333pt;}
.y210{bottom:956.613333pt;}
.y5d{bottom:958.213333pt;}
.y14b{bottom:964.133333pt;}
.y1c{bottom:969.573333pt;}
.y20f{bottom:975.973333pt;}
.y12c{bottom:976.133333pt;}
.y3b{bottom:976.613333pt;}
.y1af{bottom:982.053333pt;}
.yea{bottom:982.853333pt;}
.y5c{bottom:985.893333pt;}
.y10d{bottom:987.173333pt;}
.y14a{bottom:989.413333pt;}
.y21e{bottom:992.293333pt;}
.y1df{bottom:995.333333pt;}
.y1b{bottom:997.093333pt;}
.y22f{bottom:1010.693333pt;}
.ye9{bottom:1012.293333pt;}
.y10c{bottom:1013.093333pt;}
.y3a{bottom:1013.253333pt;}
.y5b{bottom:1013.413333pt;}
.y12b{bottom:1014.693333pt;}
.y39{bottom:1082.560000pt;}
.h20{height:30.226667pt;}
.h25{height:30.240000pt;}
.h24{height:30.260000pt;}
.h23{height:30.386667pt;}
.h2e{height:30.400000pt;}
.h29{height:30.426667pt;}
.h31{height:34.386667pt;}
.h32{height:35.506667pt;}
.h35{height:35.520000pt;}
.h36{height:35.680000pt;}
.h33{height:35.700000pt;}
.h2f{height:36.431250pt;}
.h2b{height:37.746667pt;}
.h1a{height:40.332812pt;}
.h1f{height:41.586667pt;}
.h3c{height:44.437500pt;}
.h6{height:44.706250pt;}
.h39{height:45.266667pt;}
.h3a{height:45.426667pt;}
.h9{height:46.840769pt;}
.h10{height:51.663750pt;}
.h1d{height:52.134375pt;}
.h3d{height:52.832812pt;}
.h37{height:53.535000pt;}
.h2{height:56.156250pt;}
.hf{height:57.787500pt;}
.h11{height:59.340000pt;}
.h8{height:62.781250pt;}
.ha{height:62.812500pt;}
.h13{height:62.938125pt;}
.h2c{height:63.506667pt;}
.h7{height:64.500000pt;}
.hd{height:66.625000pt;}
.h30{height:69.426667pt;}
.he{height:71.524375pt;}
.h34{height:71.684375pt;}
.h1c{height:72.226146pt;}
.h14{height:73.490625pt;}
.h1{height:73.705078pt;}
.h1e{height:75.465000pt;}
.h2a{height:77.586667pt;}
.h1b{height:88.332812pt;}
.h38{height:91.346667pt;}
.h27{height:92.160000pt;}
.hc{height:111.250000pt;}
.h3b{height:112.180000pt;}
.h22{height:121.106667pt;}
.h28{height:121.146667pt;}
.h21{height:182.266667pt;}
.h2d{height:196.666667pt;}
.h26{height:213.946667pt;}
.h5{height:222.500587pt;}
.h19{height:285.920000pt;}
.h17{height:347.840000pt;}
.h18{height:373.600000pt;}
.h12{height:380.480000pt;}
.h15{height:397.920000pt;}
.h16{height:427.360000pt;}
.h0{height:1056.000000pt;}
.hb{height:1122.558213pt;}
.h3{height:1122.560000pt;}
.h4{height:1122.666667pt;}
.w9{width:54.390667pt;}
.w1c{width:56.670667pt;}
.w23{width:91.346667pt;}
.w20{width:91.350667pt;}
.w21{width:91.378667pt;}
.w22{width:91.392000pt;}
.we{width:92.146667pt;}
.wb{width:94.400000pt;}
.wa{width:94.578667pt;}
.w12{width:102.112000pt;}
.w17{width:104.338667pt;}
.w14{width:108.306667pt;}
.w13{width:108.658667pt;}
.w16{width:113.440000pt;}
.wc{width:113.472000pt;}
.wf{width:119.060000pt;}
.w10{width:123.040000pt;}
.w15{width:128.660000pt;}
.wd{width:132.338667pt;}
.w1b{width:137.933333pt;}
.w19{width:138.080000pt;}
.w1a{width:138.106667pt;}
.w1f{width:182.733333pt;}
.w1d{width:182.737333pt;}
.w1e{width:182.746667pt;}
.w11{width:319.106667pt;}
.w18{width:414.146667pt;}
.w6{width:498.240000pt;}
.w4{width:527.040000pt;}
.w7{width:538.240000pt;}
.w5{width:539.520000pt;}
.w8{width:567.040000pt;}
.w3{width:793.758333pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:5.440000pt;}
.x54{left:7.200000pt;}
.x47{left:8.306667pt;}
.x53{left:9.440000pt;}
.x5f{left:10.705333pt;}
.x3c{left:12.310667pt;}
.x4a{left:14.240000pt;}
.x42{left:15.840000pt;}
.x3d{left:18.866667pt;}
.x3e{left:20.946667pt;}
.x58{left:22.080000pt;}
.x46{left:23.190667pt;}
.x28{left:24.706667pt;}
.x40{left:26.720000pt;}
.x2d{left:27.706667pt;}
.x49{left:29.600000pt;}
.x39{left:30.693333pt;}
.x51{left:31.826667pt;}
.x25{left:33.506667pt;}
.x36{left:37.213333pt;}
.x2b{left:39.546667pt;}
.x18{left:40.733333pt;}
.x43{left:43.546667pt;}
.x35{left:45.213333pt;}
.x1f{left:47.426667pt;}
.x23{left:49.533333pt;}
.x55{left:52.480000pt;}
.x48{left:53.586667pt;}
.x1d{left:55.453333pt;}
.x16{left:58.106667pt;}
.x1c{left:63.453333pt;}
.x15{left:66.106667pt;}
.x5a{left:69.121333pt;}
.x1b{left:71.453333pt;}
.x2c{left:73.146667pt;}
.x14{left:74.106667pt;}
.x24{left:75.173333pt;}
.x5d{left:79.840000pt;}
.x4f{left:81.146667pt;}
.x37{left:84.000000pt;}
.x1e{left:89.053333pt;}
.x17{left:91.746667pt;}
.x30{left:96.386667pt;}
.x3b{left:106.281333pt;}
.x4{left:113.472000pt;}
.x4b{left:116.361333pt;}
.x1{left:120.000000pt;}
.x5b{left:125.801333pt;}
.x22{left:126.720000pt;}
.x2a{left:127.680000pt;}
.xe{left:132.352000pt;}
.x6{left:135.706667pt;}
.xd{left:137.466667pt;}
.x59{left:141.946667pt;}
.x12{left:145.466667pt;}
.x27{left:147.680000pt;}
.x5{left:150.426667pt;}
.xf{left:160.666667pt;}
.x10{left:170.266667pt;}
.x31{left:172.773333pt;}
.x3a{left:191.933333pt;}
.x2{left:206.986667pt;}
.x29{left:217.733333pt;}
.xc{left:230.960000pt;}
.x4c{left:235.426667pt;}
.x2e{left:237.466667pt;}
.x20{left:242.400000pt;}
.x32{left:244.666667pt;}
.x19{left:251.746667pt;}
.x3f{left:255.266667pt;}
.xa{left:257.986667pt;}
.xb{left:305.506667pt;}
.x5c{left:308.546667pt;}
.x41{left:349.666667pt;}
.x4e{left:358.466667pt;}
.x7{left:366.626667pt;}
.x56{left:380.066667pt;}
.x33{left:390.106667pt;}
.x1a{left:396.893333pt;}
.x60{left:399.946667pt;}
.x8{left:413.853333pt;}
.x9{left:421.853333pt;}
.x50{left:460.586667pt;}
.x44{left:463.146667pt;}
.x5e{left:491.306667pt;}
.x34{left:513.533333pt;}
.x57{left:518.186667pt;}
.x38{left:555.746667pt;}
.x52{left:569.253333pt;}
.x61{left:582.693333pt;}
.x45{left:595.493333pt;}
.x13{left:640.453333pt;}
.x26{left:646.053333pt;}
.x11{left:665.573333pt;}
.x21{left:667.013333pt;}
.x3{left:673.093333pt;}
.x2f{left:680.453333pt;}
}




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