
    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_9025e417e0b4469b528ec440.woff')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_121799984a993db65a741f30.woff')format("woff");}.ff2{font-family:ff2;line-height:1.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:ff3;src:url('chunks/assets/font_6dadf8e67589a2eb703e8db9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.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:ff4;src:url('chunks/assets/font_48add8e595382a6a8a1bb07d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.705000;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_a6027a44e50e60549b0d49f3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.723000;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_089bb08ceb53c447764f6366.woff')format("woff");}.ff6{font-family:ff6;line-height:0.308000;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_9d13706ddc0dab292c23f4f3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.414000;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_1ac0c12636be796bb96b928d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.725000;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_31d0293c24b676676a4035aa.woff')format("woff");}.ff9{font-family:ff9;line-height:0.715000;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_882764e986bb430e8912af80.woff')format("woff");}.ffa{font-family:ffa;line-height:0.727000;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_3f54b785747a54736b65e93d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.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:ffc;src:url('chunks/assets/font_b3d65b722a5be267fbd76a28.woff')format("woff");}.ffc{font-family:ffc;line-height:0.999000;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_7b76a2f855900c61e7eb610c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.683000;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_9ec2fdff7c0e4c38e4873af1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.773000;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_b6a15b2ec08ba67bfd1961cc.woff')format("woff");}.fff{font-family:fff;line-height:0.705000;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_1a5ed8823247efb8225631a7.woff')format("woff");}.ff10{font-family:ff10;line-height:0.776000;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_66ca2a513dbe03b108b68a23.woff')format("woff");}.ff11{font-family:ff11;line-height:0.911000;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_028bafad43e8c88fd11aae00.woff')format("woff");}.ff13{font-family:ff13;line-height:0.757000;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;}
.ff14{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff15;src:url('chunks/assets/font_8114b5852cb7483f9373ff27.woff')format("woff");}.ff15{font-family:ff15;line-height:0.705000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.218539,0.121411,-0.121411,0.218539,0,0);-ms-transform:matrix(0.218539,0.121411,-0.121411,0.218539,0,0);-webkit-transform:matrix(0.218539,0.121411,-0.121411,0.218539,0,0);}
.m3{transform:matrix(0.240880,-0.066909,0.066909,0.240880,0,0);-ms-transform:matrix(0.240880,-0.066909,0.066909,0.240880,0,0);-webkit-transform:matrix(0.240880,-0.066909,0.066909,0.240880,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v10{vertical-align:-25.284000px;}
.v3{vertical-align:-24.018000px;}
.v2{vertical-align:-18.042000px;}
.v8{vertical-align:-14.946000px;}
.va{vertical-align:-12.888000px;}
.v7{vertical-align:-8.964000px;}
.v4{vertical-align:-7.470000px;}
.v9{vertical-align:-5.976000px;}
.v1{vertical-align:-4.866000px;}
.ve{vertical-align:-3.586511px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:9.096911px;}
.vb{vertical-align:13.440000px;}
.v5{vertical-align:16.878000px;}
.v6{vertical-align:18.042000px;}
.vf{vertical-align:21.696000px;}
.vc{vertical-align:53.274000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000062px;}
.lsb{letter-spacing:0.000300px;}
.ls2c{letter-spacing:0.000538px;}
.ls17{letter-spacing:0.001707px;}
.ls2d{letter-spacing:0.002023px;}
.ls10{letter-spacing:0.002087px;}
.ls6{letter-spacing:0.002367px;}
.ls31{letter-spacing:0.002943px;}
.ls35{letter-spacing:0.003056px;}
.ls12{letter-spacing:0.003573px;}
.ls1c{letter-spacing:0.004200px;}
.ls16{letter-spacing:0.004738px;}
.lsa{letter-spacing:0.005197px;}
.ls2a{letter-spacing:0.005294px;}
.ls22{letter-spacing:0.005755px;}
.ls2b{letter-spacing:0.006062px;}
.ls27{letter-spacing:0.208188px;}
.ls29{letter-spacing:0.210238px;}
.ls25{letter-spacing:0.214508px;}
.ls1f{letter-spacing:0.226309px;}
.ls21{letter-spacing:0.228537px;}
.ls1d{letter-spacing:0.233178px;}
.ls26{letter-spacing:0.596078px;}
.ls28{letter-spacing:0.601279px;}
.ls1e{letter-spacing:0.647960px;}
.ls20{letter-spacing:0.653613px;}
.ls11{letter-spacing:2.984525px;}
.ls4{letter-spacing:2.986363px;}
.ls30{letter-spacing:2.986920px;}
.ls2f{letter-spacing:2.987110px;}
.ls7{letter-spacing:2.988532px;}
.ls8{letter-spacing:2.988668px;}
.ls23{letter-spacing:5.980049px;}
.lsc{letter-spacing:5.980363px;}
.ls3{letter-spacing:8.158738px;}
.ls2{letter-spacing:8.164738px;}
.ls24{letter-spacing:8.465696px;}
.lsd{letter-spacing:9.962338px;}
.ls1a{letter-spacing:13.282200px;}
.ls1b{letter-spacing:13.284538px;}
.ls15{letter-spacing:16.602538px;}
.ls34{letter-spacing:16.935056px;}
.ls9{letter-spacing:16.938141px;}
.ls18{letter-spacing:17.810722px;}
.lsf{letter-spacing:19.928338px;}
.ls2e{letter-spacing:20.794363px;}
.ls32{letter-spacing:22.913110px;}
.ls13{letter-spacing:24.406363px;}
.ls19{letter-spacing:25.900363px;}
.ls5{letter-spacing:29.882915px;}
.ls33{letter-spacing:29.887214px;}
.ls14{letter-spacing:29.890200px;}
.ls1{letter-spacing:48.658920px;}
.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;}
}
.ws17{word-spacing:-38.937826px;}
.ws20{word-spacing:-14.280391px;}
.wsf{word-spacing:-10.607150px;}
.ws2d{word-spacing:-0.071731px;}
.ws12{word-spacing:-0.059776px;}
.wsa{word-spacing:-0.047821px;}
.ws26{word-spacing:-0.047818px;}
.ws7{word-spacing:-0.041843px;}
.wsc{word-spacing:-0.035866px;}
.ws25{word-spacing:-0.035864px;}
.ws6{word-spacing:-0.029888px;}
.ws24{word-spacing:-0.005755px;}
.ws29{word-spacing:-0.005294px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:3.003724px;}
.ws22{word-spacing:3.786773px;}
.ws2{word-spacing:4.205201px;}
.ws2a{word-spacing:4.247044px;}
.ws2e{word-spacing:4.662509px;}
.wsb{word-spacing:4.792234px;}
.ws27{word-spacing:4.805933px;}
.ws9{word-spacing:4.805970px;}
.wse{word-spacing:4.817081px;}
.ws8{word-spacing:4.853791px;}
.ws16{word-spacing:4.967352px;}
.ws1d{word-spacing:5.086904px;}
.ws21{word-spacing:5.196925px;}
.ws13{word-spacing:5.218030px;}
.ws14{word-spacing:5.250724px;}
.ws1{word-spacing:5.624884px;}
.ws2b{word-spacing:5.640386px;}
.ws4{word-spacing:5.684660px;}
.ws1a{word-spacing:10.457568px;}
.ws10{word-spacing:11.120839px;}
.ws1b{word-spacing:16.880672px;}
.wsd{word-spacing:16.891707px;}
.ws19{word-spacing:19.545825px;}
.ws18{word-spacing:19.551411px;}
.ws1f{word-spacing:19.856670px;}
.ws1e{word-spacing:21.877870px;}
.ws1c{word-spacing:22.869866px;}
.ws11{word-spacing:23.312640px;}
.ws15{word-spacing:23.472040px;}
.ws28{word-spacing:26.839828px;}
.ws0{word-spacing:27.975090px;}
.ws23{word-spacing:29.175929px;}
.ws2c{word-spacing:557.965922px;}
._e{margin-left:-29.177657px;}
._11{margin-left:-24.575609px;}
._13{margin-left:-4.961375px;}
._1{margin-left:-3.682166px;}
._0{margin-left:-2.324084px;}
._2{margin-left:-1.255284px;}
._3{width:1.255284px;}
._8{width:2.264309px;}
._a{width:3.709402px;}
._7{width:5.290141px;}
._16{width:17.973376px;}
._9{width:19.791644px;}
._4{width:21.190450px;}
._b{width:22.678919px;}
._15{width:23.682049px;}
._f{width:26.600142px;}
._c{width:31.590414px;}
._d{width:37.443582px;}
._12{width:186.051555px;}
._6{width:201.921977px;}
._14{width:532.584510px;}
._10{width:605.066802px;}
._5{width:1100.539312px;}
.fc6{color:transparent;}
.fc5{color:rgb(225,234,225);}
.fc4{color:rgb(252,253,252);}
.fc3{color:rgb(103,152,103);}
.fc2{color:rgb(240,245,240);}
.fc7{color:rgb(139,71,179);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:15.302448px;}
.fs9{font-size:16.634352px;}
.fs11{font-size:21.860640px;}
.fsa{font-size:23.763360px;}
.fsf{font-size:27.325800px;}
.fs8{font-size:29.704200px;}
.fsd{font-size:29.886229px;}
.fs3{font-size:29.887800px;}
.fsc{font-size:35.863715px;}
.fs5{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fsb{font-size:47.818087px;}
.fse{font-size:47.820228px;}
.fs4{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yc3{bottom:0.546516px;}
.y9d{bottom:0.594084px;}
.yc2{bottom:1.912806px;}
.y9c{bottom:2.079294px;}
.ydf{bottom:3.279096px;}
.y8{bottom:3.321000px;}
.yc5{bottom:3.962241px;}
.y9f{bottom:4.307109px;}
.ybe{bottom:5.328531px;}
.y98{bottom:5.792319px;}
.yc6{bottom:6.694821px;}
.ya0{bottom:7.277529px;}
.ybc{bottom:8.061111px;}
.ybb{bottom:8.113414px;}
.y96{bottom:8.762739px;}
.yc7{bottom:8.796559px;}
.y95{bottom:8.819595px;}
.yc4{bottom:9.427401px;}
.ydd{bottom:9.479704px;}
.ya1{bottom:9.562200px;}
.ye1{bottom:10.162849px;}
.y9e{bottom:10.247949px;}
.ye0{bottom:10.793691px;}
.yc8{bottom:12.159981px;}
.ya2{bottom:13.218369px;}
.ye2{bottom:13.526271px;}
.y12f{bottom:22.527000px;}
.yc0{bottom:23.090301px;}
.ybf{bottom:24.456591px;}
.y9a{bottom:25.100049px;}
.yc1{bottom:25.822881px;}
.y99{bottom:26.585259px;}
.ybd{bottom:27.189171px;}
.yc9{bottom:27.872316px;}
.y9b{bottom:28.070469px;}
.yde{bottom:28.555461px;}
.ye3{bottom:29.238606px;}
.y97{bottom:29.555679px;}
.ya3{bottom:30.298284px;}
.yec{bottom:35.740500px;}
.y10a{bottom:35.847000px;}
.yef{bottom:42.705000px;}
.y67{bottom:42.903000px;}
.y17{bottom:44.061000px;}
.yca{bottom:44.819820px;}
.y62{bottom:47.577000px;}
.y109{bottom:47.802000px;}
.ya4{bottom:48.720875px;}
.ye4{bottom:50.132794px;}
.y12e{bottom:50.943000px;}
.y113{bottom:52.431000px;}
.y42{bottom:52.965000px;}
.y1f{bottom:53.019000px;}
.yeb{bottom:53.673000px;}
.y16{bottom:56.016000px;}
.ycf{bottom:56.342595px;}
.y66{bottom:57.099000px;}
.y86{bottom:57.786000px;}
.ycb{bottom:57.927487px;}
.yee{bottom:59.143500px;}
.y1e{bottom:60.463500px;}
.ye5{bottom:60.706313px;}
.y85{bottom:60.906000px;}
.y78{bottom:61.243500px;}
.ya9{bottom:61.246576px;}
.y88{bottom:62.178000px;}
.ya5{bottom:62.969416px;}
.y12d{bottom:65.140500px;}
.y61{bottom:65.509500px;}
.y108{bottom:66.078000px;}
.y112{bottom:70.363500px;}
.y41{bottom:70.897500px;}
.ycc{bottom:71.035154px;}
.ye6{bottom:71.279831px;}
.y65{bottom:71.296500px;}
.y1d{bottom:72.420000px;}
.yed{bottom:75.580500px;}
.ya6{bottom:77.217956px;}
.y84{bottom:78.840000px;}
.y77{bottom:79.176000px;}
.y107{bottom:80.275500px;}
.ye7{bottom:81.853349px;}
.y60{bottom:83.443500px;}
.ycd{bottom:84.142821px;}
.y1c{bottom:84.375000px;}
.y12c{bottom:85.314000px;}
.yd0{bottom:85.539000px;}
.y111{bottom:88.296000px;}
.y40{bottom:88.830000px;}
.y44{bottom:91.047000px;}
.ya7{bottom:91.466497px;}
.ye8{bottom:92.426867px;}
.y106{bottom:94.471500px;}
.y83{bottom:96.772500px;}
.y76{bottom:97.108500px;}
.y15{bottom:97.218000px;}
.yce{bottom:97.250488px;}
.yae{bottom:99.003000px;}
.y2e{bottom:101.221500px;}
.y64{bottom:102.784500px;}
.y5f{bottom:103.243500px;}
.y12b{bottom:105.489000px;}
.ya8{bottom:105.715037px;}
.y2f{bottom:105.732000px;}
.y110{bottom:106.228500px;}
.y43{bottom:107.485500px;}
.yf8{bottom:107.647500px;}
.y105{bottom:108.669000px;}
.yf{bottom:110.368500px;}
.y2b{bottom:111.237000px;}
.yb5{bottom:112.701806px;}
.y2d{bottom:113.176500px;}
.y82{bottom:114.705000px;}
.yd7{bottom:118.014781px;}
.y12a{bottom:119.685000px;}
.ydc{bottom:122.052394px;}
.y8f{bottom:122.511217px;}
.y104{bottom:122.865000px;}
.y5e{bottom:123.792000px;}
.y10f{bottom:124.162500px;}
.yba{bottom:124.224581px;}
.y2c{bottom:125.131500px;}
.yf7{bottom:125.580000px;}
.yb6{bottom:125.809474px;}
.y2a{bottom:127.302000px;}
.yd8{bottom:128.588299px;}
.y14{bottom:131.704500px;}
.y72{bottom:132.166500px;}
.y81{bottom:132.637500px;}
.y3e{bottom:133.452000px;}
.y94{bottom:135.036918px;}
.y7{bottom:136.566000px;}
.y90{bottom:136.759757px;}
.y103{bottom:137.062500px;}
.yad{bottom:137.760000px;}
.y3f{bottom:137.962500px;}
.yb7{bottom:138.917141px;}
.yd9{bottom:139.161817px;}
.y129{bottom:139.972500px;}
.y5d{bottom:141.724500px;}
.y3b{bottom:143.467500px;}
.yf6{bottom:143.512500px;}
.ye{bottom:144.855000px;}
.y3d{bottom:145.407000px;}
.y29{bottom:145.608000px;}
.yda{bottom:149.735335px;}
.y71{bottom:150.099000px;}
.y91{bottom:151.008297px;}
.y102{bottom:151.258500px;}
.yb8{bottom:152.024808px;}
.y3c{bottom:157.362000px;}
.y3a{bottom:159.532500px;}
.y28{bottom:159.805500px;}
.ydb{bottom:160.308854px;}
.yf5{bottom:161.445000px;}
.y5c{bottom:161.524500px;}
.y80{bottom:163.326000px;}
.yb9{bottom:165.132475px;}
.y92{bottom:165.256838px;}
.y13{bottom:166.191000px;}
.y121{bottom:169.686000px;}
.y70{bottom:169.899000px;}
.y27{bottom:174.003000px;}
.y6{bottom:174.382500px;}
.y39{bottom:177.838500px;}
.yd{bottom:179.341500px;}
.y93{bottom:179.505378px;}
.yaf{bottom:180.583793px;}
.y7f{bottom:181.258500px;}
.y5b{bottom:182.073000px;}
.y120{bottom:183.883500px;}
.yd1{bottom:185.896767px;}
.y5{bottom:186.337500px;}
.yd6{bottom:189.934380px;}
.y26{bottom:190.066500px;}
.y6f{bottom:190.447500px;}
.y38{bottom:192.036000px;}
.yb4{bottom:192.106568px;}
.yb0{bottom:193.691460px;}
.y89{bottom:196.301558px;}
.yd2{bottom:196.470286px;}
.y11f{bottom:198.079500px;}
.y4{bottom:198.292500px;}
.y7e{bottom:199.192500px;}
.y5a{bottom:200.005500px;}
.yf4{bottom:200.638500px;}
.y12{bottom:200.676000px;}
.y37{bottom:206.233500px;}
.yb1{bottom:206.799127px;}
.yd3{bottom:207.043804px;}
.y25{bottom:208.374000px;}
.y6e{bottom:208.380000px;}
.y8e{bottom:208.827259px;}
.yac{bottom:209.673000px;}
.y8a{bottom:210.550098px;}
.yc{bottom:213.828000px;}
.y7d{bottom:217.125000px;}
.yd4{bottom:217.617322px;}
.y59{bottom:217.938000px;}
.y11e{bottom:218.254500px;}
.yf3{bottom:218.571000px;}
.yb2{bottom:219.906794px;}
.y36{bottom:222.297000px;}
.y24{bottom:222.570000px;}
.y8b{bottom:224.798639px;}
.y6d{bottom:226.312500px;}
.yd5{bottom:228.190840px;}
.y3{bottom:230.962500px;}
.y11d{bottom:232.450500px;}
.yb3{bottom:233.014462px;}
.y7c{bottom:235.057500px;}
.y11{bottom:235.162500px;}
.yf2{bottom:236.503500px;}
.y58{bottom:237.739500px;}
.y23{bottom:238.635000px;}
.y8c{bottom:239.047179px;}
.y35{bottom:240.604500px;}
.y6c{bottom:244.246500px;}
.yb{bottom:248.313000px;}
.y11c{bottom:252.625500px;}
.y8d{bottom:253.295719px;}
.yf1{bottom:254.436000px;}
.y34{bottom:254.800500px;}
.y22{bottom:255.447000px;}
.y57{bottom:258.286500px;}
.y6b{bottom:264.046500px;}
.y11b{bottom:266.821500px;}
.y10e{bottom:269.089500px;}
.y21{bottom:269.643000px;}
.y10{bottom:269.649000px;}
.y33{bottom:270.865500px;}
.yf0{bottom:272.368500px;}
.y56{bottom:276.220500px;}
.y7b{bottom:279.577500px;}
.y11a{bottom:281.019000px;}
.ya{bottom:282.799500px;}
.y20{bottom:283.840500px;}
.y6a{bottom:286.089000px;}
.y10d{bottom:287.023500px;}
.y32{bottom:287.677500px;}
.y2{bottom:288.435000px;}
.y55{bottom:294.153000px;}
.y7a{bottom:297.510000px;}
.yab{bottom:300.640500px;}
.y119{bottom:301.192500px;}
.y31{bottom:301.873500px;}
.y69{bottom:304.021500px;}
.y10c{bottom:304.956000px;}
.y54{bottom:313.953000px;}
.y1{bottom:315.334500px;}
.y118{bottom:315.390000px;}
.y79{bottom:315.444000px;}
.y30{bottom:316.071000px;}
.y68{bottom:321.954000px;}
.y10b{bottom:322.888500px;}
.y117{bottom:335.563500px;}
.y63{bottom:340.183500px;}
.y87{bottom:347.217000px;}
.y116{bottom:349.761000px;}
.y115{bottom:363.957000px;}
.yaa{bottom:376.159500px;}
.y9{bottom:378.097500px;}
.y114{bottom:385.491000px;}
.y128{bottom:3022.565685px;}
.yea{bottom:3035.779185px;}
.y101{bottom:3035.885685px;}
.y53{bottom:3047.615685px;}
.y100{bottom:3047.840685px;}
.y127{bottom:3050.981685px;}
.y1b{bottom:3053.057685px;}
.ye9{bottom:3053.711685px;}
.y1a{bottom:3060.502185px;}
.y75{bottom:3061.282185px;}
.y126{bottom:3065.179185px;}
.y52{bottom:3065.548185px;}
.yff{bottom:3066.116685px;}
.y19{bottom:3072.458685px;}
.y74{bottom:3079.214685px;}
.yfe{bottom:3080.314185px;}
.y51{bottom:3083.482185px;}
.y18{bottom:3084.413685px;}
.y125{bottom:3085.352685px;}
.yfd{bottom:3094.510185px;}
.y73{bottom:3097.147185px;}
.y50{bottom:3103.282185px;}
.y124{bottom:3105.527685px;}
.yfc{bottom:3108.707685px;}
.y123{bottom:3119.723685px;}
.yfb{bottom:3122.903685px;}
.y4f{bottom:3123.830685px;}
.yfa{bottom:3137.101185px;}
.y122{bottom:3140.011185px;}
.y4e{bottom:3141.763185px;}
.yf9{bottom:3151.297185px;}
.y4d{bottom:3161.563185px;}
.y4c{bottom:3182.111685px;}
.y4b{bottom:3200.044185px;}
.y4a{bottom:3217.976685px;}
.y49{bottom:3237.778185px;}
.y48{bottom:3258.325185px;}
.y47{bottom:3276.259185px;}
.y46{bottom:3294.191685px;}
.y45{bottom:3313.991685px;}
.h1c{height:14.215974px;}
.h15{height:15.453313px;}
.h1e{height:20.308535px;}
.hd{height:20.413367px;}
.h17{height:22.076161px;}
.h5{height:22.415850px;}
.h1d{height:22.584500px;}
.h16{height:24.550224px;}
.h1b{height:25.385668px;}
.h14{height:27.595202px;}
.h9{height:28.395450px;}
.h4{height:31.382100px;}
.h18{height:33.663933px;}
.h11{height:35.855850px;}
.h19{height:35.865171px;}
.h8{height:35.865450px;}
.h10{height:38.017282px;}
.hc{height:38.455367px;}
.h7{height:39.959700px;}
.h6{height:39.965700px;}
.hf{height:40.348800px;}
.h22{height:41.762726px;}
.hb{height:41.768726px;}
.ha{height:43.777200px;}
.h3{height:44.831700px;}
.h1f{height:51.111488px;}
.h21{height:53.072100px;}
.h20{height:53.078100px;}
.he{height:53.798400px;}
.h2{height:64.557900px;}
.h12{height:93.622800px;}
.h1a{height:245.932200px;}
.h13{height:267.337800px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w3{width:196.745760px;}
.w2{width:213.870240px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x20{left:10.308286px;}
.x7{left:12.756000px;}
.x10{left:14.944500px;}
.x11{left:18.535500px;}
.x1f{left:21.044149px;}
.x1e{left:25.660500px;}
.x1b{left:27.109500px;}
.xb{left:29.239500px;}
.x51{left:31.045500px;}
.x54{left:33.859500px;}
.x1d{left:37.761000px;}
.x6{left:40.209000px;}
.xc{left:45.304500px;}
.x1{left:46.680000px;}
.x3b{left:48.269556px;}
.x21{left:52.470872px;}
.x3c{left:53.872393px;}
.xd{left:59.127000px;}
.x3d{left:61.567361px;}
.x8{left:66.925500px;}
.x22{left:72.959743px;}
.x23{left:79.049083px;}
.x3e{left:83.786573px;}
.x24{left:85.089689px;}
.x3f{left:89.528173px;}
.x25{left:91.079240px;}
.x40{left:94.992246px;}
.x26{left:97.320582px;}
.x16{left:100.215000px;}
.x27{left:103.260240px;}
.x41{left:106.390053px;}
.x28{left:109.083866px;}
.x42{left:111.893620px;}
.x29{left:115.650097px;}
.x43{left:117.158087px;}
.x2a{left:121.632687px;}
.x44{left:123.198563px;}
.x2b{left:127.355365px;}
.x45{left:128.363760px;}
.x2c{left:133.921596px;}
.x2{left:136.405500px;}
.x2d{left:139.536365px;}
.x46{left:143.517778px;}
.x2e{left:146.102596px;}
.x47{left:150.775106px;}
.x2f{left:152.085186px;}
.x48{left:154.723451px;}
.x30{left:156.009367px;}
.x49{left:161.980779px;}
.x31{left:163.898363px;}
.x4a{left:165.929124px;}
.x32{left:168.190367px;}
.x4b{left:173.186452px;}
.x33{left:176.079363px;}
.x4c{left:179.127659px;}
.x34{left:180.371366px;}
.x4d{left:184.776394px;}
.x35{left:188.260362px;}
.x36{left:194.718684px;}
.x37{left:200.859077px;}
.x3{left:221.700000px;}
.x4{left:223.725000px;}
.x5{left:236.430000px;}
.x39{left:244.735500px;}
.x3a{left:254.197500px;}
.x55{left:268.480500px;}
.x1c{left:270.250500px;}
.x4e{left:273.168000px;}
.xe{left:297.036000px;}
.xa{left:303.022500px;}
.x14{left:309.198000px;}
.x1a{left:319.974000px;}
.x15{left:324.142500px;}
.x38{left:325.450500px;}
.xf{left:333.529500px;}
.x17{left:334.917000px;}
.x18{left:349.861500px;}
.x59{left:355.101000px;}
.x4f{left:357.891000px;}
.x50{left:3014.983185px;}
.x56{left:3028.121685px;}
.x52{left:3033.898185px;}
.x57{left:3044.870685px;}
.x53{left:3268.519185px;}
.x9{left:3303.061185px;}
.x12{left:3309.236685px;}
.x19{left:3320.012685px;}
.x13{left:3324.181185px;}
.x58{left:3355.139685px;}
@media print{
.v10{vertical-align:-22.474667pt;}
.v3{vertical-align:-21.349333pt;}
.v2{vertical-align:-16.037333pt;}
.v8{vertical-align:-13.285333pt;}
.va{vertical-align:-11.456000pt;}
.v7{vertical-align:-7.968000pt;}
.v4{vertical-align:-6.640000pt;}
.v9{vertical-align:-5.312000pt;}
.v1{vertical-align:-4.325333pt;}
.ve{vertical-align:-3.188010pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:8.086143pt;}
.vb{vertical-align:11.946667pt;}
.v5{vertical-align:15.002667pt;}
.v6{vertical-align:16.037333pt;}
.vf{vertical-align:19.285333pt;}
.vc{vertical-align:47.354667pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000055pt;}
.lsb{letter-spacing:0.000267pt;}
.ls2c{letter-spacing:0.000479pt;}
.ls17{letter-spacing:0.001518pt;}
.ls2d{letter-spacing:0.001799pt;}
.ls10{letter-spacing:0.001855pt;}
.ls6{letter-spacing:0.002104pt;}
.ls31{letter-spacing:0.002616pt;}
.ls35{letter-spacing:0.002717pt;}
.ls12{letter-spacing:0.003176pt;}
.ls1c{letter-spacing:0.003733pt;}
.ls16{letter-spacing:0.004212pt;}
.lsa{letter-spacing:0.004619pt;}
.ls2a{letter-spacing:0.004706pt;}
.ls22{letter-spacing:0.005116pt;}
.ls2b{letter-spacing:0.005388pt;}
.ls27{letter-spacing:0.185056pt;}
.ls29{letter-spacing:0.186878pt;}
.ls25{letter-spacing:0.190673pt;}
.ls1f{letter-spacing:0.201163pt;}
.ls21{letter-spacing:0.203144pt;}
.ls1d{letter-spacing:0.207269pt;}
.ls26{letter-spacing:0.529847pt;}
.ls28{letter-spacing:0.534470pt;}
.ls1e{letter-spacing:0.575964pt;}
.ls20{letter-spacing:0.580989pt;}
.ls11{letter-spacing:2.652911pt;}
.ls4{letter-spacing:2.654545pt;}
.ls30{letter-spacing:2.655040pt;}
.ls2f{letter-spacing:2.655209pt;}
.ls7{letter-spacing:2.656473pt;}
.ls8{letter-spacing:2.656594pt;}
.ls23{letter-spacing:5.315599pt;}
.lsc{letter-spacing:5.315879pt;}
.ls3{letter-spacing:7.252212pt;}
.ls2{letter-spacing:7.257545pt;}
.ls24{letter-spacing:7.525063pt;}
.lsd{letter-spacing:8.855412pt;}
.ls1a{letter-spacing:11.806400pt;}
.ls1b{letter-spacing:11.808479pt;}
.ls15{letter-spacing:14.757812pt;}
.ls34{letter-spacing:15.053383pt;}
.ls9{letter-spacing:15.056125pt;}
.ls18{letter-spacing:15.831753pt;}
.lsf{letter-spacing:17.714079pt;}
.ls2e{letter-spacing:18.483879pt;}
.ls32{letter-spacing:20.367209pt;}
.ls13{letter-spacing:21.694545pt;}
.ls19{letter-spacing:23.022545pt;}
.ls5{letter-spacing:26.562591pt;}
.ls33{letter-spacing:26.566413pt;}
.ls14{letter-spacing:26.569067pt;}
.ls1{letter-spacing:43.252374pt;}
.ws17{word-spacing:-34.611401pt;}
.ws20{word-spacing:-12.693681pt;}
.wsf{word-spacing:-9.428578pt;}
.ws2d{word-spacing:-0.063761pt;}
.ws12{word-spacing:-0.053134pt;}
.wsa{word-spacing:-0.042507pt;}
.ws26{word-spacing:-0.042505pt;}
.ws7{word-spacing:-0.037194pt;}
.wsc{word-spacing:-0.031881pt;}
.ws25{word-spacing:-0.031879pt;}
.ws6{word-spacing:-0.026567pt;}
.ws24{word-spacing:-0.005116pt;}
.ws29{word-spacing:-0.004706pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:2.669977pt;}
.ws22{word-spacing:3.366021pt;}
.ws2{word-spacing:3.737957pt;}
.ws2a{word-spacing:3.775150pt;}
.ws2e{word-spacing:4.144452pt;}
.wsb{word-spacing:4.259763pt;}
.ws27{word-spacing:4.271940pt;}
.ws9{word-spacing:4.271974pt;}
.wse{word-spacing:4.281850pt;}
.ws8{word-spacing:4.314481pt;}
.ws16{word-spacing:4.415424pt;}
.ws1d{word-spacing:4.521692pt;}
.ws21{word-spacing:4.619489pt;}
.ws13{word-spacing:4.638249pt;}
.ws14{word-spacing:4.667310pt;}
.ws1{word-spacing:4.999897pt;}
.ws2b{word-spacing:5.013676pt;}
.ws4{word-spacing:5.053031pt;}
.ws1a{word-spacing:9.295616pt;}
.ws10{word-spacing:9.885190pt;}
.ws1b{word-spacing:15.005042pt;}
.wsd{word-spacing:15.014851pt;}
.ws19{word-spacing:17.374066pt;}
.ws18{word-spacing:17.379032pt;}
.ws1f{word-spacing:17.650373pt;}
.ws1e{word-spacing:19.446995pt;}
.ws1c{word-spacing:20.328770pt;}
.ws11{word-spacing:20.722347pt;}
.ws15{word-spacing:20.864036pt;}
.ws28{word-spacing:23.857625pt;}
.ws0{word-spacing:24.866747pt;}
.ws23{word-spacing:25.934159pt;}
.ws2c{word-spacing:495.969708pt;}
._e{margin-left:-25.935695pt;}
._11{margin-left:-21.844986pt;}
._13{margin-left:-4.410111pt;}
._1{margin-left:-3.273037pt;}
._0{margin-left:-2.065853pt;}
._2{margin-left:-1.115808pt;}
._3{width:1.115808pt;}
._8{width:2.012719pt;}
._a{width:3.297246pt;}
._7{width:4.702347pt;}
._16{width:15.976334pt;}
._9{width:17.592573pt;}
._4{width:18.835956pt;}
._b{width:20.159039pt;}
._15{width:21.050710pt;}
._f{width:23.644571pt;}
._c{width:28.080368pt;}
._d{width:33.283184pt;}
._12{width:165.379160pt;}
._6{width:179.486202pt;}
._14{width:473.408453pt;}
._10{width:537.837157pt;}
._5{width:978.257166pt;}
.fs10{font-size:13.602176pt;}
.fs9{font-size:14.786091pt;}
.fs11{font-size:19.431680pt;}
.fsa{font-size:21.122987pt;}
.fsf{font-size:24.289600pt;}
.fs8{font-size:26.403733pt;}
.fsd{font-size:26.565537pt;}
.fs3{font-size:26.566933pt;}
.fsc{font-size:31.878858pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fsb{font-size:42.504966pt;}
.fse{font-size:42.506869pt;}
.fs4{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:0.485792pt;}
.y9d{bottom:0.528075pt;}
.yc2{bottom:1.700272pt;}
.y9c{bottom:1.848261pt;}
.ydf{bottom:2.914752pt;}
.y8{bottom:2.952000pt;}
.yc5{bottom:3.521992pt;}
.y9f{bottom:3.828541pt;}
.ybe{bottom:4.736472pt;}
.y98{bottom:5.148728pt;}
.yc6{bottom:5.950952pt;}
.ya0{bottom:6.468915pt;}
.ybc{bottom:7.165432pt;}
.ybb{bottom:7.211924pt;}
.y96{bottom:7.789101pt;}
.yc7{bottom:7.819164pt;}
.y95{bottom:7.839640pt;}
.yc4{bottom:8.379912pt;}
.ydd{bottom:8.426404pt;}
.ya1{bottom:8.499733pt;}
.ye1{bottom:9.033644pt;}
.y9e{bottom:9.109288pt;}
.ye0{bottom:9.594392pt;}
.yc8{bottom:10.808872pt;}
.ya2{bottom:11.749661pt;}
.ye2{bottom:12.023352pt;}
.y12f{bottom:20.024000pt;}
.yc0{bottom:20.524712pt;}
.ybf{bottom:21.739192pt;}
.y9a{bottom:22.311155pt;}
.yc1{bottom:22.953672pt;}
.y99{bottom:23.631341pt;}
.ybd{bottom:24.168152pt;}
.yc9{bottom:24.775392pt;}
.y9b{bottom:24.951528pt;}
.yde{bottom:25.382632pt;}
.ye3{bottom:25.989872pt;}
.y97{bottom:26.271715pt;}
.ya3{bottom:26.931808pt;}
.yec{bottom:31.769333pt;}
.y10a{bottom:31.864000pt;}
.yef{bottom:37.960000pt;}
.y67{bottom:38.136000pt;}
.y17{bottom:39.165333pt;}
.yca{bottom:39.839840pt;}
.y62{bottom:42.290667pt;}
.y109{bottom:42.490667pt;}
.ya4{bottom:43.307445pt;}
.ye4{bottom:44.562484pt;}
.y12e{bottom:45.282667pt;}
.y113{bottom:46.605333pt;}
.y42{bottom:47.080000pt;}
.y1f{bottom:47.128000pt;}
.yeb{bottom:47.709333pt;}
.y16{bottom:49.792000pt;}
.ycf{bottom:50.082306pt;}
.y66{bottom:50.754667pt;}
.y86{bottom:51.365333pt;}
.ycb{bottom:51.491100pt;}
.yee{bottom:52.572000pt;}
.y1e{bottom:53.745333pt;}
.ye5{bottom:53.961167pt;}
.y85{bottom:54.138667pt;}
.y78{bottom:54.438667pt;}
.ya9{bottom:54.441401pt;}
.y88{bottom:55.269333pt;}
.ya5{bottom:55.972814pt;}
.y12d{bottom:57.902667pt;}
.y61{bottom:58.230667pt;}
.y108{bottom:58.736000pt;}
.y112{bottom:62.545333pt;}
.y41{bottom:63.020000pt;}
.ycc{bottom:63.142359pt;}
.ye6{bottom:63.359849pt;}
.y65{bottom:63.374667pt;}
.y1d{bottom:64.373333pt;}
.yed{bottom:67.182667pt;}
.ya6{bottom:68.638183pt;}
.y84{bottom:70.080000pt;}
.y77{bottom:70.378667pt;}
.y107{bottom:71.356000pt;}
.ye7{bottom:72.758532pt;}
.y60{bottom:74.172000pt;}
.ycd{bottom:74.793619pt;}
.y1c{bottom:75.000000pt;}
.y12c{bottom:75.834667pt;}
.yd0{bottom:76.034667pt;}
.y111{bottom:78.485333pt;}
.y40{bottom:78.960000pt;}
.y44{bottom:80.930667pt;}
.ya7{bottom:81.303553pt;}
.ye8{bottom:82.157215pt;}
.y106{bottom:83.974667pt;}
.y83{bottom:86.020000pt;}
.y76{bottom:86.318667pt;}
.y15{bottom:86.416000pt;}
.yce{bottom:86.444879pt;}
.yae{bottom:88.002667pt;}
.y2e{bottom:89.974667pt;}
.y64{bottom:91.364000pt;}
.y5f{bottom:91.772000pt;}
.y12b{bottom:93.768000pt;}
.ya8{bottom:93.968922pt;}
.y2f{bottom:93.984000pt;}
.y110{bottom:94.425333pt;}
.y43{bottom:95.542667pt;}
.yf8{bottom:95.686667pt;}
.y105{bottom:96.594667pt;}
.yf{bottom:98.105333pt;}
.y2b{bottom:98.877333pt;}
.yb5{bottom:100.179384pt;}
.y2d{bottom:100.601333pt;}
.y82{bottom:101.960000pt;}
.yd7{bottom:104.902027pt;}
.y12a{bottom:106.386667pt;}
.ydc{bottom:108.491017pt;}
.y8f{bottom:108.898859pt;}
.y104{bottom:109.213333pt;}
.y5e{bottom:110.037333pt;}
.y10f{bottom:110.366667pt;}
.yba{bottom:110.421850pt;}
.y2c{bottom:111.228000pt;}
.yf7{bottom:111.626667pt;}
.yb6{bottom:111.830643pt;}
.y2a{bottom:113.157333pt;}
.yd8{bottom:114.300710pt;}
.y14{bottom:117.070667pt;}
.y72{bottom:117.481333pt;}
.y81{bottom:117.900000pt;}
.y3e{bottom:118.624000pt;}
.y94{bottom:120.032816pt;}
.y7{bottom:121.392000pt;}
.y90{bottom:121.564228pt;}
.y103{bottom:121.833333pt;}
.yad{bottom:122.453333pt;}
.y3f{bottom:122.633333pt;}
.yb7{bottom:123.481903pt;}
.yd9{bottom:123.699393pt;}
.y129{bottom:124.420000pt;}
.y5d{bottom:125.977333pt;}
.y3b{bottom:127.526667pt;}
.yf6{bottom:127.566667pt;}
.ye{bottom:128.760000pt;}
.y3d{bottom:129.250667pt;}
.y29{bottom:129.429333pt;}
.yda{bottom:133.098076pt;}
.y71{bottom:133.421333pt;}
.y91{bottom:134.229598pt;}
.y102{bottom:134.452000pt;}
.yb8{bottom:135.133163pt;}
.y3c{bottom:139.877333pt;}
.y3a{bottom:141.806667pt;}
.y28{bottom:142.049333pt;}
.ydb{bottom:142.496759pt;}
.yf5{bottom:143.506667pt;}
.y5c{bottom:143.577333pt;}
.y80{bottom:145.178667pt;}
.yb9{bottom:146.784422pt;}
.y92{bottom:146.894967pt;}
.y13{bottom:147.725333pt;}
.y121{bottom:150.832000pt;}
.y70{bottom:151.021333pt;}
.y27{bottom:154.669333pt;}
.y6{bottom:155.006667pt;}
.y39{bottom:158.078667pt;}
.yd{bottom:159.414667pt;}
.y93{bottom:159.560336pt;}
.yaf{bottom:160.518927pt;}
.y7f{bottom:161.118667pt;}
.y5b{bottom:161.842667pt;}
.y120{bottom:163.452000pt;}
.yd1{bottom:165.241571pt;}
.y5{bottom:165.633333pt;}
.yd6{bottom:168.830560pt;}
.y26{bottom:168.948000pt;}
.y6f{bottom:169.286667pt;}
.y38{bottom:170.698667pt;}
.yb4{bottom:170.761394pt;}
.yb0{bottom:172.170187pt;}
.y89{bottom:174.490273pt;}
.yd2{bottom:174.640254pt;}
.y11f{bottom:176.070667pt;}
.y4{bottom:176.260000pt;}
.y7e{bottom:177.060000pt;}
.y5a{bottom:177.782667pt;}
.yf4{bottom:178.345333pt;}
.y12{bottom:178.378667pt;}
.y37{bottom:183.318667pt;}
.yb1{bottom:183.821446pt;}
.yd3{bottom:184.038937pt;}
.y25{bottom:185.221333pt;}
.y6e{bottom:185.226667pt;}
.y8e{bottom:185.624230pt;}
.yac{bottom:186.376000pt;}
.y8a{bottom:187.155643pt;}
.yc{bottom:190.069333pt;}
.y7d{bottom:193.000000pt;}
.yd4{bottom:193.437619pt;}
.y59{bottom:193.722667pt;}
.y11e{bottom:194.004000pt;}
.yf3{bottom:194.285333pt;}
.yb2{bottom:195.472706pt;}
.y36{bottom:197.597333pt;}
.y24{bottom:197.840000pt;}
.y8b{bottom:199.821012pt;}
.y6d{bottom:201.166667pt;}
.yd5{bottom:202.836302pt;}
.y3{bottom:205.300000pt;}
.y11d{bottom:206.622667pt;}
.yb3{bottom:207.123966pt;}
.y7c{bottom:208.940000pt;}
.y11{bottom:209.033333pt;}
.yf2{bottom:210.225333pt;}
.y58{bottom:211.324000pt;}
.y23{bottom:212.120000pt;}
.y8c{bottom:212.486381pt;}
.y35{bottom:213.870667pt;}
.y6c{bottom:217.108000pt;}
.yb{bottom:220.722667pt;}
.y11c{bottom:224.556000pt;}
.y8d{bottom:225.151751pt;}
.yf1{bottom:226.165333pt;}
.y34{bottom:226.489333pt;}
.y22{bottom:227.064000pt;}
.y57{bottom:229.588000pt;}
.y6b{bottom:234.708000pt;}
.y11b{bottom:237.174667pt;}
.y10e{bottom:239.190667pt;}
.y21{bottom:239.682667pt;}
.y10{bottom:239.688000pt;}
.y33{bottom:240.769333pt;}
.yf0{bottom:242.105333pt;}
.y56{bottom:245.529333pt;}
.y7b{bottom:248.513333pt;}
.y11a{bottom:249.794667pt;}
.ya{bottom:251.377333pt;}
.y20{bottom:252.302667pt;}
.y6a{bottom:254.301333pt;}
.y10d{bottom:255.132000pt;}
.y32{bottom:255.713333pt;}
.y2{bottom:256.386667pt;}
.y55{bottom:261.469333pt;}
.y7a{bottom:264.453333pt;}
.yab{bottom:267.236000pt;}
.y119{bottom:267.726667pt;}
.y31{bottom:268.332000pt;}
.y69{bottom:270.241333pt;}
.y10c{bottom:271.072000pt;}
.y54{bottom:279.069333pt;}
.y1{bottom:280.297333pt;}
.y118{bottom:280.346667pt;}
.y79{bottom:280.394667pt;}
.y30{bottom:280.952000pt;}
.y68{bottom:286.181333pt;}
.y10b{bottom:287.012000pt;}
.y117{bottom:298.278667pt;}
.y63{bottom:302.385333pt;}
.y87{bottom:308.637333pt;}
.y116{bottom:310.898667pt;}
.y115{bottom:323.517333pt;}
.yaa{bottom:334.364000pt;}
.y9{bottom:336.086667pt;}
.y114{bottom:342.658667pt;}
.y128{bottom:2686.725053pt;}
.yea{bottom:2698.470387pt;}
.y101{bottom:2698.565053pt;}
.y53{bottom:2708.991720pt;}
.y100{bottom:2709.191720pt;}
.y127{bottom:2711.983720pt;}
.y1b{bottom:2713.829053pt;}
.ye9{bottom:2714.410387pt;}
.y1a{bottom:2720.446387pt;}
.y75{bottom:2721.139720pt;}
.y126{bottom:2724.603720pt;}
.y52{bottom:2724.931720pt;}
.yff{bottom:2725.437053pt;}
.y19{bottom:2731.074387pt;}
.y74{bottom:2737.079720pt;}
.yfe{bottom:2738.057053pt;}
.y51{bottom:2740.873053pt;}
.y18{bottom:2741.701053pt;}
.y125{bottom:2742.535720pt;}
.yfd{bottom:2750.675720pt;}
.y73{bottom:2753.019720pt;}
.y50{bottom:2758.473053pt;}
.y124{bottom:2760.469053pt;}
.yfc{bottom:2763.295720pt;}
.y123{bottom:2773.087720pt;}
.yfb{bottom:2775.914387pt;}
.y4f{bottom:2776.738387pt;}
.yfa{bottom:2788.534387pt;}
.y122{bottom:2791.121053pt;}
.y4e{bottom:2792.678387pt;}
.yf9{bottom:2801.153053pt;}
.y4d{bottom:2810.278387pt;}
.y4c{bottom:2828.543720pt;}
.y4b{bottom:2844.483720pt;}
.y4a{bottom:2860.423720pt;}
.y49{bottom:2878.025053pt;}
.y48{bottom:2896.289053pt;}
.y47{bottom:2912.230387pt;}
.y46{bottom:2928.170387pt;}
.y45{bottom:2945.770387pt;}
.h1c{height:12.636422pt;}
.h15{height:13.736278pt;}
.h1e{height:18.052031pt;}
.hd{height:18.145215pt;}
.h17{height:19.623255pt;}
.h5{height:19.925200pt;}
.h1d{height:20.075112pt;}
.h16{height:21.822422pt;}
.h1b{height:22.565038pt;}
.h14{height:24.529068pt;}
.h9{height:25.240400pt;}
.h4{height:27.895200pt;}
.h18{height:29.923496pt;}
.h11{height:31.871867pt;}
.h19{height:31.880152pt;}
.h8{height:31.880400pt;}
.h10{height:33.793139pt;}
.hc{height:34.182549pt;}
.h7{height:35.519733pt;}
.h6{height:35.525067pt;}
.hf{height:35.865600pt;}
.h22{height:37.122423pt;}
.hb{height:37.127757pt;}
.ha{height:38.913067pt;}
.h3{height:39.850400pt;}
.h1f{height:45.432434pt;}
.h21{height:47.175200pt;}
.h20{height:47.180533pt;}
.he{height:47.820800pt;}
.h2{height:57.384800pt;}
.h12{height:83.220267pt;}
.h1a{height:218.606400pt;}
.h13{height:237.633600pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w3{width:174.885120pt;}
.w2{width:190.106880pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x20{left:9.162921pt;}
.x7{left:11.338667pt;}
.x10{left:13.284000pt;}
.x11{left:16.476000pt;}
.x1f{left:18.705911pt;}
.x1e{left:22.809333pt;}
.x1b{left:24.097333pt;}
.xb{left:25.990667pt;}
.x51{left:27.596000pt;}
.x54{left:30.097333pt;}
.x1d{left:33.565333pt;}
.x6{left:35.741333pt;}
.xc{left:40.270667pt;}
.x1{left:41.493333pt;}
.x3b{left:42.906272pt;}
.x21{left:46.640775pt;}
.x3c{left:47.886571pt;}
.xd{left:52.557333pt;}
.x3d{left:54.726543pt;}
.x8{left:59.489333pt;}
.x22{left:64.853105pt;}
.x23{left:70.265851pt;}
.x3e{left:74.476953pt;}
.x24{left:75.635279pt;}
.x3f{left:79.580598pt;}
.x25{left:80.959325pt;}
.x40{left:84.437552pt;}
.x26{left:86.507184pt;}
.x16{left:89.080000pt;}
.x27{left:91.786880pt;}
.x41{left:94.568936pt;}
.x28{left:96.963436pt;}
.x42{left:99.460996pt;}
.x29{left:102.800086pt;}
.x43{left:104.140521pt;}
.x2a{left:108.117944pt;}
.x44{left:109.509834pt;}
.x2b{left:113.204769pt;}
.x45{left:114.101120pt;}
.x2c{left:119.041419pt;}
.x2{left:121.249333pt;}
.x2d{left:124.032324pt;}
.x46{left:127.571358pt;}
.x2e{left:129.868974pt;}
.x47{left:134.022316pt;}
.x2f{left:135.186832pt;}
.x48{left:137.531956pt;}
.x30{left:138.674993pt;}
.x49{left:143.982915pt;}
.x31{left:145.687434pt;}
.x4a{left:147.492554pt;}
.x32{left:149.502548pt;}
.x4b{left:153.943513pt;}
.x33{left:156.514989pt;}
.x4c{left:159.224586pt;}
.x34{left:160.330103pt;}
.x4d{left:164.245684pt;}
.x35{left:167.342544pt;}
.x36{left:173.083274pt;}
.x37{left:178.541402pt;}
.x3{left:197.066667pt;}
.x4{left:198.866667pt;}
.x5{left:210.160000pt;}
.x39{left:217.542667pt;}
.x3a{left:225.953333pt;}
.x55{left:238.649333pt;}
.x1c{left:240.222667pt;}
.x4e{left:242.816000pt;}
.xe{left:264.032000pt;}
.xa{left:269.353333pt;}
.x14{left:274.842667pt;}
.x1a{left:284.421333pt;}
.x15{left:288.126667pt;}
.x38{left:289.289333pt;}
.xf{left:296.470667pt;}
.x17{left:297.704000pt;}
.x18{left:310.988000pt;}
.x59{left:315.645333pt;}
.x4f{left:318.125333pt;}
.x50{left:2679.985053pt;}
.x56{left:2691.663720pt;}
.x52{left:2696.798387pt;}
.x57{left:2706.551720pt;}
.x53{left:2905.350387pt;}
.x9{left:2936.054387pt;}
.x12{left:2941.543720pt;}
.x19{left:2951.122387pt;}
.x13{left:2954.827720pt;}
.x58{left:2982.346387pt;}
}




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