
    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_cf8d9f484d6cfd64ccad73d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942871;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_a07e1f7dbe4d3a25b64d6a02.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7c0d2315d0a65920d24dc9a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.725098;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_1edf4971513a094fbc3fdde8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6dce1b72b602144c1d981e26.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9960b83ca0ce1cb082d85394.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.096680;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_369db7377fdc28494de1a3dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.781000;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_38bb17eed22458c76d8f73ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906308;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_041d9a7621caa1a7916ecb0f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.715820;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_d0c22fe529c03407d5dadd55.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_76dd777ea5abbb385f464345.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.906308;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_28b438aab193bc7675b7d681.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919434;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_0c4541c221259f0d135bbca1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.849609;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_369db7377fdc28494de1a3dd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.781000;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_38bb17eed22458c76d8f73ed.woff2')format("woff");}.fff{font-family:fff;line-height:0.906308;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_041d9a7621caa1a7916ecb0f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.715820;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_d0c22fe529c03407d5dadd55.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_369db7377fdc28494de1a3dd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.781000;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_38bb17eed22458c76d8f73ed.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.906308;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_041d9a7621caa1a7916ecb0f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.715820;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_d0c22fe529c03407d5dadd55.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_369db7377fdc28494de1a3dd.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.781000;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:ff17;src:url('chunks/assets/font_38bb17eed22458c76d8f73ed.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.906308;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:ff18;src:url('chunks/assets/font_041d9a7621caa1a7916ecb0f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.715820;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:ff19;src:url('chunks/assets/font_d0c22fe529c03407d5dadd55.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_6687b2fef7e15c557aca1cd6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.400000px;}
.ls9{letter-spacing:-4.440000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001200px;}
.ls4{letter-spacing:0.001800px;}
.ls3{letter-spacing:0.003000px;}
.ls7{letter-spacing:0.003600px;}
.ls6{letter-spacing:2.100000px;}
.ls2{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.lsa{letter-spacing:14.400000px;}
.ls5{letter-spacing:27.000000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(38,122,200),0 0.015em rgb(38,122,200),0.015em 0 rgb(38,122,200),0 -0.015em  rgb(38,122,200);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(38,122,200);text-shadow:none;}
}
.ws0{word-spacing:-100.080000px;}
.ws2{word-spacing:-74.687035px;}
.ws1{word-spacing:-36.568231px;}
.ws6{word-spacing:-27.000000px;}
.ws4{word-spacing:-25.812000px;}
.ws25{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.780000px;}
.ws9{word-spacing:-16.680000px;}
.wsc{word-spacing:-15.012000px;}
.wsd{word-spacing:-14.400000px;}
.ws8{word-spacing:-12.240000px;}
.wse{word-spacing:-6.360000px;}
.wsf{word-spacing:-4.500000px;}
.ws7{word-spacing:-2.100000px;}
.wsb{word-spacing:-1.776000px;}
.ws20{word-spacing:-1.620000px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:0.120000px;}
.ws17{word-spacing:0.720000px;}
.wsa{word-spacing:4.440000px;}
.ws24{word-spacing:5.640000px;}
.ws13{word-spacing:6.660000px;}
.ws16{word-spacing:8.040000px;}
.ws10{word-spacing:8.580000px;}
.ws12{word-spacing:11.340000px;}
.ws1d{word-spacing:12.420000px;}
.ws21{word-spacing:13.380000px;}
.ws11{word-spacing:14.220000px;}
.ws1f{word-spacing:15.720000px;}
.ws14{word-spacing:15.900000px;}
.ws15{word-spacing:16.680000px;}
.ws23{word-spacing:19.080000px;}
.ws1a{word-spacing:20.760000px;}
.ws1e{word-spacing:20.880000px;}
.ws22{word-spacing:22.440000px;}
.ws1c{word-spacing:25.140000px;}
.ws19{word-spacing:192.886200px;}
.ws18{word-spacing:405.320400px;}
._17{margin-left:-2916.981000px;}
._3b{margin-left:-880.344000px;}
._0{margin-left:-801.720000px;}
._37{margin-left:-648.144000px;}
._4{margin-left:-597.496282px;}
._3c{margin-left:-544.207200px;}
._38{margin-left:-504.180600px;}
._3a{margin-left:-467.293800px;}
._1{margin-left:-402.119003px;}
._39{margin-left:-360.000000px;}
._13{margin-left:-16.458600px;}
._14{margin-left:-15.351000px;}
._7{margin-left:-13.296000px;}
._16{margin-left:-12.262200px;}
._8{margin-left:-10.800000px;}
._e{margin-left:-8.803800px;}
._11{margin-left:-7.704000px;}
._6{margin-left:-6.052200px;}
._a{margin-left:-4.845000px;}
._5{margin-left:-3.264000px;}
._2{margin-left:-2.177400px;}
._3{margin-left:-1.060200px;}
._10{width:1.097400px;}
._f{width:2.142000px;}
._1c{width:3.592200px;}
._18{width:4.867200px;}
._1a{width:6.836400px;}
._1b{width:8.078400px;}
._15{width:9.406200px;}
._12{width:10.512000px;}
._19{width:11.562600px;}
._1e{width:13.270800px;}
._21{width:14.838000px;}
._23{width:18.066000px;}
._22{width:19.068000px;}
._20{width:20.847000px;}
._1f{width:21.880800px;}
._24{width:23.518200px;}
._9{width:25.002000px;}
._d{width:27.000000px;}
._34{width:28.362000px;}
._35{width:29.514000px;}
._1d{width:30.979200px;}
._27{width:32.706000px;}
._33{width:35.082000px;}
._25{width:37.072200px;}
._26{width:38.341800px;}
._36{width:59.007000px;}
._2d{width:102.450600px;}
._c{width:105.361200px;}
._2c{width:199.773600px;}
._30{width:207.898200px;}
._29{width:226.876200px;}
._2b{width:294.582600px;}
._2a{width:352.582800px;}
._28{width:361.384200px;}
._31{width:362.534400px;}
._32{width:515.624400px;}
._2e{width:701.698200px;}
._2f{width:734.702400px;}
._b{width:1024.640400px;}
.fca{color:rgb(5,99,193);}
.fc9{color:rgb(245,126,19);}
.fc8{color:rgb(47,92,179);}
.fc7{color:rgb(152,169,221);}
.fc5{color:rgb(66,178,60);}
.fc6{color:rgb(38,122,200);}
.fc3{color:rgb(210,32,39);}
.fc2{color:rgb(42,62,146);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fcb{color:rgb(0,173,239);}
.fc0{color:transparent;}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:114.000000px;}
.fsb{font-size:126.000000px;}
.fs1{font-size:131.540400px;}
.fs9{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fs3{font-size:268.658400px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:78.581550px;}
.y112{bottom:114.502050px;}
.y3{bottom:128.872800px;}
.ybd{bottom:132.052050px;}
.y5c{bottom:132.431250px;}
.y8a{bottom:136.888650px;}
.y1a8{bottom:140.501550px;}
.y172{bottom:141.111000px;}
.y1d5{bottom:141.111150px;}
.y59{bottom:141.403650px;}
.y13d{bottom:141.736500px;}
.ybc{bottom:149.601900px;}
.y89{bottom:154.438650px;}
.y1a7{bottom:158.501550px;}
.y171{bottom:159.111000px;}
.y1d4{bottom:159.111150px;}
.y58{bottom:159.403650px;}
.y13c{bottom:159.736500px;}
.yef{bottom:165.759450px;}
.ybb{bottom:175.655850px;}
.y1a6{bottom:176.501550px;}
.y1d3{bottom:177.111150px;}
.y57{bottom:177.403650px;}
.y13b{bottom:177.736500px;}
.y88{bottom:180.492600px;}
.yee{bottom:183.309600px;}
.y170{bottom:185.614950px;}
.yba{bottom:193.206000px;}
.y1a5{bottom:194.501550px;}
.y1d2{bottom:195.111150px;}
.y56{bottom:195.403650px;}
.y13a{bottom:195.736500px;}
.y87{bottom:198.042600px;}
.yed{bottom:200.859450px;}
.y111{bottom:210.755850px;}
.y1a4{bottom:212.501550px;}
.y1d1{bottom:213.111150px;}
.y55{bottom:213.403650px;}
.y2e{bottom:213.683400px;}
.y139{bottom:213.736500px;}
.y86{bottom:215.592600px;}
.yb9{bottom:219.259800px;}
.y16f{bottom:224.614950px;}
.yec{bottom:226.913400px;}
.y1a3{bottom:230.501550px;}
.y1d0{bottom:231.111150px;}
.y54{bottom:231.403650px;}
.y2d{bottom:231.683400px;}
.y138{bottom:231.736500px;}
.yb8{bottom:236.809800px;}
.y85{bottom:241.646550px;}
.y16e{bottom:242.614950px;}
.yeb{bottom:244.463400px;}
.y53{bottom:249.403650px;}
.y2c{bottom:249.683400px;}
.y137{bottom:249.736500px;}
.y110{bottom:254.359800px;}
.y1cf{bottom:257.614950px;}
.y84{bottom:259.196550px;}
.y16d{bottom:260.614950px;}
.yea{bottom:262.013400px;}
.yb7{bottom:262.863750px;}
.y52{bottom:267.403650px;}
.y2b{bottom:267.683400px;}
.y136{bottom:267.736500px;}
.y1a2{bottom:269.093250px;}
.y10f{bottom:271.909950px;}
.y83{bottom:276.746550px;}
.y16c{bottom:278.614950px;}
.yb6{bottom:280.413750px;}
.y51{bottom:285.403650px;}
.y2a{bottom:285.683400px;}
.y135{bottom:285.736500px;}
.ye9{bottom:288.067350px;}
.y1a1{bottom:294.605100px;}
.y16b{bottom:296.614950px;}
.yb5{bottom:297.963750px;}
.y82{bottom:302.800500px;}
.y1e8{bottom:302.845350px;}
.y50{bottom:303.403650px;}
.y29{bottom:303.683400px;}
.ye8{bottom:305.617350px;}
.y134{bottom:312.240450px;}
.y16a{bottom:314.614950px;}
.y10e{bottom:315.513750px;}
.y1a0{bottom:318.275100px;}
.y81{bottom:320.350500px;}
.y1e7{bottom:320.845350px;}
.y4f{bottom:321.403650px;}
.y28{bottom:321.683400px;}
.ye7{bottom:323.167350px;}
.yb4{bottom:324.017700px;}
.y19f{bottom:326.375100px;}
.y169{bottom:332.614950px;}
.y10d{bottom:333.063750px;}
.y80{bottom:337.900500px;}
.y27{bottom:339.683400px;}
.yb3{bottom:341.567700px;}
.ye6{bottom:349.221300px;}
.y168{bottom:350.614950px;}
.y133{bottom:351.240450px;}
.y1f1{bottom:355.244250px;}
.y26{bottom:357.683400px;}
.y19e{bottom:358.145250px;}
.y10c{bottom:359.117700px;}
.y7f{bottom:363.954450px;}
.ye5{bottom:366.771300px;}
.yb2{bottom:367.621650px;}
.y167{bottom:368.614950px;}
.y132{bottom:369.240450px;}
.y1f0{bottom:375.044250px;}
.y25{bottom:375.683400px;}
.y10b{bottom:376.667700px;}
.y7e{bottom:381.504300px;}
.y19d{bottom:383.657100px;}
.ye4{bottom:384.321300px;}
.yb1{bottom:385.171650px;}
.y166{bottom:386.614950px;}
.y24{bottom:393.683400px;}
.y10a{bottom:394.217700px;}
.y1ef{bottom:394.844250px;}
.y131{bottom:395.744400px;}
.y7d{bottom:399.054450px;}
.y4e{bottom:402.176550px;}
.yb0{bottom:402.721650px;}
.y165{bottom:404.614950px;}
.y1ce{bottom:404.615100px;}
.y19c{bottom:408.077100px;}
.ye3{bottom:410.375250px;}
.y23{bottom:411.683400px;}
.y109{bottom:411.767700px;}
.y130{bottom:413.744400px;}
.y1ee{bottom:414.644250px;}
.y4d{bottom:420.176550px;}
.y164{bottom:422.614950px;}
.y1cd{bottom:422.615100px;}
.y7c{bottom:425.108250px;}
.ye2{bottom:427.925250px;}
.yaf{bottom:428.775600px;}
.y22{bottom:429.683400px;}
.y12f{bottom:431.744400px;}
.y1ed{bottom:434.444250px;}
.y108{bottom:437.821650px;}
.y4c{bottom:438.176550px;}
.y163{bottom:440.614950px;}
.y1cc{bottom:440.615100px;}
.y19b{bottom:442.277100px;}
.y7b{bottom:442.658400px;}
.ye1{bottom:445.475250px;}
.yae{bottom:446.325600px;}
.y21{bottom:447.683400px;}
.y12e{bottom:449.744400px;}
.y107{bottom:455.371650px;}
.y4b{bottom:456.176550px;}
.y162{bottom:458.614950px;}
.y1cb{bottom:458.615100px;}
.y19a{bottom:460.277100px;}
.yad{bottom:463.875600px;}
.y20{bottom:465.683400px;}
.y12d{bottom:467.744400px;}
.y7a{bottom:468.712350px;}
.ye0{bottom:471.529200px;}
.y106{bottom:472.921650px;}
.y4a{bottom:474.176550px;}
.y161{bottom:476.614950px;}
.y1ca{bottom:476.615100px;}
.y199{bottom:478.277100px;}
.y1f{bottom:483.683400px;}
.y12c{bottom:485.744400px;}
.y79{bottom:486.262200px;}
.ydf{bottom:489.079200px;}
.yac{bottom:489.929550px;}
.y49{bottom:492.176550px;}
.y160{bottom:494.614950px;}
.y1c9{bottom:494.615100px;}
.y198{bottom:496.277100px;}
.y105{bottom:498.975600px;}
.y1e{bottom:501.683400px;}
.y78{bottom:503.812200px;}
.yab{bottom:507.479550px;}
.y12b{bottom:507.572700px;}
.y15f{bottom:512.614950px;}
.y1c8{bottom:512.615100px;}
.y197{bottom:514.277100px;}
.yde{bottom:515.133150px;}
.y104{bottom:516.525600px;}
.y1d{bottom:519.683400px;}
.yaa{bottom:525.029550px;}
.y77{bottom:529.866150px;}
.y15e{bottom:530.614950px;}
.y1c7{bottom:530.615100px;}
.y196{bottom:532.277100px;}
.ydd{bottom:532.683150px;}
.y12a{bottom:534.076650px;}
.y1c{bottom:537.683400px;}
.y103{bottom:542.579550px;}
.y76{bottom:547.416150px;}
.y15d{bottom:548.614950px;}
.y1c6{bottom:548.615100px;}
.ydc{bottom:550.233150px;}
.y195{bottom:550.277100px;}
.ya9{bottom:551.083500px;}
.y129{bottom:552.076650px;}
.y1b{bottom:555.683400px;}
.y102{bottom:560.129550px;}
.y48{bottom:562.444800px;}
.y75{bottom:564.966150px;}
.y15c{bottom:566.614950px;}
.y1c5{bottom:566.615100px;}
.y194{bottom:568.277100px;}
.ya8{bottom:568.633500px;}
.y128{bottom:570.076650px;}
.y1a{bottom:573.683400px;}
.ydb{bottom:576.287100px;}
.y47{bottom:576.844800px;}
.y101{bottom:577.679550px;}
.y15b{bottom:584.614950px;}
.y1c4{bottom:584.615100px;}
.ya7{bottom:586.183500px;}
.y193{bottom:586.277100px;}
.y127{bottom:588.076650px;}
.y74{bottom:591.020100px;}
.y46{bottom:591.244800px;}
.y19{bottom:591.683400px;}
.yda{bottom:593.837100px;}
.y100{bottom:595.229550px;}
.y1c3{bottom:602.615100px;}
.y192{bottom:604.277100px;}
.y45{bottom:605.644800px;}
.y126{bottom:606.076650px;}
.y73{bottom:608.570100px;}
.y18{bottom:609.683400px;}
.y15a{bottom:611.118900px;}
.yd9{bottom:611.387100px;}
.ya6{bottom:612.237450px;}
.y44{bottom:620.044800px;}
.y1c2{bottom:620.615100px;}
.yff{bottom:621.283500px;}
.y125{bottom:624.076650px;}
.y72{bottom:626.120100px;}
.y1ec{bottom:626.867850px;}
.y17{bottom:627.683400px;}
.yd8{bottom:628.937100px;}
.ya5{bottom:629.787450px;}
.y43{bottom:634.444800px;}
.y1c1{bottom:638.615100px;}
.yfe{bottom:638.833500px;}
.y191{bottom:641.027100px;}
.y16{bottom:645.683400px;}
.y124{bottom:645.905100px;}
.y1eb{bottom:646.667850px;}
.ya4{bottom:647.337450px;}
.y42{bottom:648.844800px;}
.y18e{bottom:649.127100px;}
.y159{bottom:650.118900px;}
.y71{bottom:652.174050px;}
.yd7{bottom:654.991050px;}
.y1c0{bottom:656.615100px;}
.y190{bottom:657.227250px;}
.y41{bottom:663.244800px;}
.y15{bottom:663.683400px;}
.yfd{bottom:664.887450px;}
.y18d{bottom:665.327250px;}
.y1ea{bottom:666.467850px;}
.y158{bottom:668.118900px;}
.y70{bottom:669.724050px;}
.y123{bottom:672.408900px;}
.yd6{bottom:672.541050px;}
.ya3{bottom:673.391400px;}
.y18f{bottom:673.427100px;}
.y1bf{bottom:674.615100px;}
.y40{bottom:677.644800px;}
.y14{bottom:681.683400px;}
.yfc{bottom:682.437450px;}
.y157{bottom:686.118900px;}
.y1e9{bottom:686.267850px;}
.y6f{bottom:687.274050px;}
.yd5{bottom:690.091050px;}
.y122{bottom:690.408900px;}
.ya2{bottom:690.941400px;}
.y3f{bottom:692.044800px;}
.y1be{bottom:692.615100px;}
.y18b{bottom:695.255550px;}
.y13{bottom:699.683400px;}
.yfb{bottom:699.987450px;}
.y18a{bottom:703.355550px;}
.y156{bottom:704.118900px;}
.y3e{bottom:706.444800px;}
.y121{bottom:708.408900px;}
.ya1{bottom:708.491250px;}
.y1bd{bottom:710.615100px;}
.y18c{bottom:711.455550px;}
.y6e{bottom:713.328000px;}
.yd4{bottom:716.145000px;}
.y12{bottom:717.683400px;}
.y3d{bottom:720.844800px;}
.y155{bottom:722.118900px;}
.yfa{bottom:726.041400px;}
.y120{bottom:726.408900px;}
.y1bc{bottom:728.615100px;}
.y6d{bottom:730.878000px;}
.y188{bottom:733.284000px;}
.yd3{bottom:733.694850px;}
.ya0{bottom:734.545200px;}
.y3c{bottom:735.244800px;}
.y11{bottom:735.683400px;}
.y154{bottom:740.118900px;}
.y187{bottom:741.384000px;}
.yf9{bottom:743.591400px;}
.y11f{bottom:744.408900px;}
.y1bb{bottom:746.615100px;}
.y1e2{bottom:747.318900px;}
.y6c{bottom:748.428000px;}
.y189{bottom:749.483850px;}
.y3b{bottom:749.644800px;}
.y1e3{bottom:750.626550px;}
.yd2{bottom:751.245000px;}
.y9f{bottom:752.095350px;}
.y10{bottom:753.683400px;}
.y153{bottom:758.118900px;}
.yf8{bottom:761.141400px;}
.y1e1{bottom:763.518900px;}
.y3a{bottom:764.044800px;}
.y1ba{bottom:764.615100px;}
.y2{bottom:769.573800px;}
.y9e{bottom:769.645350px;}
.y185{bottom:771.312300px;}
.yf{bottom:771.683400px;}
.y6b{bottom:774.481950px;}
.y152{bottom:776.118900px;}
.yd1{bottom:777.298800px;}
.y39{bottom:778.444800px;}
.y184{bottom:779.412300px;}
.y1e0{bottom:779.718900px;}
.y1b9{bottom:782.614950px;}
.yf7{bottom:787.195350px;}
.y186{bottom:787.512300px;}
.ye{bottom:789.683400px;}
.y6a{bottom:792.031950px;}
.y38{bottom:792.844800px;}
.y151{bottom:794.118900px;}
.yd0{bottom:794.848800px;}
.y9d{bottom:795.699150px;}
.y1df{bottom:795.918900px;}
.y1b8{bottom:800.614950px;}
.yf6{bottom:804.745200px;}
.y37{bottom:807.244800px;}
.y4{bottom:807.481350px;}
.yd{bottom:807.683400px;}
.y183{bottom:809.340600px;}
.y69{bottom:809.581950px;}
.y150{bottom:812.118900px;}
.ycf{bottom:812.398800px;}
.y9c{bottom:813.249150px;}
.y1b7{bottom:818.614950px;}
.y36{bottom:821.644800px;}
.y11e{bottom:822.037350px;}
.y1e6{bottom:824.305800px;}
.yc{bottom:825.683400px;}
.y1de{bottom:828.318900px;}
.y14f{bottom:830.118900px;}
.y9b{bottom:830.799150px;}
.y182{bottom:831.919050px;}
.y68{bottom:835.635900px;}
.y35{bottom:836.044800px;}
.y1b6{bottom:836.614950px;}
.yce{bottom:838.452750px;}
.y11d{bottom:841.837350px;}
.yb{bottom:843.683400px;}
.y1dd{bottom:844.518900px;}
.y14e{bottom:848.118900px;}
.yf5{bottom:848.349300px;}
.y34{bottom:850.444800px;}
.y67{bottom:853.185900px;}
.y1e5{bottom:854.409750px;}
.y1b5{bottom:854.614950px;}
.ycd{bottom:856.002750px;}
.y9a{bottom:856.853100px;}
.y1dc{bottom:860.718900px;}
.y11c{bottom:861.637350px;}
.y33{bottom:864.844800px;}
.yf4{bottom:865.899150px;}
.y14d{bottom:866.118900px;}
.y181{bottom:866.119050px;}
.ya{bottom:870.187350px;}
.y66{bottom:870.735900px;}
.y1b4{bottom:872.614950px;}
.ycc{bottom:873.552750px;}
.y99{bottom:874.403100px;}
.y1db{bottom:876.918900px;}
.y32{bottom:879.244800px;}
.y11b{bottom:881.437350px;}
.y14c{bottom:884.118900px;}
.y180{bottom:884.119050px;}
.y1e4{bottom:884.513700px;}
.y9{bottom:888.187350px;}
.y1b3{bottom:890.614950px;}
.y98{bottom:891.953100px;}
.y1da{bottom:893.118900px;}
.y31{bottom:893.644800px;}
.y65{bottom:896.789850px;}
.ycb{bottom:899.606700px;}
.y14b{bottom:902.118900px;}
.y17f{bottom:902.119050px;}
.y30{bottom:908.044800px;}
.y1b2{bottom:908.614950px;}
.y1d9{bottom:909.318900px;}
.yf3{bottom:909.503100px;}
.y64{bottom:914.339850px;}
.y8{bottom:914.691300px;}
.yca{bottom:917.156850px;}
.y97{bottom:918.007200px;}
.y14a{bottom:920.118900px;}
.y17e{bottom:920.119050px;}
.y2f{bottom:922.444800px;}
.y1d8{bottom:925.518900px;}
.y1b1{bottom:926.614950px;}
.yf2{bottom:927.053100px;}
.y63{bottom:931.889850px;}
.y7{bottom:932.691300px;}
.yc9{bottom:934.706700px;}
.y96{bottom:935.557050px;}
.y11a{bottom:937.237350px;}
.y149{bottom:938.118900px;}
.y17d{bottom:938.119050px;}
.y1d7{bottom:941.718900px;}
.y1b0{bottom:944.614950px;}
.y1{bottom:946.740300px;}
.y95{bottom:953.107050px;}
.y148{bottom:956.118900px;}
.y17c{bottom:956.119050px;}
.y119{bottom:957.037350px;}
.y1d6{bottom:957.919050px;}
.y62{bottom:957.943800px;}
.yc8{bottom:960.760650px;}
.y1af{bottom:962.614950px;}
.yf1{bottom:970.657050px;}
.y147{bottom:974.118900px;}
.y17b{bottom:974.119050px;}
.y61{bottom:975.493800px;}
.y118{bottom:976.837350px;}
.yc7{bottom:978.310800px;}
.y94{bottom:979.161000px;}
.y1ae{bottom:980.614950px;}
.y114{bottom:988.207050px;}
.y146{bottom:992.118900px;}
.y17a{bottom:992.119050px;}
.yc6{bottom:995.860650px;}
.y93{bottom:996.711000px;}
.y1ad{bottom:998.614950px;}
.y60{bottom:1001.547750px;}
.y145{bottom:1010.118900px;}
.y179{bottom:1010.119050px;}
.yc5{bottom:1013.410650px;}
.y92{bottom:1014.261000px;}
.y1ac{bottom:1016.614950px;}
.y5f{bottom:1019.097600px;}
.y144{bottom:1028.118900px;}
.y178{bottom:1028.119050px;}
.yc4{bottom:1030.960650px;}
.yf0{bottom:1031.811000px;}
.y1ab{bottom:1034.614950px;}
.y5e{bottom:1036.647600px;}
.y91{bottom:1040.314950px;}
.y143{bottom:1046.118900px;}
.y177{bottom:1046.119050px;}
.y113{bottom:1049.361000px;}
.y117{bottom:1050.637350px;}
.y1aa{bottom:1052.614950px;}
.y5d{bottom:1054.197750px;}
.yc3{bottom:1057.014600px;}
.y90{bottom:1057.864950px;}
.y142{bottom:1064.118900px;}
.y176{bottom:1064.119050px;}
.yc2{bottom:1074.564600px;}
.y8f{bottom:1075.414950px;}
.y1a9{bottom:1079.119050px;}
.y141{bottom:1082.118900px;}
.y175{bottom:1082.119050px;}
.yc1{bottom:1092.114600px;}
.y8e{bottom:1092.964950px;}
.y116{bottom:1093.837350px;}
.y140{bottom:1100.118900px;}
.y174{bottom:1100.119050px;}
.y13f{bottom:1118.118900px;}
.y173{bottom:1118.119050px;}
.yc0{bottom:1118.168550px;}
.y8d{bottom:1119.018900px;}
.ybf{bottom:1135.718550px;}
.y13e{bottom:1136.118900px;}
.y6{bottom:1136.119050px;}
.y8c{bottom:1136.568900px;}
.y115{bottom:1137.037350px;}
.ybe{bottom:1153.268550px;}
.y8b{bottom:1154.118900px;}
.y5{bottom:1154.119050px;}
.y5a{bottom:1188.116700px;}
.h13{height:34.945312px;}
.hc{height:34.968750px;}
.h12{height:35.156250px;}
.h14{height:38.988000px;}
.h8{height:39.313477px;}
.h7{height:39.339844px;}
.h9{height:39.550781px;}
.h18{height:42.070312px;}
.hb{height:42.539062px;}
.h10{height:43.320000px;}
.h6{height:43.681641px;}
.he{height:43.710938px;}
.h1e{height:43.945312px;}
.ha{height:47.856445px;}
.h20{height:48.082031px;}
.h16{height:48.339844px;}
.h17{height:50.484375px;}
.hf{height:52.560000px;}
.hd{height:53.173828px;}
.h1f{height:58.491211px;}
.h1d{height:63.808594px;}
.h1b{height:71.739244px;}
.h19{height:71.739844px;}
.h1a{height:80.256445px;}
.h4{height:81.826172px;}
.h1c{height:85.148438px;}
.h3{height:95.829237px;}
.h15{height:100.968750px;}
.h11{height:126.210938px;}
.h5{height:196.771289px;}
.h2{height:263.671875px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:31.351200px;}
.x2{left:55.783650px;}
.x13{left:64.449150px;}
.x8{left:68.031450px;}
.x24{left:74.031450px;}
.x11{left:81.637800px;}
.x7{left:97.795350px;}
.x25{left:101.877300px;}
.x12{left:109.077150px;}
.x18{left:110.551200px;}
.x2e{left:113.191050px;}
.x26{left:120.629550px;}
.x30{left:123.120750px;}
.x9{left:127.559100px;}
.x2f{left:132.240900px;}
.x14{left:140.314950px;}
.x29{left:163.136550px;}
.x2b{left:208.346400px;}
.x35{left:216.316050px;}
.x33{left:227.937750px;}
.x1a{left:230.016600px;}
.x34{left:242.157600px;}
.x1b{left:244.325100px;}
.x32{left:270.110250px;}
.x2c{left:319.105950px;}
.x36{left:345.754050px;}
.x31{left:369.641850px;}
.x2d{left:379.223100px;}
.x2a{left:386.449200px;}
.x21{left:396.249900px;}
.x1c{left:403.495050px;}
.xd{left:429.572400px;}
.xf{left:431.700150px;}
.xe{left:440.870100px;}
.xa{left:444.330750px;}
.x27{left:449.015100px;}
.x23{left:457.471650px;}
.x15{left:472.580700px;}
.x10{left:485.046000px;}
.xb{left:503.858250px;}
.x1f{left:526.414500px;}
.xc{left:535.030200px;}
.x1d{left:544.250400px;}
.x1e{left:547.493550px;}
.x22{left:625.020450px;}
.x28{left:633.999000px;}
.x5{left:647.269500px;}
.x3{left:653.932500px;}
.x1{left:679.618950px;}
.x20{left:712.596150px;}
.x6{left:718.153350px;}
.x19{left:769.436400px;}
.x16{left:776.636400px;}
.x17{left:855.632400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.800000pt;}
.ls9{letter-spacing:-3.946667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001067pt;}
.ls4{letter-spacing:0.001600pt;}
.ls3{letter-spacing:0.002667pt;}
.ls7{letter-spacing:0.003200pt;}
.ls6{letter-spacing:1.866667pt;}
.ls2{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.lsa{letter-spacing:12.800000pt;}
.ls5{letter-spacing:24.000000pt;}
.ws0{word-spacing:-88.960000pt;}
.ws2{word-spacing:-66.388476pt;}
.ws1{word-spacing:-32.505094pt;}
.ws6{word-spacing:-24.000000pt;}
.ws4{word-spacing:-22.944000pt;}
.ws25{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.693333pt;}
.ws9{word-spacing:-14.826667pt;}
.wsc{word-spacing:-13.344000pt;}
.wsd{word-spacing:-12.800000pt;}
.ws8{word-spacing:-10.880000pt;}
.wse{word-spacing:-5.653333pt;}
.wsf{word-spacing:-4.000000pt;}
.ws7{word-spacing:-1.866667pt;}
.wsb{word-spacing:-1.578667pt;}
.ws20{word-spacing:-1.440000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.106667pt;}
.ws17{word-spacing:0.640000pt;}
.wsa{word-spacing:3.946667pt;}
.ws24{word-spacing:5.013333pt;}
.ws13{word-spacing:5.920000pt;}
.ws16{word-spacing:7.146667pt;}
.ws10{word-spacing:7.626667pt;}
.ws12{word-spacing:10.080000pt;}
.ws1d{word-spacing:11.040000pt;}
.ws21{word-spacing:11.893333pt;}
.ws11{word-spacing:12.640000pt;}
.ws1f{word-spacing:13.973333pt;}
.ws14{word-spacing:14.133333pt;}
.ws15{word-spacing:14.826667pt;}
.ws23{word-spacing:16.960000pt;}
.ws1a{word-spacing:18.453333pt;}
.ws1e{word-spacing:18.560000pt;}
.ws22{word-spacing:19.946667pt;}
.ws1c{word-spacing:22.346667pt;}
.ws19{word-spacing:171.454400pt;}
.ws18{word-spacing:360.284800pt;}
._17{margin-left:-2592.872000pt;}
._3b{margin-left:-782.528000pt;}
._0{margin-left:-712.640000pt;}
._37{margin-left:-576.128000pt;}
._4{margin-left:-531.107806pt;}
._3c{margin-left:-483.739733pt;}
._38{margin-left:-448.160533pt;}
._3a{margin-left:-415.372267pt;}
._1{margin-left:-357.439114pt;}
._39{margin-left:-320.000000pt;}
._13{margin-left:-14.629867pt;}
._14{margin-left:-13.645333pt;}
._7{margin-left:-11.818667pt;}
._16{margin-left:-10.899733pt;}
._8{margin-left:-9.600000pt;}
._e{margin-left:-7.825600pt;}
._11{margin-left:-6.848000pt;}
._6{margin-left:-5.379733pt;}
._a{margin-left:-4.306667pt;}
._5{margin-left:-2.901333pt;}
._2{margin-left:-1.935467pt;}
._3{margin-left:-0.942400pt;}
._10{width:0.975467pt;}
._f{width:1.904000pt;}
._1c{width:3.193067pt;}
._18{width:4.326400pt;}
._1a{width:6.076800pt;}
._1b{width:7.180800pt;}
._15{width:8.361067pt;}
._12{width:9.344000pt;}
._19{width:10.277867pt;}
._1e{width:11.796267pt;}
._21{width:13.189333pt;}
._23{width:16.058667pt;}
._22{width:16.949333pt;}
._20{width:18.530667pt;}
._1f{width:19.449600pt;}
._24{width:20.905067pt;}
._9{width:22.224000pt;}
._d{width:24.000000pt;}
._34{width:25.210667pt;}
._35{width:26.234667pt;}
._1d{width:27.537067pt;}
._27{width:29.072000pt;}
._33{width:31.184000pt;}
._25{width:32.953067pt;}
._26{width:34.081600pt;}
._36{width:52.450667pt;}
._2d{width:91.067200pt;}
._c{width:93.654400pt;}
._2c{width:177.576533pt;}
._30{width:184.798400pt;}
._29{width:201.667733pt;}
._2b{width:261.851200pt;}
._2a{width:313.406933pt;}
._28{width:321.230400pt;}
._31{width:322.252800pt;}
._32{width:458.332800pt;}
._2e{width:623.731733pt;}
._2f{width:653.068800pt;}
._b{width:910.791467pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:101.333333pt;}
.fsb{font-size:112.000000pt;}
.fs1{font-size:116.924800pt;}
.fs9{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fs3{font-size:238.807467pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:69.850267pt;}
.y112{bottom:101.779600pt;}
.y3{bottom:114.553600pt;}
.ybd{bottom:117.379600pt;}
.y5c{bottom:117.716667pt;}
.y8a{bottom:121.678800pt;}
.y1a8{bottom:124.890267pt;}
.y172{bottom:125.432000pt;}
.y1d5{bottom:125.432133pt;}
.y59{bottom:125.692133pt;}
.y13d{bottom:125.988000pt;}
.ybc{bottom:132.979467pt;}
.y89{bottom:137.278800pt;}
.y1a7{bottom:140.890267pt;}
.y171{bottom:141.432000pt;}
.y1d4{bottom:141.432133pt;}
.y58{bottom:141.692133pt;}
.y13c{bottom:141.988000pt;}
.yef{bottom:147.341733pt;}
.ybb{bottom:156.138533pt;}
.y1a6{bottom:156.890267pt;}
.y1d3{bottom:157.432133pt;}
.y57{bottom:157.692133pt;}
.y13b{bottom:157.988000pt;}
.y88{bottom:160.437867pt;}
.yee{bottom:162.941867pt;}
.y170{bottom:164.991067pt;}
.yba{bottom:171.738667pt;}
.y1a5{bottom:172.890267pt;}
.y1d2{bottom:173.432133pt;}
.y56{bottom:173.692133pt;}
.y13a{bottom:173.988000pt;}
.y87{bottom:176.037867pt;}
.yed{bottom:178.541733pt;}
.y111{bottom:187.338533pt;}
.y1a4{bottom:188.890267pt;}
.y1d1{bottom:189.432133pt;}
.y55{bottom:189.692133pt;}
.y2e{bottom:189.940800pt;}
.y139{bottom:189.988000pt;}
.y86{bottom:191.637867pt;}
.yb9{bottom:194.897600pt;}
.y16f{bottom:199.657733pt;}
.yec{bottom:201.700800pt;}
.y1a3{bottom:204.890267pt;}
.y1d0{bottom:205.432133pt;}
.y54{bottom:205.692133pt;}
.y2d{bottom:205.940800pt;}
.y138{bottom:205.988000pt;}
.yb8{bottom:210.497600pt;}
.y85{bottom:214.796933pt;}
.y16e{bottom:215.657733pt;}
.yeb{bottom:217.300800pt;}
.y53{bottom:221.692133pt;}
.y2c{bottom:221.940800pt;}
.y137{bottom:221.988000pt;}
.y110{bottom:226.097600pt;}
.y1cf{bottom:228.991067pt;}
.y84{bottom:230.396933pt;}
.y16d{bottom:231.657733pt;}
.yea{bottom:232.900800pt;}
.yb7{bottom:233.656667pt;}
.y52{bottom:237.692133pt;}
.y2b{bottom:237.940800pt;}
.y136{bottom:237.988000pt;}
.y1a2{bottom:239.194000pt;}
.y10f{bottom:241.697733pt;}
.y83{bottom:245.996933pt;}
.y16c{bottom:247.657733pt;}
.yb6{bottom:249.256667pt;}
.y51{bottom:253.692133pt;}
.y2a{bottom:253.940800pt;}
.y135{bottom:253.988000pt;}
.ye9{bottom:256.059867pt;}
.y1a1{bottom:261.871200pt;}
.y16b{bottom:263.657733pt;}
.yb5{bottom:264.856667pt;}
.y82{bottom:269.156000pt;}
.y1e8{bottom:269.195867pt;}
.y50{bottom:269.692133pt;}
.y29{bottom:269.940800pt;}
.ye8{bottom:271.659867pt;}
.y134{bottom:277.547067pt;}
.y16a{bottom:279.657733pt;}
.y10e{bottom:280.456667pt;}
.y1a0{bottom:282.911200pt;}
.y81{bottom:284.756000pt;}
.y1e7{bottom:285.195867pt;}
.y4f{bottom:285.692133pt;}
.y28{bottom:285.940800pt;}
.ye7{bottom:287.259867pt;}
.yb4{bottom:288.015733pt;}
.y19f{bottom:290.111200pt;}
.y169{bottom:295.657733pt;}
.y10d{bottom:296.056667pt;}
.y80{bottom:300.356000pt;}
.y27{bottom:301.940800pt;}
.yb3{bottom:303.615733pt;}
.ye6{bottom:310.418933pt;}
.y168{bottom:311.657733pt;}
.y133{bottom:312.213733pt;}
.y1f1{bottom:315.772667pt;}
.y26{bottom:317.940800pt;}
.y19e{bottom:318.351333pt;}
.y10c{bottom:319.215733pt;}
.y7f{bottom:323.515067pt;}
.ye5{bottom:326.018933pt;}
.yb2{bottom:326.774800pt;}
.y167{bottom:327.657733pt;}
.y132{bottom:328.213733pt;}
.y1f0{bottom:333.372667pt;}
.y25{bottom:333.940800pt;}
.y10b{bottom:334.815733pt;}
.y7e{bottom:339.114933pt;}
.y19d{bottom:341.028533pt;}
.ye4{bottom:341.618933pt;}
.yb1{bottom:342.374800pt;}
.y166{bottom:343.657733pt;}
.y24{bottom:349.940800pt;}
.y10a{bottom:350.415733pt;}
.y1ef{bottom:350.972667pt;}
.y131{bottom:351.772800pt;}
.y7d{bottom:354.715067pt;}
.y4e{bottom:357.490267pt;}
.yb0{bottom:357.974800pt;}
.y165{bottom:359.657733pt;}
.y1ce{bottom:359.657867pt;}
.y19c{bottom:362.735200pt;}
.ye3{bottom:364.778000pt;}
.y23{bottom:365.940800pt;}
.y109{bottom:366.015733pt;}
.y130{bottom:367.772800pt;}
.y1ee{bottom:368.572667pt;}
.y4d{bottom:373.490267pt;}
.y164{bottom:375.657733pt;}
.y1cd{bottom:375.657867pt;}
.y7c{bottom:377.874000pt;}
.ye2{bottom:380.378000pt;}
.yaf{bottom:381.133867pt;}
.y22{bottom:381.940800pt;}
.y12f{bottom:383.772800pt;}
.y1ed{bottom:386.172667pt;}
.y108{bottom:389.174800pt;}
.y4c{bottom:389.490267pt;}
.y163{bottom:391.657733pt;}
.y1cc{bottom:391.657867pt;}
.y19b{bottom:393.135200pt;}
.y7b{bottom:393.474133pt;}
.ye1{bottom:395.978000pt;}
.yae{bottom:396.733867pt;}
.y21{bottom:397.940800pt;}
.y12e{bottom:399.772800pt;}
.y107{bottom:404.774800pt;}
.y4b{bottom:405.490267pt;}
.y162{bottom:407.657733pt;}
.y1cb{bottom:407.657867pt;}
.y19a{bottom:409.135200pt;}
.yad{bottom:412.333867pt;}
.y20{bottom:413.940800pt;}
.y12d{bottom:415.772800pt;}
.y7a{bottom:416.633200pt;}
.ye0{bottom:419.137067pt;}
.y106{bottom:420.374800pt;}
.y4a{bottom:421.490267pt;}
.y161{bottom:423.657733pt;}
.y1ca{bottom:423.657867pt;}
.y199{bottom:425.135200pt;}
.y1f{bottom:429.940800pt;}
.y12c{bottom:431.772800pt;}
.y79{bottom:432.233067pt;}
.ydf{bottom:434.737067pt;}
.yac{bottom:435.492933pt;}
.y49{bottom:437.490267pt;}
.y160{bottom:439.657733pt;}
.y1c9{bottom:439.657867pt;}
.y198{bottom:441.135200pt;}
.y105{bottom:443.533867pt;}
.y1e{bottom:445.940800pt;}
.y78{bottom:447.833067pt;}
.yab{bottom:451.092933pt;}
.y12b{bottom:451.175733pt;}
.y15f{bottom:455.657733pt;}
.y1c8{bottom:455.657867pt;}
.y197{bottom:457.135200pt;}
.yde{bottom:457.896133pt;}
.y104{bottom:459.133867pt;}
.y1d{bottom:461.940800pt;}
.yaa{bottom:466.692933pt;}
.y77{bottom:470.992133pt;}
.y15e{bottom:471.657733pt;}
.y1c7{bottom:471.657867pt;}
.y196{bottom:473.135200pt;}
.ydd{bottom:473.496133pt;}
.y12a{bottom:474.734800pt;}
.y1c{bottom:477.940800pt;}
.y103{bottom:482.292933pt;}
.y76{bottom:486.592133pt;}
.y15d{bottom:487.657733pt;}
.y1c6{bottom:487.657867pt;}
.ydc{bottom:489.096133pt;}
.y195{bottom:489.135200pt;}
.ya9{bottom:489.852000pt;}
.y129{bottom:490.734800pt;}
.y1b{bottom:493.940800pt;}
.y102{bottom:497.892933pt;}
.y48{bottom:499.950933pt;}
.y75{bottom:502.192133pt;}
.y15c{bottom:503.657733pt;}
.y1c5{bottom:503.657867pt;}
.y194{bottom:505.135200pt;}
.ya8{bottom:505.452000pt;}
.y128{bottom:506.734800pt;}
.y1a{bottom:509.940800pt;}
.ydb{bottom:512.255200pt;}
.y47{bottom:512.750933pt;}
.y101{bottom:513.492933pt;}
.y15b{bottom:519.657733pt;}
.y1c4{bottom:519.657867pt;}
.ya7{bottom:521.052000pt;}
.y193{bottom:521.135200pt;}
.y127{bottom:522.734800pt;}
.y74{bottom:525.351200pt;}
.y46{bottom:525.550933pt;}
.y19{bottom:525.940800pt;}
.yda{bottom:527.855200pt;}
.y100{bottom:529.092933pt;}
.y1c3{bottom:535.657867pt;}
.y192{bottom:537.135200pt;}
.y45{bottom:538.350933pt;}
.y126{bottom:538.734800pt;}
.y73{bottom:540.951200pt;}
.y18{bottom:541.940800pt;}
.y15a{bottom:543.216800pt;}
.yd9{bottom:543.455200pt;}
.ya6{bottom:544.211067pt;}
.y44{bottom:551.150933pt;}
.y1c2{bottom:551.657867pt;}
.yff{bottom:552.252000pt;}
.y125{bottom:554.734800pt;}
.y72{bottom:556.551200pt;}
.y1ec{bottom:557.215867pt;}
.y17{bottom:557.940800pt;}
.yd8{bottom:559.055200pt;}
.ya5{bottom:559.811067pt;}
.y43{bottom:563.950933pt;}
.y1c1{bottom:567.657867pt;}
.yfe{bottom:567.852000pt;}
.y191{bottom:569.801867pt;}
.y16{bottom:573.940800pt;}
.y124{bottom:574.137867pt;}
.y1eb{bottom:574.815867pt;}
.ya4{bottom:575.411067pt;}
.y42{bottom:576.750933pt;}
.y18e{bottom:577.001867pt;}
.y159{bottom:577.883467pt;}
.y71{bottom:579.710267pt;}
.yd7{bottom:582.214267pt;}
.y1c0{bottom:583.657867pt;}
.y190{bottom:584.202000pt;}
.y41{bottom:589.550933pt;}
.y15{bottom:589.940800pt;}
.yfd{bottom:591.011067pt;}
.y18d{bottom:591.402000pt;}
.y1ea{bottom:592.415867pt;}
.y158{bottom:593.883467pt;}
.y70{bottom:595.310267pt;}
.y123{bottom:597.696800pt;}
.yd6{bottom:597.814267pt;}
.ya3{bottom:598.570133pt;}
.y18f{bottom:598.601867pt;}
.y1bf{bottom:599.657867pt;}
.y40{bottom:602.350933pt;}
.y14{bottom:605.940800pt;}
.yfc{bottom:606.611067pt;}
.y157{bottom:609.883467pt;}
.y1e9{bottom:610.015867pt;}
.y6f{bottom:610.910267pt;}
.yd5{bottom:613.414267pt;}
.y122{bottom:613.696800pt;}
.ya2{bottom:614.170133pt;}
.y3f{bottom:615.150933pt;}
.y1be{bottom:615.657867pt;}
.y18b{bottom:618.004933pt;}
.y13{bottom:621.940800pt;}
.yfb{bottom:622.211067pt;}
.y18a{bottom:625.204933pt;}
.y156{bottom:625.883467pt;}
.y3e{bottom:627.950933pt;}
.y121{bottom:629.696800pt;}
.ya1{bottom:629.770000pt;}
.y1bd{bottom:631.657867pt;}
.y18c{bottom:632.404933pt;}
.y6e{bottom:634.069333pt;}
.yd4{bottom:636.573333pt;}
.y12{bottom:637.940800pt;}
.y3d{bottom:640.750933pt;}
.y155{bottom:641.883467pt;}
.yfa{bottom:645.370133pt;}
.y120{bottom:645.696800pt;}
.y1bc{bottom:647.657867pt;}
.y6d{bottom:649.669333pt;}
.y188{bottom:651.808000pt;}
.yd3{bottom:652.173200pt;}
.ya0{bottom:652.929067pt;}
.y3c{bottom:653.550933pt;}
.y11{bottom:653.940800pt;}
.y154{bottom:657.883467pt;}
.y187{bottom:659.008000pt;}
.yf9{bottom:660.970133pt;}
.y11f{bottom:661.696800pt;}
.y1bb{bottom:663.657867pt;}
.y1e2{bottom:664.283467pt;}
.y6c{bottom:665.269333pt;}
.y189{bottom:666.207867pt;}
.y3b{bottom:666.350933pt;}
.y1e3{bottom:667.223600pt;}
.yd2{bottom:667.773333pt;}
.y9f{bottom:668.529200pt;}
.y10{bottom:669.940800pt;}
.y153{bottom:673.883467pt;}
.yf8{bottom:676.570133pt;}
.y1e1{bottom:678.683467pt;}
.y3a{bottom:679.150933pt;}
.y1ba{bottom:679.657867pt;}
.y2{bottom:684.065600pt;}
.y9e{bottom:684.129200pt;}
.y185{bottom:685.610933pt;}
.yf{bottom:685.940800pt;}
.y6b{bottom:688.428400pt;}
.y152{bottom:689.883467pt;}
.yd1{bottom:690.932267pt;}
.y39{bottom:691.950933pt;}
.y184{bottom:692.810933pt;}
.y1e0{bottom:693.083467pt;}
.y1b9{bottom:695.657733pt;}
.yf7{bottom:699.729200pt;}
.y186{bottom:700.010933pt;}
.ye{bottom:701.940800pt;}
.y6a{bottom:704.028400pt;}
.y38{bottom:704.750933pt;}
.y151{bottom:705.883467pt;}
.yd0{bottom:706.532267pt;}
.y9d{bottom:707.288133pt;}
.y1df{bottom:707.483467pt;}
.y1b8{bottom:711.657733pt;}
.yf6{bottom:715.329067pt;}
.y37{bottom:717.550933pt;}
.y4{bottom:717.761200pt;}
.yd{bottom:717.940800pt;}
.y183{bottom:719.413867pt;}
.y69{bottom:719.628400pt;}
.y150{bottom:721.883467pt;}
.ycf{bottom:722.132267pt;}
.y9c{bottom:722.888133pt;}
.y1b7{bottom:727.657733pt;}
.y36{bottom:730.350933pt;}
.y11e{bottom:730.699867pt;}
.y1e6{bottom:732.716267pt;}
.yc{bottom:733.940800pt;}
.y1de{bottom:736.283467pt;}
.y14f{bottom:737.883467pt;}
.y9b{bottom:738.488133pt;}
.y182{bottom:739.483600pt;}
.y68{bottom:742.787467pt;}
.y35{bottom:743.150933pt;}
.y1b6{bottom:743.657733pt;}
.yce{bottom:745.291333pt;}
.y11d{bottom:748.299867pt;}
.yb{bottom:749.940800pt;}
.y1dd{bottom:750.683467pt;}
.y14e{bottom:753.883467pt;}
.yf5{bottom:754.088267pt;}
.y34{bottom:755.950933pt;}
.y67{bottom:758.387467pt;}
.y1e5{bottom:759.475333pt;}
.y1b5{bottom:759.657733pt;}
.ycd{bottom:760.891333pt;}
.y9a{bottom:761.647200pt;}
.y1dc{bottom:765.083467pt;}
.y11c{bottom:765.899867pt;}
.y33{bottom:768.750933pt;}
.yf4{bottom:769.688133pt;}
.y14d{bottom:769.883467pt;}
.y181{bottom:769.883600pt;}
.ya{bottom:773.499867pt;}
.y66{bottom:773.987467pt;}
.y1b4{bottom:775.657733pt;}
.ycc{bottom:776.491333pt;}
.y99{bottom:777.247200pt;}
.y1db{bottom:779.483467pt;}
.y32{bottom:781.550933pt;}
.y11b{bottom:783.499867pt;}
.y14c{bottom:785.883467pt;}
.y180{bottom:785.883600pt;}
.y1e4{bottom:786.234400pt;}
.y9{bottom:789.499867pt;}
.y1b3{bottom:791.657733pt;}
.y98{bottom:792.847200pt;}
.y1da{bottom:793.883467pt;}
.y31{bottom:794.350933pt;}
.y65{bottom:797.146533pt;}
.ycb{bottom:799.650400pt;}
.y14b{bottom:801.883467pt;}
.y17f{bottom:801.883600pt;}
.y30{bottom:807.150933pt;}
.y1b2{bottom:807.657733pt;}
.y1d9{bottom:808.283467pt;}
.yf3{bottom:808.447200pt;}
.y64{bottom:812.746533pt;}
.y8{bottom:813.058933pt;}
.yca{bottom:815.250533pt;}
.y97{bottom:816.006400pt;}
.y14a{bottom:817.883467pt;}
.y17e{bottom:817.883600pt;}
.y2f{bottom:819.950933pt;}
.y1d8{bottom:822.683467pt;}
.y1b1{bottom:823.657733pt;}
.yf2{bottom:824.047200pt;}
.y63{bottom:828.346533pt;}
.y7{bottom:829.058933pt;}
.yc9{bottom:830.850400pt;}
.y96{bottom:831.606267pt;}
.y11a{bottom:833.099867pt;}
.y149{bottom:833.883467pt;}
.y17d{bottom:833.883600pt;}
.y1d7{bottom:837.083467pt;}
.y1b0{bottom:839.657733pt;}
.y1{bottom:841.546933pt;}
.y95{bottom:847.206267pt;}
.y148{bottom:849.883467pt;}
.y17c{bottom:849.883600pt;}
.y119{bottom:850.699867pt;}
.y1d6{bottom:851.483600pt;}
.y62{bottom:851.505600pt;}
.yc8{bottom:854.009467pt;}
.y1af{bottom:855.657733pt;}
.yf1{bottom:862.806267pt;}
.y147{bottom:865.883467pt;}
.y17b{bottom:865.883600pt;}
.y61{bottom:867.105600pt;}
.y118{bottom:868.299867pt;}
.yc7{bottom:869.609600pt;}
.y94{bottom:870.365333pt;}
.y1ae{bottom:871.657733pt;}
.y114{bottom:878.406267pt;}
.y146{bottom:881.883467pt;}
.y17a{bottom:881.883600pt;}
.yc6{bottom:885.209467pt;}
.y93{bottom:885.965333pt;}
.y1ad{bottom:887.657733pt;}
.y60{bottom:890.264667pt;}
.y145{bottom:897.883467pt;}
.y179{bottom:897.883600pt;}
.yc5{bottom:900.809467pt;}
.y92{bottom:901.565333pt;}
.y1ac{bottom:903.657733pt;}
.y5f{bottom:905.864533pt;}
.y144{bottom:913.883467pt;}
.y178{bottom:913.883600pt;}
.yc4{bottom:916.409467pt;}
.yf0{bottom:917.165333pt;}
.y1ab{bottom:919.657733pt;}
.y5e{bottom:921.464533pt;}
.y91{bottom:924.724400pt;}
.y143{bottom:929.883467pt;}
.y177{bottom:929.883600pt;}
.y113{bottom:932.765333pt;}
.y117{bottom:933.899867pt;}
.y1aa{bottom:935.657733pt;}
.y5d{bottom:937.064667pt;}
.yc3{bottom:939.568533pt;}
.y90{bottom:940.324400pt;}
.y142{bottom:945.883467pt;}
.y176{bottom:945.883600pt;}
.yc2{bottom:955.168533pt;}
.y8f{bottom:955.924400pt;}
.y1a9{bottom:959.216933pt;}
.y141{bottom:961.883467pt;}
.y175{bottom:961.883600pt;}
.yc1{bottom:970.768533pt;}
.y8e{bottom:971.524400pt;}
.y116{bottom:972.299867pt;}
.y140{bottom:977.883467pt;}
.y174{bottom:977.883600pt;}
.y13f{bottom:993.883467pt;}
.y173{bottom:993.883600pt;}
.yc0{bottom:993.927600pt;}
.y8d{bottom:994.683467pt;}
.ybf{bottom:1009.527600pt;}
.y13e{bottom:1009.883467pt;}
.y6{bottom:1009.883600pt;}
.y8c{bottom:1010.283467pt;}
.y115{bottom:1010.699867pt;}
.ybe{bottom:1025.127600pt;}
.y8b{bottom:1025.883467pt;}
.y5{bottom:1025.883600pt;}
.y5a{bottom:1056.103733pt;}
.h13{height:31.062500pt;}
.hc{height:31.083333pt;}
.h12{height:31.250000pt;}
.h14{height:34.656000pt;}
.h8{height:34.945312pt;}
.h7{height:34.968750pt;}
.h9{height:35.156250pt;}
.h18{height:37.395833pt;}
.hb{height:37.812500pt;}
.h10{height:38.506667pt;}
.h6{height:38.828125pt;}
.he{height:38.854167pt;}
.h1e{height:39.062500pt;}
.ha{height:42.539062pt;}
.h20{height:42.739583pt;}
.h16{height:42.968750pt;}
.h17{height:44.875000pt;}
.hf{height:46.720000pt;}
.hd{height:47.265625pt;}
.h1f{height:51.992188pt;}
.h1d{height:56.718750pt;}
.h1b{height:63.768217pt;}
.h19{height:63.768750pt;}
.h1a{height:71.339062pt;}
.h4{height:72.734375pt;}
.h1c{height:75.687500pt;}
.h3{height:85.181544pt;}
.h15{height:89.750000pt;}
.h11{height:112.187500pt;}
.h5{height:174.907813pt;}
.h2{height:234.375000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:27.867733pt;}
.x2{left:49.585467pt;}
.x13{left:57.288133pt;}
.x8{left:60.472400pt;}
.x24{left:65.805733pt;}
.x11{left:72.566933pt;}
.x7{left:86.929200pt;}
.x25{left:90.557600pt;}
.x12{left:96.957467pt;}
.x18{left:98.267733pt;}
.x2e{left:100.614267pt;}
.x26{left:107.226267pt;}
.x30{left:109.440667pt;}
.x9{left:113.385867pt;}
.x2f{left:117.547467pt;}
.x14{left:124.724400pt;}
.x29{left:145.010267pt;}
.x2b{left:185.196800pt;}
.x35{left:192.280933pt;}
.x33{left:202.611333pt;}
.x1a{left:204.459200pt;}
.x34{left:215.251200pt;}
.x1b{left:217.177867pt;}
.x32{left:240.098000pt;}
.x2c{left:283.649733pt;}
.x36{left:307.336933pt;}
.x31{left:328.570533pt;}
.x2d{left:337.087200pt;}
.x2a{left:343.510400pt;}
.x21{left:352.222133pt;}
.x1c{left:358.662267pt;}
.xd{left:381.842133pt;}
.xf{left:383.733467pt;}
.xe{left:391.884533pt;}
.xa{left:394.960667pt;}
.x27{left:399.124533pt;}
.x23{left:406.641467pt;}
.x15{left:420.071733pt;}
.x10{left:431.152000pt;}
.xb{left:447.874000pt;}
.x1f{left:467.924000pt;}
.xc{left:475.582400pt;}
.x1d{left:483.778133pt;}
.x1e{left:486.660933pt;}
.x22{left:555.573733pt;}
.x28{left:563.554667pt;}
.x5{left:575.350667pt;}
.x3{left:581.273333pt;}
.x1{left:604.105733pt;}
.x20{left:633.418800pt;}
.x6{left:638.358533pt;}
.x19{left:683.943467pt;}
.x16{left:690.343467pt;}
.x17{left:760.562133pt;}
}




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