
    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_fa942215eaf2851bad14d161.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895000;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_c0d148d137a39272b9e0dddd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_b6564e2113efdbd0c1dc61de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_4b5da9b2d4d00fa4703f4389.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_1dc40aad8064580132605d08.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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_8e0b9c34f83363b97461cc56.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925000;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_266a8fbe4015f1df373cbee5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bd31153c591264838636bf2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;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_e2391ba43fc36489ea92fbdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.025879;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_8c46eb9c5a97ddce0221f731.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684082;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;}
.m7{transform:matrix(0.174969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174969,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.180587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180587,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.181419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181419,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.236374,0.000000,-0.080857,0.236563,0,0);-ms-transform:matrix(0.236374,0.000000,-0.080857,0.236563,0,0);-webkit-transform:matrix(0.236374,0.000000,-0.080857,0.236563,0,0);}
.m0{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-51.000000px;}
.v3{vertical-align:-48.000000px;}
.v5{vertical-align:-45.000000px;}
.v8{vertical-align:-42.000000px;}
.v2{vertical-align:-39.000000px;}
.v7{vertical-align:-36.000000px;}
.vd{vertical-align:-27.000000px;}
.vb{vertical-align:-12.000000px;}
.ve{vertical-align:-6.001200px;}
.v4{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.000000px;}
.v9{vertical-align:9.000000px;}
.v1{vertical-align:12.000000px;}
.va{vertical-align:51.000000px;}
.ls15{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012000px;}
.ls0{letter-spacing:0.024000px;}
.ls6{letter-spacing:0.024019px;}
.ls5{letter-spacing:0.441617px;}
.ls1d{letter-spacing:1.036800px;}
.ls1{letter-spacing:1.510020px;}
.lsd{letter-spacing:7.043937px;}
.ls10{letter-spacing:7.043944px;}
.ls2{letter-spacing:7.514016px;}
.ls3{letter-spacing:10.341600px;}
.ls29{letter-spacing:13.048750px;}
.lsc{letter-spacing:27.403260px;}
.ls20{letter-spacing:42.057600px;}
.ls13{letter-spacing:48.054000px;}
.ls23{letter-spacing:48.062400px;}
.ls7{letter-spacing:53.352000px;}
.ls17{letter-spacing:54.067200px;}
.ls12{letter-spacing:65.361600px;}
.ls2c{letter-spacing:88.108750px;}
.ls2b{letter-spacing:94.113552px;}
.ls1f{letter-spacing:99.165600px;}
.ls22{letter-spacing:105.170400px;}
.ls21{letter-spacing:108.172800px;}
.ls26{letter-spacing:113.460000px;}
.ls1c{letter-spacing:171.160800px;}
.lsa{letter-spacing:207.252000px;}
.ls24{letter-spacing:208.822800px;}
.lsf{letter-spacing:233.496000px;}
.ls16{letter-spacing:243.576000px;}
.ls1a{letter-spacing:254.512800px;}
.ls27{letter-spacing:255.585600px;}
.lse{letter-spacing:256.920000px;}
.ls1b{letter-spacing:299.548800px;}
.ls2a{letter-spacing:332.635183px;}
.ls14{letter-spacing:371.607000px;}
.ls28{letter-spacing:377.611800px;}
.ls18{letter-spacing:389.026200px;}
.lsb{letter-spacing:390.324379px;}
.ls19{letter-spacing:419.050200px;}
.ls11{letter-spacing:422.647800px;}
.ls1e{letter-spacing:443.664600px;}
.ls2d{letter-spacing:540.519000px;}
.ls9{letter-spacing:558.471000px;}
.ls8{letter-spacing:921.108000px;}
.ls25{letter-spacing:1020.186000px;}
.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;}
}
.ws9{word-spacing:-57.600000px;}
.ws1f{word-spacing:-46.620000px;}
.ws10{word-spacing:-37.296000px;}
.wsc{word-spacing:-15.852007px;}
.ws5{word-spacing:-15.012000px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.000000px;}
.ws0{word-spacing:-9.750000px;}
.ws17{word-spacing:-9.000000px;}
.wse{word-spacing:0.000000px;}
.ws16{word-spacing:22.744800px;}
.ws7{word-spacing:22.837575px;}
.ws14{word-spacing:25.747200px;}
.ws18{word-spacing:35.239575px;}
.ws1b{word-spacing:35.401950px;}
.ws12{word-spacing:36.054000px;}
.ws1d{word-spacing:39.555150px;}
.wsd{word-spacing:45.711000px;}
.wsb{word-spacing:48.063000px;}
.wsa{word-spacing:48.713400px;}
.ws15{word-spacing:67.399200px;}
.ws6{word-spacing:73.404000px;}
.ws1e{word-spacing:104.464800px;}
.ws4{word-spacing:126.494400px;}
.ws13{word-spacing:189.168600px;}
.wsf{word-spacing:242.515200px;}
.ws11{word-spacing:251.522400px;}
.ws3{word-spacing:365.674200px;}
.ws1c{word-spacing:521.798383px;}
.ws19{word-spacing:969.156000px;}
.ws1a{word-spacing:1005.906000px;}
._2c{margin-left:-569.302320px;}
._2d{margin-left:-533.732400px;}
._2f{margin-left:-531.380400px;}
._8b{margin-left:-486.007800px;}
._7a{margin-left:-474.611012px;}
._82{margin-left:-462.326323px;}
._86{margin-left:-452.806876px;}
._3d{margin-left:-447.544010px;}
._6b{margin-left:-435.262200px;}
._3f{margin-left:-431.215920px;}
._3a{margin-left:-417.309600px;}
._60{margin-left:-408.240000px;}
._40{margin-left:-404.562000px;}
._41{margin-left:-395.629200px;}
._3e{margin-left:-393.604068px;}
._61{margin-left:-380.547000px;}
._6c{margin-left:-377.545200px;}
._7c{margin-left:-373.483432px;}
._43{margin-left:-369.208800px;}
._3b{margin-left:-366.268800px;}
._42{margin-left:-362.604000px;}
._70{margin-left:-358.701753px;}
._62{margin-left:-338.586000px;}
._69{margin-left:-336.234000px;}
._63{margin-left:-333.218400px;}
._6d{margin-left:-330.216000px;}
._44{margin-left:-321.170400px;}
._58{margin-left:-312.254104px;}
._38{margin-left:-282.193800px;}
._59{margin-left:-266.686558px;}
._87{margin-left:-246.828000px;}
._7d{margin-left:-240.220047px;}
._7e{margin-left:-237.820800px;}
._52{margin-left:-226.584785px;}
._8c{margin-left:-219.146400px;}
._80{margin-left:-213.084000px;}
._64{margin-left:-205.636020px;}
._83{margin-left:-201.369600px;}
._66{margin-left:-198.134400px;}
._65{margin-left:-196.149120px;}
._68{margin-left:-195.132000px;}
._1b{margin-left:-192.463200px;}
._67{margin-left:-187.435200px;}
._51{margin-left:-185.336594px;}
._6e{margin-left:-183.119400px;}
._53{margin-left:-180.835200px;}
._50{margin-left:-178.764000px;}
._23{margin-left:-177.117600px;}
._5a{margin-left:-175.425600px;}
._5e{margin-left:-172.423200px;}
._4e{margin-left:-169.471906px;}
._4f{margin-left:-165.823200px;}
._5d{margin-left:-161.064823px;}
._16{margin-left:-158.745600px;}
._19{margin-left:-150.751200px;}
._47{margin-left:-144.806400px;}
._1e{margin-left:-140.731200px;}
._57{margin-left:-139.438800px;}
._4a{margin-left:-134.569590px;}
._71{margin-left:-133.423173px;}
._88{margin-left:-132.019200px;}
._6f{margin-left:-128.360400px;}
._55{margin-left:-126.783600px;}
._49{margin-left:-125.050777px;}
._2b{margin-left:-123.789600px;}
._29{margin-left:-122.716800px;}
._3c{margin-left:-117.558485px;}
._7b{margin-left:-116.475476px;}
._28{margin-left:-113.709600px;}
._27{margin-left:-109.416000px;}
._2a{margin-left:-107.704800px;}
._30{margin-left:-104.702400px;}
._31{margin-left:-103.411800px;}
._56{margin-left:-102.058800px;}
._39{margin-left:-100.409400px;}
._37{margin-left:-99.056400px;}
._45{margin-left:-97.363260px;}
._1a{margin-left:-95.695200px;}
._18{margin-left:-92.692800px;}
._73{margin-left:-86.397000px;}
._5b{margin-left:-84.855406px;}
._17{margin-left:-83.685660px;}
._1c{margin-left:-80.028000px;}
._34{margin-left:-78.038460px;}
._24{margin-left:-75.024000px;}
._5c{margin-left:-72.045660px;}
._54{margin-left:-69.746400px;}
._1d{margin-left:-66.040860px;}
._21{margin-left:-62.668800px;}
._4d{margin-left:-42.013500px;}
._4c{margin-left:-39.011280px;}
._7f{margin-left:-20.824800px;}
._b{margin-left:-4.738800px;}
._6{margin-left:-3.395880px;}
._1{margin-left:-2.241600px;}
._2{margin-left:-1.000800px;}
._0{width:1.156800px;}
._4{width:2.202960px;}
._5{width:3.485400px;}
._7{width:5.124840px;}
._a{width:6.816060px;}
._8{width:8.144400px;}
._d{width:9.333720px;}
._9{width:10.482960px;}
._20{width:11.886840px;}
._e{width:12.998280px;}
._8f{width:16.015260px;}
._12{width:17.483820px;}
._c{width:18.624000px;}
._8d{width:20.172000px;}
._11{width:21.489600px;}
._10{width:23.889900px;}
._f{width:25.007820px;}
._32{width:26.308980px;}
._14{width:27.349680px;}
._4b{width:29.951400px;}
._15{width:30.963060px;}
._36{width:32.920860px;}
._35{width:34.015140px;}
._33{width:36.948060px;}
._5f{width:39.273780px;}
._75{width:42.045660px;}
._13{width:45.867660px;}
._26{width:47.315325px;}
._8a{width:48.533355px;}
._1f{width:51.052800px;}
._72{width:57.057600px;}
._76{width:59.717325px;}
._8e{width:63.227880px;}
._74{width:93.086400px;}
._6a{width:129.127200px;}
._77{width:142.399125px;}
._48{width:156.124800px;}
._22{width:177.708180px;}
._89{width:294.247200px;}
._84{width:297.249600px;}
._78{width:320.164456px;}
._2e{width:417.981000px;}
._85{width:426.398470px;}
._81{width:434.048635px;}
._79{width:547.538161px;}
._25{width:642.621575px;}
._3{width:1012.422000px;}
._46{width:1390.098000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs2{font-size:39.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:63.408028px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:81.375000px;}
.fsa{font-size:81.750000px;}
.fs8{font-size:84.375000px;}
.fs6{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:3.000000px;}
.y79{bottom:3.750000px;}
.y37{bottom:5.250000px;}
.y48{bottom:123.750000px;}
.y154{bottom:124.500300px;}
.y157{bottom:125.250300px;}
.y151{bottom:129.000300px;}
.y156{bottom:134.250300px;}
.yfc{bottom:135.750000px;}
.y47{bottom:141.000000px;}
.y9f{bottom:141.000300px;}
.y153{bottom:142.500300px;}
.ya1{bottom:144.750000px;}
.y9d{bottom:147.000000px;}
.y152{bottom:150.750300px;}
.y155{bottom:152.250300px;}
.yfb{bottom:153.000000px;}
.ya0{bottom:153.750000px;}
.y9b{bottom:155.250000px;}
.y45{bottom:157.500000px;}
.y46{bottom:158.250000px;}
.y9c{bottom:159.000000px;}
.y44{bottom:161.250000px;}
.y99{bottom:165.750000px;}
.ya2{bottom:168.000000px;}
.y9e{bottom:168.750000px;}
.yfa{bottom:170.250000px;}
.y150{bottom:174.000000px;}
.y9a{bottom:175.500000px;}
.y43{bottom:180.750000px;}
.yf9{bottom:187.500000px;}
.y14f{bottom:191.250000px;}
.y92{bottom:193.500000px;}
.y97{bottom:197.250000px;}
.y42{bottom:198.000000px;}
.y94{bottom:199.500000px;}
.yf8{bottom:204.750000px;}
.y96{bottom:206.250000px;}
.y90{bottom:207.750000px;}
.y14e{bottom:208.500000px;}
.y93{bottom:211.500000px;}
.y3f{bottom:213.000000px;}
.y40{bottom:214.500000px;}
.y3e{bottom:218.250000px;}
.y98{bottom:220.500000px;}
.y95{bottom:221.250000px;}
.yf7{bottom:222.000000px;}
.y14c{bottom:223.500000px;}
.y41{bottom:225.000000px;}
.y14d{bottom:226.500000px;}
.y91{bottom:228.000000px;}
.y14b{bottom:228.750000px;}
.y3d{bottom:237.750000px;}
.yf6{bottom:239.250000px;}
.y14a{bottom:244.500000px;}
.y8f{bottom:246.000000px;}
.y149{bottom:248.250000px;}
.y3c{bottom:255.000000px;}
.yf5{bottom:256.500000px;}
.y8e{bottom:263.250000px;}
.y147{bottom:267.750000px;}
.y36{bottom:270.000000px;}
.y38{bottom:271.500000px;}
.yf4{bottom:273.750000px;}
.y39{bottom:275.250000px;}
.y145{bottom:277.500000px;}
.y8d{bottom:279.750000px;}
.y3a{bottom:282.000000px;}
.y8b{bottom:283.500000px;}
.y146{bottom:284.250000px;}
.y8c{bottom:290.250000px;}
.yf3{bottom:291.000000px;}
.y143{bottom:293.250000px;}
.y148{bottom:294.000000px;}
.y35{bottom:294.750000px;}
.y144{bottom:296.250000px;}
.y142{bottom:303.000000px;}
.y86{bottom:306.750000px;}
.yf2{bottom:308.250000px;}
.y88{bottom:310.500000px;}
.y34{bottom:312.000000px;}
.y8a{bottom:320.250000px;}
.y85{bottom:322.500000px;}
.yf1{bottom:325.500000px;}
.y13e{bottom:327.000000px;}
.y87{bottom:328.500000px;}
.y33{bottom:329.250000px;}
.y89{bottom:332.250000px;}
.y141{bottom:339.000000px;}
.yf0{bottom:342.750000px;}
.y13f{bottom:348.750000px;}
.y140{bottom:351.750000px;}
.y84{bottom:352.500000px;}
.y32{bottom:355.500000px;}
.yef{bottom:360.000000px;}
.y83{bottom:369.750000px;}
.y13d{bottom:372.000000px;}
.y31{bottom:372.750000px;}
.ye8{bottom:377.250000px;}
.yed{bottom:381.000000px;}
.yeb{bottom:383.250000px;}
.y13c{bottom:387.000000px;}
.y7b{bottom:388.500000px;}
.y30{bottom:390.000000px;}
.yea{bottom:391.500000px;}
.y81{bottom:392.250000px;}
.y7c{bottom:394.500000px;}
.ye6{bottom:395.250000px;}
.y80{bottom:401.250000px;}
.ye7{bottom:402.000000px;}
.y7d{bottom:402.750000px;}
.yee{bottom:404.250000px;}
.yec{bottom:405.000000px;}
.y7f{bottom:406.500000px;}
.ye9{bottom:411.750000px;}
.y7a{bottom:413.250000px;}
.y82{bottom:415.500000px;}
.y2f{bottom:416.250000px;}
.y7e{bottom:423.000000px;}
.y13b{bottom:425.250000px;}
.y13a{bottom:429.000000px;}
.ye1{bottom:429.750000px;}
.y2e{bottom:433.500000px;}
.ye2{bottom:435.750000px;}
.y71{bottom:441.000000px;}
.ye4{bottom:442.500000px;}
.ydf{bottom:444.000000px;}
.y78{bottom:444.750000px;}
.y72{bottom:447.000000px;}
.yde{bottom:447.750000px;}
.y134{bottom:450.000000px;}
.y2d{bottom:450.750000px;}
.y77{bottom:453.750000px;}
.y74{bottom:455.250000px;}
.ye5{bottom:456.750000px;}
.ye3{bottom:457.500000px;}
.y76{bottom:459.000000px;}
.y136{bottom:462.000000px;}
.ye0{bottom:464.250000px;}
.y70{bottom:465.750000px;}
.y2c{bottom:468.000000px;}
.y73{bottom:468.750000px;}
.y137{bottom:472.500000px;}
.y135{bottom:474.750000px;}
.y75{bottom:475.500000px;}
.y139{bottom:476.250000px;}
.y138{bottom:478.500000px;}
.ydd{bottom:482.250000px;}
.y2b{bottom:485.250000px;}
.y6f{bottom:493.500000px;}
.ydc{bottom:499.500000px;}
.y133{bottom:500.250000px;}
.y2a{bottom:502.500000px;}
.y6e{bottom:510.750000px;}
.ydb{bottom:516.750000px;}
.y132{bottom:517.500000px;}
.y29{bottom:519.750000px;}
.y6d{bottom:528.000000px;}
.yda{bottom:533.250000px;}
.y130{bottom:534.000000px;}
.y28{bottom:537.000000px;}
.y131{bottom:537.750000px;}
.y67{bottom:546.000000px;}
.y6a{bottom:549.750000px;}
.y27{bottom:554.250000px;}
.yd9{bottom:556.500000px;}
.y12f{bottom:557.250000px;}
.y6c{bottom:558.000000px;}
.y66{bottom:558.750000px;}
.y65{bottom:561.750000px;}
.y69{bottom:568.500000px;}
.y26{bottom:571.500000px;}
.y6b{bottom:572.250000px;}
.y68{bottom:573.000000px;}
.y12e{bottom:574.500000px;}
.yd7{bottom:576.750000px;}
.yd8{bottom:583.500000px;}
.y25{bottom:588.750000px;}
.y12d{bottom:591.750000px;}
.y64{bottom:594.750000px;}
.yd2{bottom:601.500000px;}
.yd3{bottom:605.250000px;}
.y24{bottom:606.000000px;}
.y12c{bottom:609.000000px;}
.y63{bottom:612.000000px;}
.yd6{bottom:614.250000px;}
.yd5{bottom:617.250000px;}
.y23{bottom:623.250000px;}
.yd1{bottom:624.000000px;}
.y12b{bottom:626.250000px;}
.yd4{bottom:627.750000px;}
.y62{bottom:628.500000px;}
.y61{bottom:632.250000px;}
.y22{bottom:640.500000px;}
.y12a{bottom:643.500000px;}
.y60{bottom:651.000000px;}
.y5f{bottom:654.750000px;}
.y21{bottom:657.750000px;}
.y129{bottom:660.750000px;}
.ycb{bottom:663.000000px;}
.ycf{bottom:663.750000px;}
.ycd{bottom:666.750000px;}
.y17f{bottom:672.000000px;}
.ycc{bottom:673.500000px;}
.y5e{bottom:674.250000px;}
.y20{bottom:675.000000px;}
.yce{bottom:677.250000px;}
.yd0{bottom:678.000000px;}
.y17e{bottom:689.250000px;}
.y1f{bottom:692.250000px;}
.y59{bottom:693.750000px;}
.y128{bottom:695.250000px;}
.y55{bottom:697.500000px;}
.yca{bottom:699.750000px;}
.y5a{bottom:705.750000px;}
.y17d{bottom:706.500000px;}
.y1e{bottom:709.500000px;}
.y127{bottom:712.500000px;}
.yc9{bottom:714.750000px;}
.y58{bottom:716.250000px;}
.y5c{bottom:718.500000px;}
.y57{bottom:719.250000px;}
.y56{bottom:720.000000px;}
.y5b{bottom:722.250000px;}
.y17c{bottom:723.750000px;}
.y5d{bottom:726.000000px;}
.y1d{bottom:726.750000px;}
.y126{bottom:729.750000px;}
.yc7{bottom:740.250000px;}
.y17b{bottom:741.000000px;}
.y54{bottom:742.500000px;}
.y1c{bottom:744.000000px;}
.y125{bottom:747.000000px;}
.yc5{bottom:752.250000px;}
.yc6{bottom:753.000000px;}
.yc3{bottom:756.000000px;}
.y1b{bottom:761.250000px;}
.yc4{bottom:762.750000px;}
.y4c{bottom:763.500000px;}
.y124{bottom:764.250000px;}
.yc8{bottom:766.500000px;}
.y50{bottom:767.250000px;}
.y4e{bottom:775.500000px;}
.y1a{bottom:778.500000px;}
.y4b{bottom:779.250000px;}
.y17a{bottom:780.000000px;}
.y123{bottom:781.500000px;}
.y4f{bottom:786.000000px;}
.y4d{bottom:788.250000px;}
.y53{bottom:789.000000px;}
.y52{bottom:789.750000px;}
.y51{bottom:792.000000px;}
.yc1{bottom:793.500000px;}
.y19{bottom:795.750000px;}
.y179{bottom:797.250000px;}
.y122{bottom:798.750000px;}
.ybf{bottom:801.750000px;}
.ybd{bottom:802.500000px;}
.ybc{bottom:805.500000px;}
.yc0{bottom:812.250000px;}
.y4a{bottom:813.750000px;}
.yc2{bottom:816.000000px;}
.ybe{bottom:816.750000px;}
.y178{bottom:819.000000px;}
.y18{bottom:830.250000px;}
.y49{bottom:831.000000px;}
.y121{bottom:833.250000px;}
.y177{bottom:836.250000px;}
.ybb{bottom:838.500000px;}
.y17{bottom:848.250000px;}
.y120{bottom:850.500000px;}
.y176{bottom:853.500000px;}
.yba{bottom:855.750000px;}
.y16{bottom:867.750000px;}
.y116{bottom:868.500000px;}
.y11c{bottom:870.750000px;}
.yb8{bottom:872.250000px;}
.y119{bottom:874.500000px;}
.y114{bottom:875.250000px;}
.yb7{bottom:876.000000px;}
.y11e{bottom:876.750000px;}
.yb9{bottom:882.750000px;}
.y15{bottom:883.500000px;}
.y11b{bottom:885.000000px;}
.y118{bottom:888.750000px;}
.y115{bottom:889.500000px;}
.y175{bottom:892.500000px;}
.y11f{bottom:895.500000px;}
.y11a{bottom:897.750000px;}
.y14{bottom:898.500000px;}
.yb6{bottom:900.000000px;}
.y16a{bottom:902.250000px;}
.y117{bottom:903.750000px;}
.y11d{bottom:906.750000px;}
.y174{bottom:909.750000px;}
.y13{bottom:914.250000px;}
.yb5{bottom:917.250000px;}
.y169{bottom:919.500000px;}
.y10a{bottom:927.000000px;}
.y111{bottom:929.250000px;}
.y12{bottom:930.000000px;}
.y173{bottom:931.500000px;}
.y10e{bottom:933.000000px;}
.yb4{bottom:933.750000px;}
.y113{bottom:935.250000px;}
.y168{bottom:936.750000px;}
.yb3{bottom:937.500000px;}
.y10d{bottom:942.000000px;}
.y110{bottom:943.500000px;}
.y11{bottom:945.000000px;}
.y10c{bottom:947.250000px;}
.y109{bottom:948.000000px;}
.y172{bottom:948.750000px;}
.y167{bottom:954.000000px;}
.y10f{bottom:956.250000px;}
.yb2{bottom:957.000000px;}
.y10{bottom:960.750000px;}
.y10b{bottom:962.250000px;}
.y112{bottom:965.250000px;}
.y171{bottom:966.000000px;}
.y166{bottom:971.250000px;}
.yb1{bottom:973.500000px;}
.yf{bottom:977.250000px;}
.y108{bottom:984.750000px;}
.ye{bottom:993.750000px;}
.yb0{bottom:996.750000px;}
.y163{bottom:1000.500000px;}
.y107{bottom:1002.000000px;}
.y170{bottom:1004.250000px;}
.yd{bottom:1010.250000px;}
.y161{bottom:1012.500000px;}
.yaf{bottom:1013.250000px;}
.yc{bottom:1017.000000px;}
.y162{bottom:1017.750000px;}
.y106{bottom:1018.500000px;}
.y164{bottom:1019.250000px;}
.y105{bottom:1022.250000px;}
.y165{bottom:1023.000000px;}
.yb{bottom:1030.500000px;}
.yab{bottom:1035.750000px;}
.yad{bottom:1039.500000px;}
.y16f{bottom:1040.250000px;}
.y103{bottom:1041.000000px;}
.y160{bottom:1042.500000px;}
.y104{bottom:1044.750000px;}
.ya{bottom:1047.000000px;}
.yaa{bottom:1047.750000px;}
.yae{bottom:1048.500000px;}
.ya8{bottom:1051.500000px;}
.y9{bottom:1053.750000px;}
.y16e{bottom:1057.500000px;}
.yac{bottom:1058.250000px;}
.y15f{bottom:1059.750000px;}
.ya9{bottom:1062.000000px;}
.y8{bottom:1064.250000px;}
.y16d{bottom:1074.750000px;}
.y15e{bottom:1077.000000px;}
.y102{bottom:1080.750000px;}
.y6{bottom:1081.500000px;}
.y101{bottom:1084.500000px;}
.y7{bottom:1088.250000px;}
.y16c{bottom:1092.000000px;}
.y15b{bottom:1095.000000px;}
.y5{bottom:1098.750000px;}
.y100{bottom:1103.250000px;}
.y15d{bottom:1104.000000px;}
.yff{bottom:1107.000000px;}
.y16b{bottom:1109.250000px;}
.y158{bottom:1110.750000px;}
.y15a{bottom:1112.250000px;}
.ya4{bottom:1115.250000px;}
.ya6{bottom:1119.000000px;}
.y4{bottom:1119.750000px;}
.y159{bottom:1120.500000px;}
.y15c{bottom:1122.000000px;}
.yfe{bottom:1126.500000px;}
.ya3{bottom:1131.000000px;}
.ya5{bottom:1137.000000px;}
.y3{bottom:1140.000000px;}
.ya7{bottom:1140.750000px;}
.yfd{bottom:1143.750000px;}
.y2{bottom:1174.500000px;}
.y1{bottom:1197.000000px;}
.h10{height:8.250000px;}
.h12{height:16.500000px;}
.h1f{height:17.250000px;}
.hb{height:20.250000px;}
.h1b{height:24.696000px;}
.h6{height:26.754000px;}
.h5{height:27.066000px;}
.h19{height:32.507812px;}
.hd{height:32.928000px;}
.he{height:33.024000px;}
.h15{height:36.144000px;}
.h7{height:37.044000px;}
.ha{height:37.152000px;}
.h9{height:37.476000px;}
.h1a{height:40.634766px;}
.h8{height:41.160000px;}
.h1{height:41.280000px;}
.h4{height:41.640000px;}
.h1c{height:41.928000px;}
.h11{height:43.359375px;}
.hf{height:45.180000px;}
.h17{height:47.746245px;}
.h1e{height:48.180000px;}
.h2{height:49.536000px;}
.h3{height:49.968000px;}
.h16{height:55.576172px;}
.h13{height:57.180000px;}
.hc{height:61.275375px;}
.h20{height:61.557750px;}
.h18{height:63.534375px;}
.h14{height:88.921875px;}
.h1d{height:96.180000px;}
.h0{height:1263.000000px;}
.wc{width:3.750000px;}
.w7{width:5.250000px;}
.w1{width:6.750000px;}
.w3{width:8.250000px;}
.w2{width:13.500000px;}
.w4{width:105.750000px;}
.wa{width:106.500000px;}
.wb{width:108.000000px;}
.w6{width:130.500000px;}
.w9{width:164.250000px;}
.w8{width:168.750000px;}
.w5{width:254.250000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.500000px;}
.x11{left:127.499987px;}
.x12{left:138.750534px;}
.x10{left:159.750000px;}
.xdb{left:161.250039px;}
.x92{left:162.750015px;}
.x84{left:164.250035px;}
.x22{left:168.000000px;}
.x1f{left:170.250000px;}
.xd6{left:171.750069px;}
.x86{left:173.249998px;}
.x21{left:175.500000px;}
.x85{left:176.999983px;}
.xd{left:180.000000px;}
.x1b{left:181.500000px;}
.x90{left:186.750000px;}
.xe{left:189.000000px;}
.x91{left:190.499998px;}
.x19{left:195.000000px;}
.x2{left:197.999979px;}
.x87{left:201.000000px;}
.xa4{left:203.250000px;}
.x88{left:204.750000px;}
.x8b{left:206.250000px;}
.x18{left:210.000000px;}
.x23{left:213.000000px;}
.x97{left:216.000000px;}
.x83{left:219.000000px;}
.x1e{left:221.250000px;}
.x89{left:222.750000px;}
.xa5{left:225.000000px;}
.x82{left:228.000000px;}
.x1d{left:229.500000px;}
.x13{left:233.250000px;}
.xa1{left:235.500024px;}
.x1c{left:237.000000px;}
.x8a{left:240.750000px;}
.xc{left:242.250147px;}
.xf{left:243.749638px;}
.x20{left:245.250000px;}
.x96{left:247.500000px;}
.x8f{left:249.000000px;}
.x24{left:252.000000px;}
.xa7{left:254.250059px;}
.x98{left:256.500000px;}
.x93{left:258.000000px;}
.x17{left:259.500000px;}
.xa{left:261.000000px;}
.xa2{left:263.250046px;}
.xd7{left:264.750000px;}
.xd8{left:267.000000px;}
.xa3{left:268.500000px;}
.xb{left:270.000000px;}
.xa9{left:271.500087px;}
.xa8{left:273.000086px;}
.xa0{left:279.000000px;}
.xd9{left:282.750000px;}
.x16{left:286.500000px;}
.xa6{left:292.500000px;}
.x15{left:294.750000px;}
.x14{left:302.250000px;}
.x9b{left:303.750006px;}
.x8e{left:306.750000px;}
.x1a{left:309.750000px;}
.xd5{left:312.750000px;}
.xda{left:315.750000px;}
.x8c{left:317.250000px;}
.x8d{left:319.500006px;}
.x9f{left:323.250000px;}
.x95{left:326.250000px;}
.x9d{left:327.750000px;}
.x9e{left:330.750000px;}
.x94{left:337.500000px;}
.x9a{left:340.500023px;}
.x3{left:348.749607px;}
.x5{left:354.750000px;}
.x9c{left:357.000000px;}
.x99{left:368.250000px;}
.x80{left:405.000000px;}
.x81{left:408.749998px;}
.x7e{left:411.750000px;}
.x7f{left:415.500005px;}
.x6{left:436.500000px;}
.x7{left:444.750000px;}
.x4{left:446.249526px;}
.x25{left:467.999892px;}
.x42{left:471.000038px;}
.x3e{left:472.500594px;}
.x39{left:477.000142px;}
.x44{left:479.250108px;}
.x3a{left:481.500139px;}
.x77{left:483.000019px;}
.xcc{left:486.000000px;}
.xc1{left:487.500000px;}
.x47{left:489.000009px;}
.xb8{left:492.000126px;}
.x55{left:495.000000px;}
.x3d{left:497.250579px;}
.x56{left:498.749998px;}
.xc9{left:501.000005px;}
.x45{left:502.500000px;}
.x46{left:503.999999px;}
.x54{left:506.250005px;}
.x31{left:509.999945px;}
.x41{left:511.500012px;}
.x30{left:514.499942px;}
.xb6{left:516.000111px;}
.x43{left:517.500049px;}
.xb7{left:519.750108px;}
.xc0{left:521.250053px;}
.x64{left:524.250061px;}
.x8{left:528.000000px;}
.x40{left:531.000000px;}
.xb2{left:532.500000px;}
.xc8{left:533.999983px;}
.x53{left:536.250000px;}
.x32{left:537.749967px;}
.x9{left:540.750000px;}
.x26{left:543.750000px;}
.x6d{left:545.250096px;}
.x38{left:549.000096px;}
.x63{left:552.000043px;}
.xba{left:554.250000px;}
.x4a{left:555.750045px;}
.xaa{left:557.250000px;}
.xcb{left:560.999997px;}
.x74{left:562.499930px;}
.x3c{left:564.000536px;}
.x7c{left:565.500000px;}
.xae{left:567.750000px;}
.x36{left:569.250083px;}
.xc4{left:571.499853px;}
.x37{left:573.000081px;}
.x66{left:574.500000px;}
.x2e{left:576.749900px;}
.xbf{left:579.000051px;}
.x2f{left:580.499905px;}
.xc7{left:582.749952px;}
.x78{left:586.500001px;}
.x5f{left:588.750000px;}
.x3b{left:591.000519px;}
.x7a{left:592.500022px;}
.xb5{left:594.000013px;}
.xd0{left:595.500075px;}
.x4e{left:598.500008px;}
.x62{left:600.750026px;}
.x3f{left:603.750000px;}
.x61{left:605.250024px;}
.x4f{left:607.500000px;}
.xca{left:609.000000px;}
.x4d{left:610.500000px;}
.xad{left:612.750000px;}
.x2a{left:615.749878px;}
.x49{left:618.000006px;}
.x29{left:620.249875px;}
.xbb{left:622.500000px;}
.x73{left:623.999970px;}
.xd4{left:625.500000px;}
.x4c{left:627.749946px;}
.x6c{left:629.250049px;}
.x79{left:631.500000px;}
.x65{left:635.250000px;}
.x2d{left:636.749866px;}
.x7b{left:638.250000px;}
.x2c{left:639.749865px;}
.xd2{left:643.500000px;}
.xc3{left:644.999886px;}
.x60{left:647.250000px;}
.x5e{left:648.750000px;}
.xd3{left:650.250000px;}
.x48{left:654.749997px;}
.xbe{left:657.000000px;}
.xbc{left:660.000000px;}
.xbd{left:663.000000px;}
.x4b{left:665.250000px;}
.x6b{left:667.499990px;}
.x2b{left:668.999811px;}
.xb4{left:671.250000px;}
.x50{left:675.750000px;}
.xb3{left:677.250000px;}
.x59{left:678.750000px;}
.xb9{left:680.250000px;}
.x5a{left:682.499998px;}
.x35{left:684.000009px;}
.x57{left:686.249950px;}
.x58{left:689.999956px;}
.x6f{left:694.500051px;}
.xd1{left:696.750000px;}
.x5d{left:698.250000px;}
.x69{left:700.499971px;}
.xcd{left:703.500071px;}
.xab{left:705.000000px;}
.x5c{left:708.000000px;}
.x72{left:710.999921px;}
.xb1{left:712.500000px;}
.x71{left:714.749927px;}
.xaf{left:716.250000px;}
.x5b{left:718.500000px;}
.x33{left:722.250000px;}
.xac{left:723.750000px;}
.xb0{left:728.250000px;}
.x34{left:729.749980px;}
.x27{left:732.000000px;}
.x75{left:735.000000px;}
.x28{left:739.499921px;}
.x70{left:743.249986px;}
.x6a{left:744.749909px;}
.xce{left:747.750000px;}
.xcf{left:750.000000px;}
.x52{left:757.500000px;}
.x7d{left:762.000000px;}
.x51{left:764.250000px;}
.xc5{left:765.750000px;}
.x76{left:770.250000px;}
.xc6{left:773.999980px;}
.xc2{left:776.250000px;}
.x68{left:783.000000px;}
.x6e{left:784.500000px;}
.x67{left:786.750000px;}
@media print{
.vc{vertical-align:-45.333333pt;}
.v3{vertical-align:-42.666667pt;}
.v5{vertical-align:-40.000000pt;}
.v8{vertical-align:-37.333333pt;}
.v2{vertical-align:-34.666667pt;}
.v7{vertical-align:-32.000000pt;}
.vd{vertical-align:-24.000000pt;}
.vb{vertical-align:-10.666667pt;}
.ve{vertical-align:-5.334400pt;}
.v4{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.666667pt;}
.v9{vertical-align:8.000000pt;}
.v1{vertical-align:10.666667pt;}
.va{vertical-align:45.333333pt;}
.ls15{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.010667pt;}
.ls0{letter-spacing:0.021333pt;}
.ls6{letter-spacing:0.021350pt;}
.ls5{letter-spacing:0.392549pt;}
.ls1d{letter-spacing:0.921600pt;}
.ls1{letter-spacing:1.342240pt;}
.lsd{letter-spacing:6.261277pt;}
.ls10{letter-spacing:6.261284pt;}
.ls2{letter-spacing:6.679126pt;}
.ls3{letter-spacing:9.192533pt;}
.ls29{letter-spacing:11.598889pt;}
.lsc{letter-spacing:24.358453pt;}
.ls20{letter-spacing:37.384533pt;}
.ls13{letter-spacing:42.714667pt;}
.ls23{letter-spacing:42.722133pt;}
.ls7{letter-spacing:47.424000pt;}
.ls17{letter-spacing:48.059733pt;}
.ls12{letter-spacing:58.099200pt;}
.ls2c{letter-spacing:78.318889pt;}
.ls2b{letter-spacing:83.656491pt;}
.ls1f{letter-spacing:88.147200pt;}
.ls22{letter-spacing:93.484800pt;}
.ls21{letter-spacing:96.153600pt;}
.ls26{letter-spacing:100.853333pt;}
.ls1c{letter-spacing:152.142933pt;}
.lsa{letter-spacing:184.224000pt;}
.ls24{letter-spacing:185.620267pt;}
.lsf{letter-spacing:207.552000pt;}
.ls16{letter-spacing:216.512000pt;}
.ls1a{letter-spacing:226.233600pt;}
.ls27{letter-spacing:227.187200pt;}
.lse{letter-spacing:228.373333pt;}
.ls1b{letter-spacing:266.265600pt;}
.ls2a{letter-spacing:295.675718pt;}
.ls14{letter-spacing:330.317333pt;}
.ls28{letter-spacing:335.654933pt;}
.ls18{letter-spacing:345.801067pt;}
.lsb{letter-spacing:346.955003pt;}
.ls19{letter-spacing:372.489067pt;}
.ls11{letter-spacing:375.686933pt;}
.ls1e{letter-spacing:394.368533pt;}
.ls2d{letter-spacing:480.461333pt;}
.ls9{letter-spacing:496.418667pt;}
.ls8{letter-spacing:818.762667pt;}
.ls25{letter-spacing:906.832000pt;}
.ws9{word-spacing:-51.200000pt;}
.ws1f{word-spacing:-41.440000pt;}
.ws10{word-spacing:-33.152000pt;}
.wsc{word-spacing:-14.090673pt;}
.ws5{word-spacing:-13.344000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws8{word-spacing:-10.666667pt;}
.ws0{word-spacing:-8.666667pt;}
.ws17{word-spacing:-8.000000pt;}
.wse{word-spacing:0.000000pt;}
.ws16{word-spacing:20.217600pt;}
.ws7{word-spacing:20.300067pt;}
.ws14{word-spacing:22.886400pt;}
.ws18{word-spacing:31.324067pt;}
.ws1b{word-spacing:31.468400pt;}
.ws12{word-spacing:32.048000pt;}
.ws1d{word-spacing:35.160133pt;}
.wsd{word-spacing:40.632000pt;}
.wsb{word-spacing:42.722667pt;}
.wsa{word-spacing:43.300800pt;}
.ws15{word-spacing:59.910400pt;}
.ws6{word-spacing:65.248000pt;}
.ws1e{word-spacing:92.857600pt;}
.ws4{word-spacing:112.439467pt;}
.ws13{word-spacing:168.149867pt;}
.wsf{word-spacing:215.569067pt;}
.ws11{word-spacing:223.575467pt;}
.ws3{word-spacing:325.043733pt;}
.ws1c{word-spacing:463.820785pt;}
.ws19{word-spacing:861.472000pt;}
.ws1a{word-spacing:894.138667pt;}
._2c{margin-left:-506.046507pt;}
._2d{margin-left:-474.428800pt;}
._2f{margin-left:-472.338133pt;}
._8b{margin-left:-432.006933pt;}
._7a{margin-left:-421.876455pt;}
._82{margin-left:-410.956732pt;}
._86{margin-left:-402.495001pt;}
._3d{margin-left:-397.816897pt;}
._6b{margin-left:-386.899733pt;}
._3f{margin-left:-383.303040pt;}
._3a{margin-left:-370.941867pt;}
._60{margin-left:-362.880000pt;}
._40{margin-left:-359.610667pt;}
._41{margin-left:-351.670400pt;}
._3e{margin-left:-349.870283pt;}
._61{margin-left:-338.264000pt;}
._6c{margin-left:-335.595733pt;}
._7c{margin-left:-331.985273pt;}
._43{margin-left:-328.185600pt;}
._3b{margin-left:-325.572267pt;}
._42{margin-left:-322.314667pt;}
._70{margin-left:-318.846003pt;}
._62{margin-left:-300.965333pt;}
._69{margin-left:-298.874667pt;}
._63{margin-left:-296.194133pt;}
._6d{margin-left:-293.525333pt;}
._44{margin-left:-285.484800pt;}
._58{margin-left:-277.559204pt;}
._38{margin-left:-250.838933pt;}
._59{margin-left:-237.054719pt;}
._87{margin-left:-219.402667pt;}
._7d{margin-left:-213.528931pt;}
._7e{margin-left:-211.396267pt;}
._52{margin-left:-201.408698pt;}
._8c{margin-left:-194.796800pt;}
._80{margin-left:-189.408000pt;}
._64{margin-left:-182.787573pt;}
._83{margin-left:-178.995200pt;}
._66{margin-left:-176.119467pt;}
._65{margin-left:-174.354773pt;}
._68{margin-left:-173.450667pt;}
._1b{margin-left:-171.078400pt;}
._67{margin-left:-166.609067pt;}
._51{margin-left:-164.743639pt;}
._6e{margin-left:-162.772800pt;}
._53{margin-left:-160.742400pt;}
._50{margin-left:-158.901333pt;}
._23{margin-left:-157.437867pt;}
._5a{margin-left:-155.933867pt;}
._5e{margin-left:-153.265067pt;}
._4e{margin-left:-150.641694pt;}
._4f{margin-left:-147.398400pt;}
._5d{margin-left:-143.168731pt;}
._16{margin-left:-141.107200pt;}
._19{margin-left:-134.001067pt;}
._47{margin-left:-128.716800pt;}
._1e{margin-left:-125.094400pt;}
._57{margin-left:-123.945600pt;}
._4a{margin-left:-119.617414pt;}
._71{margin-left:-118.598376pt;}
._88{margin-left:-117.350400pt;}
._6f{margin-left:-114.098133pt;}
._55{margin-left:-112.696533pt;}
._49{margin-left:-111.156246pt;}
._2b{margin-left:-110.035200pt;}
._29{margin-left:-109.081600pt;}
._3c{margin-left:-104.496431pt;}
._7b{margin-left:-103.533756pt;}
._28{margin-left:-101.075200pt;}
._27{margin-left:-97.258667pt;}
._2a{margin-left:-95.737600pt;}
._30{margin-left:-93.068800pt;}
._31{margin-left:-91.921600pt;}
._56{margin-left:-90.718933pt;}
._39{margin-left:-89.252800pt;}
._37{margin-left:-88.050133pt;}
._45{margin-left:-86.545120pt;}
._1a{margin-left:-85.062400pt;}
._18{margin-left:-82.393600pt;}
._73{margin-left:-76.797333pt;}
._5b{margin-left:-75.427027pt;}
._17{margin-left:-74.387253pt;}
._1c{margin-left:-71.136000pt;}
._34{margin-left:-69.367520pt;}
._24{margin-left:-66.688000pt;}
._5c{margin-left:-64.040587pt;}
._54{margin-left:-61.996800pt;}
._1d{margin-left:-58.702987pt;}
._21{margin-left:-55.705600pt;}
._4d{margin-left:-37.345333pt;}
._4c{margin-left:-34.676693pt;}
._7f{margin-left:-18.510933pt;}
._b{margin-left:-4.212267pt;}
._6{margin-left:-3.018560pt;}
._1{margin-left:-1.992533pt;}
._2{margin-left:-0.889600pt;}
._0{width:1.028267pt;}
._4{width:1.958187pt;}
._5{width:3.098133pt;}
._7{width:4.555413pt;}
._a{width:6.058720pt;}
._8{width:7.239467pt;}
._d{width:8.296640pt;}
._9{width:9.318187pt;}
._20{width:10.566080pt;}
._e{width:11.554027pt;}
._8f{width:14.235787pt;}
._12{width:15.541173pt;}
._c{width:16.554667pt;}
._8d{width:17.930667pt;}
._11{width:19.101867pt;}
._10{width:21.235467pt;}
._f{width:22.229173pt;}
._32{width:23.385760pt;}
._14{width:24.310827pt;}
._4b{width:26.623467pt;}
._15{width:27.522720pt;}
._36{width:29.262987pt;}
._35{width:30.235680pt;}
._33{width:32.842720pt;}
._5f{width:34.910027pt;}
._75{width:37.373920pt;}
._13{width:40.771253pt;}
._26{width:42.058067pt;}
._8a{width:43.140760pt;}
._1f{width:45.380267pt;}
._72{width:50.717867pt;}
._76{width:53.082067pt;}
._8e{width:56.202560pt;}
._74{width:82.743467pt;}
._6a{width:114.779733pt;}
._77{width:126.577000pt;}
._48{width:138.777600pt;}
._22{width:157.962827pt;}
._89{width:261.553067pt;}
._84{width:264.221867pt;}
._78{width:284.590627pt;}
._2e{width:371.538667pt;}
._85{width:379.020863pt;}
._81{width:385.821009pt;}
._79{width:486.700588pt;}
._25{width:571.219177pt;}
._3{width:899.930667pt;}
._46{width:1235.642667pt;}
.fs9{font-size:32.000000pt;}
.fs2{font-size:34.666667pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:56.362692pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:72.333333pt;}
.fsa{font-size:72.666667pt;}
.fs8{font-size:75.000000pt;}
.fs6{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.666667pt;}
.y79{bottom:3.333333pt;}
.y37{bottom:4.666667pt;}
.y48{bottom:110.000000pt;}
.y154{bottom:110.666933pt;}
.y157{bottom:111.333600pt;}
.y151{bottom:114.666933pt;}
.y156{bottom:119.333600pt;}
.yfc{bottom:120.666667pt;}
.y47{bottom:125.333333pt;}
.y9f{bottom:125.333600pt;}
.y153{bottom:126.666933pt;}
.ya1{bottom:128.666667pt;}
.y9d{bottom:130.666667pt;}
.y152{bottom:134.000267pt;}
.y155{bottom:135.333600pt;}
.yfb{bottom:136.000000pt;}
.ya0{bottom:136.666667pt;}
.y9b{bottom:138.000000pt;}
.y45{bottom:140.000000pt;}
.y46{bottom:140.666667pt;}
.y9c{bottom:141.333333pt;}
.y44{bottom:143.333333pt;}
.y99{bottom:147.333333pt;}
.ya2{bottom:149.333333pt;}
.y9e{bottom:150.000000pt;}
.yfa{bottom:151.333333pt;}
.y150{bottom:154.666667pt;}
.y9a{bottom:156.000000pt;}
.y43{bottom:160.666667pt;}
.yf9{bottom:166.666667pt;}
.y14f{bottom:170.000000pt;}
.y92{bottom:172.000000pt;}
.y97{bottom:175.333333pt;}
.y42{bottom:176.000000pt;}
.y94{bottom:177.333333pt;}
.yf8{bottom:182.000000pt;}
.y96{bottom:183.333333pt;}
.y90{bottom:184.666667pt;}
.y14e{bottom:185.333333pt;}
.y93{bottom:188.000000pt;}
.y3f{bottom:189.333333pt;}
.y40{bottom:190.666667pt;}
.y3e{bottom:194.000000pt;}
.y98{bottom:196.000000pt;}
.y95{bottom:196.666667pt;}
.yf7{bottom:197.333333pt;}
.y14c{bottom:198.666667pt;}
.y41{bottom:200.000000pt;}
.y14d{bottom:201.333333pt;}
.y91{bottom:202.666667pt;}
.y14b{bottom:203.333333pt;}
.y3d{bottom:211.333333pt;}
.yf6{bottom:212.666667pt;}
.y14a{bottom:217.333333pt;}
.y8f{bottom:218.666667pt;}
.y149{bottom:220.666667pt;}
.y3c{bottom:226.666667pt;}
.yf5{bottom:228.000000pt;}
.y8e{bottom:234.000000pt;}
.y147{bottom:238.000000pt;}
.y36{bottom:240.000000pt;}
.y38{bottom:241.333333pt;}
.yf4{bottom:243.333333pt;}
.y39{bottom:244.666667pt;}
.y145{bottom:246.666667pt;}
.y8d{bottom:248.666667pt;}
.y3a{bottom:250.666667pt;}
.y8b{bottom:252.000000pt;}
.y146{bottom:252.666667pt;}
.y8c{bottom:258.000000pt;}
.yf3{bottom:258.666667pt;}
.y143{bottom:260.666667pt;}
.y148{bottom:261.333333pt;}
.y35{bottom:262.000000pt;}
.y144{bottom:263.333333pt;}
.y142{bottom:269.333333pt;}
.y86{bottom:272.666667pt;}
.yf2{bottom:274.000000pt;}
.y88{bottom:276.000000pt;}
.y34{bottom:277.333333pt;}
.y8a{bottom:284.666667pt;}
.y85{bottom:286.666667pt;}
.yf1{bottom:289.333333pt;}
.y13e{bottom:290.666667pt;}
.y87{bottom:292.000000pt;}
.y33{bottom:292.666667pt;}
.y89{bottom:295.333333pt;}
.y141{bottom:301.333333pt;}
.yf0{bottom:304.666667pt;}
.y13f{bottom:310.000000pt;}
.y140{bottom:312.666667pt;}
.y84{bottom:313.333333pt;}
.y32{bottom:316.000000pt;}
.yef{bottom:320.000000pt;}
.y83{bottom:328.666667pt;}
.y13d{bottom:330.666667pt;}
.y31{bottom:331.333333pt;}
.ye8{bottom:335.333333pt;}
.yed{bottom:338.666667pt;}
.yeb{bottom:340.666667pt;}
.y13c{bottom:344.000000pt;}
.y7b{bottom:345.333333pt;}
.y30{bottom:346.666667pt;}
.yea{bottom:348.000000pt;}
.y81{bottom:348.666667pt;}
.y7c{bottom:350.666667pt;}
.ye6{bottom:351.333333pt;}
.y80{bottom:356.666667pt;}
.ye7{bottom:357.333333pt;}
.y7d{bottom:358.000000pt;}
.yee{bottom:359.333333pt;}
.yec{bottom:360.000000pt;}
.y7f{bottom:361.333333pt;}
.ye9{bottom:366.000000pt;}
.y7a{bottom:367.333333pt;}
.y82{bottom:369.333333pt;}
.y2f{bottom:370.000000pt;}
.y7e{bottom:376.000000pt;}
.y13b{bottom:378.000000pt;}
.y13a{bottom:381.333333pt;}
.ye1{bottom:382.000000pt;}
.y2e{bottom:385.333333pt;}
.ye2{bottom:387.333333pt;}
.y71{bottom:392.000000pt;}
.ye4{bottom:393.333333pt;}
.ydf{bottom:394.666667pt;}
.y78{bottom:395.333333pt;}
.y72{bottom:397.333333pt;}
.yde{bottom:398.000000pt;}
.y134{bottom:400.000000pt;}
.y2d{bottom:400.666667pt;}
.y77{bottom:403.333333pt;}
.y74{bottom:404.666667pt;}
.ye5{bottom:406.000000pt;}
.ye3{bottom:406.666667pt;}
.y76{bottom:408.000000pt;}
.y136{bottom:410.666667pt;}
.ye0{bottom:412.666667pt;}
.y70{bottom:414.000000pt;}
.y2c{bottom:416.000000pt;}
.y73{bottom:416.666667pt;}
.y137{bottom:420.000000pt;}
.y135{bottom:422.000000pt;}
.y75{bottom:422.666667pt;}
.y139{bottom:423.333333pt;}
.y138{bottom:425.333333pt;}
.ydd{bottom:428.666667pt;}
.y2b{bottom:431.333333pt;}
.y6f{bottom:438.666667pt;}
.ydc{bottom:444.000000pt;}
.y133{bottom:444.666667pt;}
.y2a{bottom:446.666667pt;}
.y6e{bottom:454.000000pt;}
.ydb{bottom:459.333333pt;}
.y132{bottom:460.000000pt;}
.y29{bottom:462.000000pt;}
.y6d{bottom:469.333333pt;}
.yda{bottom:474.000000pt;}
.y130{bottom:474.666667pt;}
.y28{bottom:477.333333pt;}
.y131{bottom:478.000000pt;}
.y67{bottom:485.333333pt;}
.y6a{bottom:488.666667pt;}
.y27{bottom:492.666667pt;}
.yd9{bottom:494.666667pt;}
.y12f{bottom:495.333333pt;}
.y6c{bottom:496.000000pt;}
.y66{bottom:496.666667pt;}
.y65{bottom:499.333333pt;}
.y69{bottom:505.333333pt;}
.y26{bottom:508.000000pt;}
.y6b{bottom:508.666667pt;}
.y68{bottom:509.333333pt;}
.y12e{bottom:510.666667pt;}
.yd7{bottom:512.666667pt;}
.yd8{bottom:518.666667pt;}
.y25{bottom:523.333333pt;}
.y12d{bottom:526.000000pt;}
.y64{bottom:528.666667pt;}
.yd2{bottom:534.666667pt;}
.yd3{bottom:538.000000pt;}
.y24{bottom:538.666667pt;}
.y12c{bottom:541.333333pt;}
.y63{bottom:544.000000pt;}
.yd6{bottom:546.000000pt;}
.yd5{bottom:548.666667pt;}
.y23{bottom:554.000000pt;}
.yd1{bottom:554.666667pt;}
.y12b{bottom:556.666667pt;}
.yd4{bottom:558.000000pt;}
.y62{bottom:558.666667pt;}
.y61{bottom:562.000000pt;}
.y22{bottom:569.333333pt;}
.y12a{bottom:572.000000pt;}
.y60{bottom:578.666667pt;}
.y5f{bottom:582.000000pt;}
.y21{bottom:584.666667pt;}
.y129{bottom:587.333333pt;}
.ycb{bottom:589.333333pt;}
.ycf{bottom:590.000000pt;}
.ycd{bottom:592.666667pt;}
.y17f{bottom:597.333333pt;}
.ycc{bottom:598.666667pt;}
.y5e{bottom:599.333333pt;}
.y20{bottom:600.000000pt;}
.yce{bottom:602.000000pt;}
.yd0{bottom:602.666667pt;}
.y17e{bottom:612.666667pt;}
.y1f{bottom:615.333333pt;}
.y59{bottom:616.666667pt;}
.y128{bottom:618.000000pt;}
.y55{bottom:620.000000pt;}
.yca{bottom:622.000000pt;}
.y5a{bottom:627.333333pt;}
.y17d{bottom:628.000000pt;}
.y1e{bottom:630.666667pt;}
.y127{bottom:633.333333pt;}
.yc9{bottom:635.333333pt;}
.y58{bottom:636.666667pt;}
.y5c{bottom:638.666667pt;}
.y57{bottom:639.333333pt;}
.y56{bottom:640.000000pt;}
.y5b{bottom:642.000000pt;}
.y17c{bottom:643.333333pt;}
.y5d{bottom:645.333333pt;}
.y1d{bottom:646.000000pt;}
.y126{bottom:648.666667pt;}
.yc7{bottom:658.000000pt;}
.y17b{bottom:658.666667pt;}
.y54{bottom:660.000000pt;}
.y1c{bottom:661.333333pt;}
.y125{bottom:664.000000pt;}
.yc5{bottom:668.666667pt;}
.yc6{bottom:669.333333pt;}
.yc3{bottom:672.000000pt;}
.y1b{bottom:676.666667pt;}
.yc4{bottom:678.000000pt;}
.y4c{bottom:678.666667pt;}
.y124{bottom:679.333333pt;}
.yc8{bottom:681.333333pt;}
.y50{bottom:682.000000pt;}
.y4e{bottom:689.333333pt;}
.y1a{bottom:692.000000pt;}
.y4b{bottom:692.666667pt;}
.y17a{bottom:693.333333pt;}
.y123{bottom:694.666667pt;}
.y4f{bottom:698.666667pt;}
.y4d{bottom:700.666667pt;}
.y53{bottom:701.333333pt;}
.y52{bottom:702.000000pt;}
.y51{bottom:704.000000pt;}
.yc1{bottom:705.333333pt;}
.y19{bottom:707.333333pt;}
.y179{bottom:708.666667pt;}
.y122{bottom:710.000000pt;}
.ybf{bottom:712.666667pt;}
.ybd{bottom:713.333333pt;}
.ybc{bottom:716.000000pt;}
.yc0{bottom:722.000000pt;}
.y4a{bottom:723.333333pt;}
.yc2{bottom:725.333333pt;}
.ybe{bottom:726.000000pt;}
.y178{bottom:728.000000pt;}
.y18{bottom:738.000000pt;}
.y49{bottom:738.666667pt;}
.y121{bottom:740.666667pt;}
.y177{bottom:743.333333pt;}
.ybb{bottom:745.333333pt;}
.y17{bottom:754.000000pt;}
.y120{bottom:756.000000pt;}
.y176{bottom:758.666667pt;}
.yba{bottom:760.666667pt;}
.y16{bottom:771.333333pt;}
.y116{bottom:772.000000pt;}
.y11c{bottom:774.000000pt;}
.yb8{bottom:775.333333pt;}
.y119{bottom:777.333333pt;}
.y114{bottom:778.000000pt;}
.yb7{bottom:778.666667pt;}
.y11e{bottom:779.333333pt;}
.yb9{bottom:784.666667pt;}
.y15{bottom:785.333333pt;}
.y11b{bottom:786.666667pt;}
.y118{bottom:790.000000pt;}
.y115{bottom:790.666667pt;}
.y175{bottom:793.333333pt;}
.y11f{bottom:796.000000pt;}
.y11a{bottom:798.000000pt;}
.y14{bottom:798.666667pt;}
.yb6{bottom:800.000000pt;}
.y16a{bottom:802.000000pt;}
.y117{bottom:803.333333pt;}
.y11d{bottom:806.000000pt;}
.y174{bottom:808.666667pt;}
.y13{bottom:812.666667pt;}
.yb5{bottom:815.333333pt;}
.y169{bottom:817.333333pt;}
.y10a{bottom:824.000000pt;}
.y111{bottom:826.000000pt;}
.y12{bottom:826.666667pt;}
.y173{bottom:828.000000pt;}
.y10e{bottom:829.333333pt;}
.yb4{bottom:830.000000pt;}
.y113{bottom:831.333333pt;}
.y168{bottom:832.666667pt;}
.yb3{bottom:833.333333pt;}
.y10d{bottom:837.333333pt;}
.y110{bottom:838.666667pt;}
.y11{bottom:840.000000pt;}
.y10c{bottom:842.000000pt;}
.y109{bottom:842.666667pt;}
.y172{bottom:843.333333pt;}
.y167{bottom:848.000000pt;}
.y10f{bottom:850.000000pt;}
.yb2{bottom:850.666667pt;}
.y10{bottom:854.000000pt;}
.y10b{bottom:855.333333pt;}
.y112{bottom:858.000000pt;}
.y171{bottom:858.666667pt;}
.y166{bottom:863.333333pt;}
.yb1{bottom:865.333333pt;}
.yf{bottom:868.666667pt;}
.y108{bottom:875.333333pt;}
.ye{bottom:883.333333pt;}
.yb0{bottom:886.000000pt;}
.y163{bottom:889.333333pt;}
.y107{bottom:890.666667pt;}
.y170{bottom:892.666667pt;}
.yd{bottom:898.000000pt;}
.y161{bottom:900.000000pt;}
.yaf{bottom:900.666667pt;}
.yc{bottom:904.000000pt;}
.y162{bottom:904.666667pt;}
.y106{bottom:905.333333pt;}
.y164{bottom:906.000000pt;}
.y105{bottom:908.666667pt;}
.y165{bottom:909.333333pt;}
.yb{bottom:916.000000pt;}
.yab{bottom:920.666667pt;}
.yad{bottom:924.000000pt;}
.y16f{bottom:924.666667pt;}
.y103{bottom:925.333333pt;}
.y160{bottom:926.666667pt;}
.y104{bottom:928.666667pt;}
.ya{bottom:930.666667pt;}
.yaa{bottom:931.333333pt;}
.yae{bottom:932.000000pt;}
.ya8{bottom:934.666667pt;}
.y9{bottom:936.666667pt;}
.y16e{bottom:940.000000pt;}
.yac{bottom:940.666667pt;}
.y15f{bottom:942.000000pt;}
.ya9{bottom:944.000000pt;}
.y8{bottom:946.000000pt;}
.y16d{bottom:955.333333pt;}
.y15e{bottom:957.333333pt;}
.y102{bottom:960.666667pt;}
.y6{bottom:961.333333pt;}
.y101{bottom:964.000000pt;}
.y7{bottom:967.333333pt;}
.y16c{bottom:970.666667pt;}
.y15b{bottom:973.333333pt;}
.y5{bottom:976.666667pt;}
.y100{bottom:980.666667pt;}
.y15d{bottom:981.333333pt;}
.yff{bottom:984.000000pt;}
.y16b{bottom:986.000000pt;}
.y158{bottom:987.333333pt;}
.y15a{bottom:988.666667pt;}
.ya4{bottom:991.333333pt;}
.ya6{bottom:994.666667pt;}
.y4{bottom:995.333333pt;}
.y159{bottom:996.000000pt;}
.y15c{bottom:997.333333pt;}
.yfe{bottom:1001.333333pt;}
.ya3{bottom:1005.333333pt;}
.ya5{bottom:1010.666667pt;}
.y3{bottom:1013.333333pt;}
.ya7{bottom:1014.000000pt;}
.yfd{bottom:1016.666667pt;}
.y2{bottom:1044.000000pt;}
.y1{bottom:1064.000000pt;}
.h10{height:7.333333pt;}
.h12{height:14.666667pt;}
.h1f{height:15.333333pt;}
.hb{height:18.000000pt;}
.h1b{height:21.952000pt;}
.h6{height:23.781333pt;}
.h5{height:24.058667pt;}
.h19{height:28.895833pt;}
.hd{height:29.269333pt;}
.he{height:29.354667pt;}
.h15{height:32.128000pt;}
.h7{height:32.928000pt;}
.ha{height:33.024000pt;}
.h9{height:33.312000pt;}
.h1a{height:36.119792pt;}
.h8{height:36.586667pt;}
.h1{height:36.693333pt;}
.h4{height:37.013333pt;}
.h1c{height:37.269333pt;}
.h11{height:38.541667pt;}
.hf{height:40.160000pt;}
.h17{height:42.441107pt;}
.h1e{height:42.826667pt;}
.h2{height:44.032000pt;}
.h3{height:44.416000pt;}
.h16{height:49.401042pt;}
.h13{height:50.826667pt;}
.hc{height:54.467000pt;}
.h20{height:54.718000pt;}
.h18{height:56.475000pt;}
.h14{height:79.041667pt;}
.h1d{height:85.493333pt;}
.h0{height:1122.666667pt;}
.wc{width:3.333333pt;}
.w7{width:4.666667pt;}
.w1{width:6.000000pt;}
.w3{width:7.333333pt;}
.w2{width:12.000000pt;}
.w4{width:94.000000pt;}
.wa{width:94.666667pt;}
.wb{width:96.000000pt;}
.w6{width:116.000000pt;}
.w9{width:146.000000pt;}
.w8{width:150.000000pt;}
.w5{width:226.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.666667pt;}
.x11{left:113.333321pt;}
.x12{left:123.333808pt;}
.x10{left:142.000000pt;}
.xdb{left:143.333368pt;}
.x92{left:144.666680pt;}
.x84{left:146.000031pt;}
.x22{left:149.333333pt;}
.x1f{left:151.333333pt;}
.xd6{left:152.666728pt;}
.x86{left:153.999998pt;}
.x21{left:156.000000pt;}
.x85{left:157.333318pt;}
.xd{left:160.000000pt;}
.x1b{left:161.333333pt;}
.x90{left:166.000000pt;}
.xe{left:168.000000pt;}
.x91{left:169.333331pt;}
.x19{left:173.333333pt;}
.x2{left:175.999981pt;}
.x87{left:178.666667pt;}
.xa4{left:180.666667pt;}
.x88{left:182.000000pt;}
.x8b{left:183.333333pt;}
.x18{left:186.666667pt;}
.x23{left:189.333333pt;}
.x97{left:192.000000pt;}
.x83{left:194.666667pt;}
.x1e{left:196.666667pt;}
.x89{left:198.000000pt;}
.xa5{left:200.000000pt;}
.x82{left:202.666667pt;}
.x1d{left:204.000000pt;}
.x13{left:207.333333pt;}
.xa1{left:209.333355pt;}
.x1c{left:210.666667pt;}
.x8a{left:214.000000pt;}
.xc{left:215.333464pt;}
.xf{left:216.666345pt;}
.x20{left:218.000000pt;}
.x96{left:220.000000pt;}
.x8f{left:221.333333pt;}
.x24{left:224.000000pt;}
.xa7{left:226.000052pt;}
.x98{left:228.000000pt;}
.x93{left:229.333333pt;}
.x17{left:230.666667pt;}
.xa{left:232.000000pt;}
.xa2{left:234.000041pt;}
.xd7{left:235.333333pt;}
.xd8{left:237.333333pt;}
.xa3{left:238.666667pt;}
.xb{left:240.000000pt;}
.xa9{left:241.333410pt;}
.xa8{left:242.666743pt;}
.xa0{left:248.000000pt;}
.xd9{left:251.333333pt;}
.x16{left:254.666667pt;}
.xa6{left:260.000000pt;}
.x15{left:262.000000pt;}
.x14{left:268.666667pt;}
.x9b{left:270.000006pt;}
.x8e{left:272.666667pt;}
.x1a{left:275.333333pt;}
.xd5{left:278.000000pt;}
.xda{left:280.666667pt;}
.x8c{left:282.000000pt;}
.x8d{left:284.000006pt;}
.x9f{left:287.333333pt;}
.x95{left:290.000000pt;}
.x9d{left:291.333333pt;}
.x9e{left:294.000000pt;}
.x94{left:300.000000pt;}
.x9a{left:302.666687pt;}
.x3{left:309.999650pt;}
.x5{left:315.333333pt;}
.x9c{left:317.333333pt;}
.x99{left:327.333333pt;}
.x80{left:360.000000pt;}
.x81{left:363.333331pt;}
.x7e{left:366.000000pt;}
.x7f{left:369.333338pt;}
.x6{left:388.000000pt;}
.x7{left:395.333333pt;}
.x4{left:396.666245pt;}
.x25{left:415.999904pt;}
.x42{left:418.666701pt;}
.x3e{left:420.000528pt;}
.x39{left:424.000126pt;}
.x44{left:426.000096pt;}
.x3a{left:428.000124pt;}
.x77{left:429.333350pt;}
.xcc{left:432.000000pt;}
.xc1{left:433.333333pt;}
.x47{left:434.666674pt;}
.xb8{left:437.333446pt;}
.x55{left:440.000000pt;}
.x3d{left:442.000514pt;}
.x56{left:443.333331pt;}
.xc9{left:445.333337pt;}
.x45{left:446.666667pt;}
.x46{left:447.999999pt;}
.x54{left:450.000005pt;}
.x31{left:453.333284pt;}
.x41{left:454.666678pt;}
.x30{left:457.333282pt;}
.xb6{left:458.666765pt;}
.x43{left:460.000043pt;}
.xb7{left:462.000096pt;}
.xc0{left:463.333381pt;}
.x64{left:466.000054pt;}
.x8{left:469.333333pt;}
.x40{left:472.000000pt;}
.xb2{left:473.333333pt;}
.xc8{left:474.666652pt;}
.x53{left:476.666667pt;}
.x32{left:477.999971pt;}
.x9{left:480.666667pt;}
.x26{left:483.333333pt;}
.x6d{left:484.666752pt;}
.x38{left:488.000085pt;}
.x63{left:490.666705pt;}
.xba{left:492.666667pt;}
.x4a{left:494.000040pt;}
.xaa{left:495.333333pt;}
.xcb{left:498.666664pt;}
.x74{left:499.999938pt;}
.x3c{left:501.333810pt;}
.x7c{left:502.666667pt;}
.xae{left:504.666667pt;}
.x36{left:506.000074pt;}
.xc4{left:507.999869pt;}
.x37{left:509.333405pt;}
.x66{left:510.666667pt;}
.x2e{left:512.666578pt;}
.xbf{left:514.666712pt;}
.x2f{left:515.999916pt;}
.xc7{left:517.999958pt;}
.x78{left:521.333334pt;}
.x5f{left:523.333333pt;}
.x3b{left:525.333794pt;}
.x7a{left:526.666686pt;}
.xb5{left:528.000012pt;}
.xd0{left:529.333400pt;}
.x4e{left:532.000007pt;}
.x62{left:534.000023pt;}
.x3f{left:536.666667pt;}
.x61{left:538.000021pt;}
.x4f{left:540.000000pt;}
.xca{left:541.333333pt;}
.x4d{left:542.666667pt;}
.xad{left:544.666667pt;}
.x2a{left:547.333225pt;}
.x49{left:549.333338pt;}
.x29{left:551.333223pt;}
.xbb{left:553.333333pt;}
.x73{left:554.666640pt;}
.xd4{left:556.000000pt;}
.x4c{left:557.999952pt;}
.x6c{left:559.333377pt;}
.x79{left:561.333333pt;}
.x65{left:564.666667pt;}
.x2d{left:565.999881pt;}
.x7b{left:567.333333pt;}
.x2c{left:568.666546pt;}
.xd2{left:572.000000pt;}
.xc3{left:573.333232pt;}
.x60{left:575.333333pt;}
.x5e{left:576.666667pt;}
.xd3{left:578.000000pt;}
.x48{left:581.999997pt;}
.xbe{left:584.000000pt;}
.xbc{left:586.666667pt;}
.xbd{left:589.333333pt;}
.x4b{left:591.333333pt;}
.x6b{left:593.333324pt;}
.x2b{left:594.666498pt;}
.xb4{left:596.666667pt;}
.x50{left:600.666667pt;}
.xb3{left:602.000000pt;}
.x59{left:603.333333pt;}
.xb9{left:604.666667pt;}
.x5a{left:606.666665pt;}
.x35{left:608.000008pt;}
.x57{left:609.999956pt;}
.x58{left:613.333294pt;}
.x6f{left:617.333378pt;}
.xd1{left:619.333333pt;}
.x5d{left:620.666667pt;}
.x69{left:622.666641pt;}
.xcd{left:625.333396pt;}
.xab{left:626.666667pt;}
.x5c{left:629.333333pt;}
.x72{left:631.999930pt;}
.xb1{left:633.333333pt;}
.x71{left:635.333268pt;}
.xaf{left:636.666667pt;}
.x5b{left:638.666667pt;}
.x33{left:642.000000pt;}
.xac{left:643.333333pt;}
.xb0{left:647.333333pt;}
.x34{left:648.666649pt;}
.x27{left:650.666667pt;}
.x75{left:653.333333pt;}
.x28{left:657.333263pt;}
.x70{left:660.666654pt;}
.x6a{left:661.999919pt;}
.xce{left:664.666667pt;}
.xcf{left:666.666667pt;}
.x52{left:673.333333pt;}
.x7d{left:677.333333pt;}
.x51{left:679.333333pt;}
.xc5{left:680.666667pt;}
.x76{left:684.666667pt;}
.xc6{left:687.999982pt;}
.xc2{left:690.000000pt;}
.x68{left:696.000000pt;}
.x6e{left:697.333333pt;}
.x67{left:699.333333pt;}
}




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