
    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_04e82e83a19c3a1a85208596.woff')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_3720028dd098997e18d29a43.woff')format("woff");}.ff2{font-family:ff2;line-height:0.963667;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_001123ea8baa91aeefdfc021.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948500;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_570f500940fb8d9f0574a6d2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_6b7b8c3a92535076542aaeea.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b5b433f1e44b2c705d1a0924.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_a555aaccbddbbd089d857ef8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.482000;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_e534aa15105f79f949d2b128.woff')format("woff");}.ff8{font-family:ff8;line-height:0.924000;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_1b1901fe86bf5324a21162bf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.949000;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_f293a1b0d122696cdc377be2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.922500;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_e08a3044a64bab67a4e76921.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b3b598fc2cd2956013a14c95.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_36f7d90ca7b29a8bcb152661.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-74.466000px;}
.v5{vertical-align:-31.806000px;}
.v4{vertical-align:-30.780000px;}
.v7{vertical-align:-24.036000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:32.238000px;}
.v3{vertical-align:74.472000px;}
.v1{vertical-align:107.268000px;}
.ls13{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.001803px;}
.ls8{letter-spacing:0.002295px;}
.ls7{letter-spacing:0.006917px;}
.ls6{letter-spacing:0.006962px;}
.ls12{letter-spacing:2.686938px;}
.ls3{letter-spacing:2.986121px;}
.ls2{letter-spacing:2.989255px;}
.ls4{letter-spacing:2.990716px;}
.ls5{letter-spacing:15.852721px;}
.lsa{letter-spacing:45.599273px;}
.lsd{letter-spacing:45.600898px;}
.ls9{letter-spacing:45.606917px;}
.lse{letter-spacing:45.609482px;}
.lsc{letter-spacing:45.615482px;}
.ls10{letter-spacing:49.374898px;}
.ls11{letter-spacing:49.381475px;}
.lsf{letter-spacing:52.364562px;}
.ls1{letter-spacing:78.366264px;}
.ls0{letter-spacing:373.957185px;}
.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;}
}
.ws1{word-spacing:-401.987449px;}
.ws0{word-spacing:-388.196266px;}
.ws8{word-spacing:-246.336300px;}
.ws5{word-spacing:-227.014272px;}
.ws4{word-spacing:-220.218326px;}
.ws3{word-spacing:-220.217986px;}
.ws2{word-spacing:-220.215668px;}
.ws40{word-spacing:-205.210500px;}
.ws3c{word-spacing:-202.242102px;}
.ws1a{word-spacing:-187.215588px;}
.ws2e{word-spacing:-163.347558px;}
.ws24{word-spacing:-163.142348px;}
.ws23{word-spacing:-162.424111px;}
.ws25{word-spacing:-160.064190px;}
.ws75{word-spacing:-159.038138px;}
.ws7{word-spacing:-158.422506px;}
.ws42{word-spacing:-157.806875px;}
.ws2a{word-spacing:-154.523614px;}
.ws6{word-spacing:-152.881822px;}
.ws27{word-spacing:-152.676612px;}
.ws43{word-spacing:-133.579673px;}
.ws28{word-spacing:-123.023695px;}
.ws2f{word-spacing:-122.408063px;}
.ws60{word-spacing:-122.202853px;}
.ws38{word-spacing:-120.971590px;}
.ws3e{word-spacing:-120.561169px;}
.wsc{word-spacing:-118.098643px;}
.ws2b{word-spacing:-117.277801px;}
.ws53{word-spacing:-116.867380px;}
.ws6c{word-spacing:-115.477974px;}
.ws36{word-spacing:-113.696284px;}
.ws62{word-spacing:-113.378801px;}
.ws22{word-spacing:-113.173591px;}
.ws20{word-spacing:-113.051882px;}
.ws21{word-spacing:-113.048753px;}
.ws68{word-spacing:-112.911797px;}
.ws9{word-spacing:-112.763170px;}
.ws3f{word-spacing:-112.557959px;}
.ws63{word-spacing:-111.942328px;}
.ws26{word-spacing:-111.737117px;}
.ws5a{word-spacing:-110.300644px;}
.ws2d{word-spacing:-109.890223px;}
.ws72{word-spacing:-109.775358px;}
.ws61{word-spacing:-109.479802px;}
.ws1b{word-spacing:-108.453749px;}
.ws19{word-spacing:-108.043328px;}
.wsa{word-spacing:-107.632907px;}
.wsd{word-spacing:-106.812065px;}
.ws69{word-spacing:-106.638919px;}
.ws41{word-spacing:-106.606855px;}
.ws31{word-spacing:-106.196434px;}
.ws52{word-spacing:-105.991223px;}
.ws30{word-spacing:-105.580802px;}
.ws2c{word-spacing:-104.965171px;}
.ws50{word-spacing:-103.323487px;}
.ws5e{word-spacing:-102.913066px;}
.ws4f{word-spacing:-102.502645px;}
.ws1c{word-spacing:-102.092224px;}
.ws39{word-spacing:-101.681803px;}
.ws5f{word-spacing:-101.271382px;}
.ws71{word-spacing:-100.793738px;}
.ws14{word-spacing:-100.245329px;}
.ws54{word-spacing:-99.629698px;}
.ws5d{word-spacing:-98.398435px;}
.wsb{word-spacing:-97.988014px;}
.ws5c{word-spacing:-96.551540px;}
.ws48{word-spacing:-96.346330px;}
.ws10{word-spacing:-95.115067px;}
.ws12{word-spacing:-94.704646px;}
.ws29{word-spacing:-93.678593px;}
.ws56{word-spacing:-93.613673px;}
.ws5b{word-spacing:-91.831699px;}
.ws15{word-spacing:-91.010857px;}
.ws6f{word-spacing:-90.956725px;}
.wsf{word-spacing:-90.805646px;}
.ws47{word-spacing:-90.695213px;}
.ws57{word-spacing:-90.695123px;}
.ws13{word-spacing:-90.395225px;}
.ws18{word-spacing:-90.190015px;}
.ws3a{word-spacing:-89.779594px;}
.ws3b{word-spacing:-89.574383px;}
.ws51{word-spacing:-88.137910px;}
.ws64{word-spacing:-85.675384px;}
.ws55{word-spacing:-83.828489px;}
.ws11{word-spacing:-83.623279px;}
.ws6b{word-spacing:-83.614607px;}
.ws59{word-spacing:-81.365963px;}
.ws67{word-spacing:-80.763299px;}
.ws17{word-spacing:-80.134700px;}
.ws3d{word-spacing:-79.519069px;}
.ws6d{word-spacing:-77.626860px;}
.ws16{word-spacing:-77.056543px;}
.ws37{word-spacing:-75.620069px;}
.ws66{word-spacing:-74.205291px;}
.wse{word-spacing:-73.362754px;}
.ws32{word-spacing:-72.094853px;}
.ws65{word-spacing:-70.926286px;}
.ws70{word-spacing:-67.932413px;}
.ws34{word-spacing:-65.105526px;}
.ws35{word-spacing:-65.104955px;}
.ws73{word-spacing:-64.368278px;}
.ws6e{word-spacing:-61.802101px;}
.ws6a{word-spacing:-58.523097px;}
.ws45{word-spacing:-31.181033px;}
.ws33{word-spacing:-0.205211px;}
.ws1e{word-spacing:-0.143647px;}
.ws76{word-spacing:0.000000px;}
.ws46{word-spacing:26.376787px;}
.ws1f{word-spacing:33.859733px;}
.ws4c{word-spacing:37.665225px;}
.ws74{word-spacing:55.163327px;}
.ws1d{word-spacing:56.638098px;}
.ws49{word-spacing:64.364625px;}
.ws4d{word-spacing:64.852650px;}
.ws58{word-spacing:85.890878px;}
.ws4a{word-spacing:91.064025px;}
.ws4b{word-spacing:117.763425px;}
.ws4e{word-spacing:118.656330px;}
.ws44{word-spacing:133.344877px;}
._6{margin-left:-34.733350px;}
._1d{margin-left:-25.446102px;}
._3a{margin-left:-24.223806px;}
._f{margin-left:-22.983576px;}
._2{margin-left:-21.963736px;}
._55{margin-left:-19.512931px;}
._31{margin-left:-17.697712px;}
._13{margin-left:-15.390788px;}
._14{margin-left:-13.275980px;}
._4{margin-left:-12.258829px;}
._30{margin-left:-10.592461px;}
._3{margin-left:-9.194122px;}
._2b{margin-left:-7.610722px;}
._1a{margin-left:-6.361590px;}
._a{margin-left:-5.346649px;}
._b{margin-left:-4.164283px;}
._0{margin-left:-3.064707px;}
._8{margin-left:-2.043138px;}
._1{margin-left:-1.021569px;}
._5c{width:1.676004px;}
._3c{width:3.115729px;}
._69{width:20.835174px;}
._68{width:25.281298px;}
._66{width:28.579777px;}
._67{width:30.598868px;}
._6a{width:33.604133px;}
._35{width:34.867851px;}
._3e{width:35.916321px;}
._1b{width:37.145310px;}
._1c{width:38.155703px;}
._19{width:40.007081px;}
._d{width:41.822592px;}
._37{width:42.875544px;}
._e{width:45.538797px;}
._11{width:46.555883px;}
._10{width:48.005807px;}
._3b{width:49.241553px;}
._15{width:50.272089px;}
._56{width:51.302689px;}
._28{width:52.315227px;}
._32{width:54.020098px;}
._16{width:55.812773px;}
._33{width:57.298079px;}
._39{width:58.663303px;}
._18{width:60.117710px;}
._34{width:61.495899px;}
._25{width:62.776479px;}
._21{width:64.221920px;}
._26{width:65.254136px;}
._65{width:66.352032px;}
._20{width:67.476707px;}
._22{width:69.555039px;}
._2f{width:71.199077px;}
._60{width:72.381222px;}
._23{width:74.072024px;}
._c{width:75.378491px;}
._27{width:76.556967px;}
._24{width:77.765813px;}
._2a{width:78.860970px;}
._38{width:80.027612px;}
._29{width:81.713645px;}
._1e{width:84.127338px;}
._1f{width:86.170476px;}
._2c{width:88.650936px;}
._2d{width:89.668086px;}
._57{width:91.064025px;}
._17{width:94.800494px;}
._45{width:97.588034px;}
._5{width:105.221619px;}
._36{width:108.349078px;}
._7{width:110.840250px;}
._44{width:112.503956px;}
._2e{width:117.808761px;}
._9{width:122.588294px;}
._5d{width:124.893701px;}
._3d{width:126.596945px;}
._5e{width:143.508906px;}
._41{width:144.938745px;}
._43{width:150.226034px;}
._58{width:184.511925px;}
._5a{width:185.910930px;}
._54{width:188.800898px;}
._4e{width:190.757730px;}
._59{width:224.561025px;}
._5b{width:226.263690px;}
._42{width:231.083321px;}
._51{width:248.315910px;}
._4f{width:260.109235px;}
._50{width:293.771910px;}
._53{width:295.768988px;}
._4a{width:307.823078px;}
._63{width:315.317078px;}
._62{width:341.174115px;}
._52{width:355.282898px;}
._46{width:367.337910px;}
._4d{width:414.797730px;}
._47{width:426.845078px;}
._4c{width:458.297910px;}
._12{width:462.938835px;}
._61{width:472.353037px;}
._48{width:474.305078px;}
._4b{width:484.154115px;}
._49{width:591.374115px;}
._40{width:863.193189px;}
._5f{width:929.296346px;}
._3f{width:1048.318346px;}
._64{width:2076.285286px;}
._6b{width:7384.841852px;}
.fc1{color:rgb(16,38,59);}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:96.117840px;}
.fsc{font-size:96.846624px;}
.fs7{font-size:106.797600px;}
.fsb{font-size:107.607360px;}
.fs6{font-size:117.477360px;}
.fsa{font-size:118.368096px;}
.fs9{font-size:122.054400px;}
.fsd{font-size:122.979840px;}
.fse{font-size:142.565400px;}
.fs3{font-size:143.646600px;}
.fs4{font-size:205.210500px;}
.fs2{font-size:206.913120px;}
.fs5{font-size:246.336300px;}
.fs1{font-size:295.591500px;}
.fs0{font-size:510.784560px;}
.y0{bottom:0.000000px;}
.y71{bottom:8.301811px;}
.y89{bottom:8.364757px;}
.y70{bottom:43.583219px;}
.y88{bottom:43.913676px;}
.yc8{bottom:47.737500px;}
.y73{bottom:68.947626px;}
.y8b{bottom:69.470400px;}
.y6f{bottom:87.978875px;}
.y87{bottom:88.645948px;}
.y6e{bottom:127.948532px;}
.y86{bottom:128.918663px;}
.yc7{bottom:151.569000px;}
.y74{bottom:164.874762px;}
.y8c{bottom:166.124874px;}
.y6d{bottom:167.918160px;}
.y85{bottom:169.191348px;}
.y6c{bottom:207.887817px;}
.y84{bottom:209.464063px;}
.y79{bottom:225.330060px;}
.y91{bottom:227.038556px;}
.y72{bottom:234.388784px;}
.y8a{bottom:236.165965px;}
.y6b{bottom:247.857445px;}
.y83{bottom:249.736748px;}
.y75{bottom:260.801898px;}
.y8d{bottom:262.779348px;}
.y6a{bottom:287.827073px;}
.y82{bottom:290.009433px;}
.y5f{bottom:323.176500px;}
.y69{bottom:327.796730px;}
.y81{bottom:330.282148px;}
.y76{bottom:356.729034px;}
.y8e{bottom:359.433822px;}
.y68{bottom:367.766357px;}
.y80{bottom:370.554833px;}
.y5e{bottom:385.045500px;}
.y67{bottom:407.736000px;}
.y7f{bottom:410.827533px;}
.y66{bottom:447.705628px;}
.y7e{bottom:451.100218px;}
.y77{bottom:452.656155px;}
.y8f{bottom:456.088281px;}
.y5d{bottom:469.920000px;}
.yc6{bottom:486.583500px;}
.y65{bottom:487.675270px;}
.y7d{bottom:491.372918px;}
.y64{bottom:527.644905px;}
.y7c{bottom:531.645610px;}
.y5c{bottom:531.787500px;}
.yc5{bottom:531.954000px;}
.y78{bottom:548.583276px;}
.y90{bottom:552.742740px;}
.y63{bottom:567.511242px;}
.y7b{bottom:571.814222px;}
.yc4{bottom:577.323000px;}
.y5b{bottom:593.655000px;}
.yc3{bottom:622.693500px;}
.y5a{bottom:655.524000px;}
.yc2{bottom:668.062500px;}
.yc1{bottom:713.433000px;}
.y59{bottom:717.391500px;}
.yc0{bottom:758.802000px;}
.y58{bottom:779.259000px;}
.ybf{bottom:804.172500px;}
.y57{bottom:841.126500px;}
.ybe{bottom:849.543000px;}
.ybd{bottom:894.912000px;}
.y56{bottom:902.995500px;}
.ybc{bottom:940.282500px;}
.y55{bottom:964.863000px;}
.y54{bottom:1026.730500px;}
.ybb{bottom:1053.606000px;}
.y53{bottom:1088.599500px;}
.y52{bottom:1151.065500px;}
.yba{bottom:1191.967500px;}
.y51{bottom:1212.933000px;}
.yb9{bottom:1253.835000px;}
.y50{bottom:1278.271500px;}
.yb8{bottom:1315.702500px;}
.y4f{bottom:1344.622500px;}
.yb7{bottom:1377.571500px;}
.yb6{bottom:1439.439000px;}
.y4e{bottom:1493.152500px;}
.yb5{bottom:1526.830500px;}
.yb4{bottom:1588.698000px;}
.yb3{bottom:1650.565500px;}
.yb2{bottom:1712.434500px;}
.yb1{bottom:1774.302000px;}
.yb0{bottom:1836.169500px;}
.yaf{bottom:1923.561000px;}
.yae{bottom:1985.428500px;}
.yad{bottom:2047.297500px;}
.y4d{bottom:2092.422000px;}
.yac{bottom:2109.165000px;}
.y4c{bottom:2154.291000px;}
.yab{bottom:2196.556500px;}
.y4b{bottom:2216.158500px;}
.yaa{bottom:2258.424000px;}
.y4a{bottom:2278.026000px;}
.y49{bottom:2339.895000px;}
.ya9{bottom:2370.514500px;}
.y48{bottom:2451.985500px;}
.ya8{bottom:2551.293000px;}
.y47{bottom:2590.345500px;}
.y46{bottom:2652.214500px;}
.y45{bottom:2714.082000px;}
.y44{bottom:2775.949500px;}
.y43{bottom:2837.818500px;}
.y42{bottom:2899.686000px;}
.ya7{bottom:3116.721000px;}
.y41{bottom:3413.475000px;}
.y40{bottom:3475.344000px;}
.y3f{bottom:3537.211500px;}
.y3e{bottom:3599.079000px;}
.ya6{bottom:3672.619500px;}
.y3d{bottom:3673.708500px;}
.y3c{bottom:3735.577500px;}
.ya5{bottom:3747.937500px;}
.ya4{bottom:3809.805000px;}
.ya3{bottom:3894.679500px;}
.y3b{bottom:3910.359000px;}
.ya2{bottom:3956.548500px;}
.y3a{bottom:3972.226500px;}
.ya1{bottom:4018.416000px;}
.y39{bottom:4034.095500px;}
.ya0{bottom:4080.882000px;}
.y38{bottom:4095.963000px;}
.y9f{bottom:4142.749500px;}
.y37{bottom:4157.830500px;}
.y36{bottom:4219.699500px;}
.y9e{bottom:4263.466500px;}
.y35{bottom:4281.567000px;}
.y9d{bottom:4325.335500px;}
.y34{bottom:4343.434500px;}
.y9c{bottom:4387.203000px;}
.y33{bottom:4405.303500px;}
.y9b{bottom:4449.070500px;}
.y9a{bottom:4515.421500px;}
.y32{bottom:4517.392500px;}
.y31{bottom:4672.171500px;}
.y99{bottom:4723.914000px;}
.y30{bottom:4734.039000px;}
.y2f{bottom:4795.906500px;}
.y2e{bottom:4857.775500px;}
.y2d{bottom:4932.405000px;}
.y2c{bottom:4994.272500px;}
.y2b{bottom:5111.670000px;}
.y2a{bottom:5216.994000px;}
.y29{bottom:5278.861500px;}
.y26{bottom:5339.247000px;}
.y28{bottom:5363.440500px;}
.y23{bottom:5398.632000px;}
.y98{bottom:5416.257000px;}
.y27{bottom:5433.337500px;}
.y25{bottom:5447.370000px;}
.y24{bottom:5462.760000px;}
.y97{bottom:5478.126000px;}
.y22{bottom:5519.880000px;}
.y96{bottom:5539.993500px;}
.y21{bottom:5581.747500px;}
.y95{bottom:5601.861000px;}
.y20{bottom:5643.615000px;}
.y94{bottom:5663.730000px;}
.y93{bottom:5725.597500px;}
.y1f{bottom:5755.705500px;}
.y92{bottom:5837.688000px;}
.y1e{bottom:5894.067000px;}
.y1d{bottom:5955.934500px;}
.y7a{bottom:5967.087000px;}
.y1c{bottom:6017.802000px;}
.y1b{bottom:6079.671000px;}
.y1a{bottom:6141.538500px;}
.y19{bottom:6228.930000px;}
.y18{bottom:6290.797500px;}
.y17{bottom:6352.665000px;}
.y16{bottom:6414.534000px;}
.y15{bottom:6476.401500px;}
.y14{bottom:6538.269000px;}
.y62{bottom:6573.868500px;}
.y13{bottom:6625.660500px;}
.y12{bottom:6687.528000px;}
.y11{bottom:6749.397000px;}
.y10{bottom:6811.264500px;}
.yf{bottom:6898.656000px;}
.ye{bottom:6960.523500px;}
.yd{bottom:7022.391000px;}
.yc{bottom:7084.260000px;}
.yb{bottom:7146.127500px;}
.y61{bottom:7185.223500px;}
.y60{bottom:7247.092500px;}
.ya{bottom:7258.218000px;}
.y9{bottom:7482.346500px;}
.y8{bottom:7544.214000px;}
.y7{bottom:7624.699500px;}
.y6{bottom:7686.567000px;}
.y5{bottom:7768.318500px;}
.y4{bottom:7861.120500px;}
.y3{bottom:7987.378500px;}
.y2{bottom:8146.173000px;}
.y1{bottom:8304.967500px;}
.ha{height:0.000000px;}
.h12{height:66.738071px;}
.h17{height:67.244091px;}
.h11{height:74.153412px;}
.h16{height:74.715657px;}
.h10{height:81.568753px;}
.h15{height:82.187223px;}
.h13{height:84.746756px;}
.h18{height:85.389323px;}
.h9{height:99.690740px;}
.h3{height:106.298484px;}
.hb{height:107.591303px;}
.h19{height:108.777400px;}
.hc{height:142.416087px;}
.h5{height:151.855770px;}
.hd{height:152.574007px;}
.h8{height:153.702665px;}
.h7{height:156.575612px;}
.he{height:157.293848px;}
.h1a{height:174.156740px;}
.h4{height:180.770484px;}
.h6{height:182.288862px;}
.h2{height:260.383709px;}
.h1{height:377.980574px;}
.hf{height:587.386800px;}
.h14{height:591.840480px;}
.h0{height:8503.936500px;}
.w3{width:757.094640px;}
.w2{width:757.118700px;}
.w1{width:3614.173012px;}
.w0{width:3614.173500px;}
.x0{left:0.000000px;}
.x25{left:19.875563px;}
.x24{left:32.271710px;}
.x23{left:45.621410px;}
.x20{left:79.508191px;}
.x1f{left:87.673341px;}
.x29{left:94.824966px;}
.x21{left:96.195316px;}
.x2b{left:97.945898px;}
.x14{left:101.265000px;}
.xa{left:115.837500px;}
.x3b{left:123.697500px;}
.x3c{left:129.579000px;}
.x12{left:165.582000px;}
.x17{left:167.439000px;}
.x1b{left:206.412000px;}
.x1a{left:221.290500px;}
.x1d{left:247.888500px;}
.x22{left:253.590925px;}
.x2c{left:255.513700px;}
.x19{left:282.138000px;}
.x1c{left:295.638000px;}
.x18{left:402.483000px;}
.x16{left:459.960000px;}
.xb{left:472.560000px;}
.x15{left:620.638500px;}
.xc{left:632.626500px;}
.x26{left:678.435309px;}
.x2d{left:683.579337px;}
.x13{left:698.326500px;}
.x27{left:748.998013px;}
.x9{left:803.173500px;}
.xe{left:809.038500px;}
.xd{left:824.739000px;}
.x10{left:888.088500px;}
.x2{left:900.444000px;}
.x1{left:915.703500px;}
.x4{left:918.412500px;}
.xf{left:933.646500px;}
.x6{left:945.840000px;}
.x7{left:984.747000px;}
.x11{left:1035.754500px;}
.x3{left:1062.363000px;}
.x5{left:1074.585000px;}
.x8{left:1519.305000px;}
.x2f{left:1858.041000px;}
.x30{left:1882.600500px;}
.x1e{left:1909.642500px;}
.x3a{left:1922.466000px;}
.x34{left:1954.423500px;}
.x33{left:1993.249500px;}
.x32{left:2039.218500px;}
.x2e{left:2079.463500px;}
.x31{left:2129.809500px;}
.x36{left:2170.032000px;}
.x35{left:2241.795000px;}
.x2a{left:2303.623500px;}
.x38{left:2491.213500px;}
.x39{left:2503.716000px;}
.x37{left:2555.767500px;}
.x28{left:2697.606000px;}
@media print{
.v2{vertical-align:-66.192000pt;}
.v5{vertical-align:-28.272000pt;}
.v4{vertical-align:-27.360000pt;}
.v7{vertical-align:-21.365333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:28.656000pt;}
.v3{vertical-align:66.197333pt;}
.v1{vertical-align:95.349333pt;}
.ls13{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.001603pt;}
.ls8{letter-spacing:0.002040pt;}
.ls7{letter-spacing:0.006149pt;}
.ls6{letter-spacing:0.006188pt;}
.ls12{letter-spacing:2.388389pt;}
.ls3{letter-spacing:2.654330pt;}
.ls2{letter-spacing:2.657116pt;}
.ls4{letter-spacing:2.658414pt;}
.ls5{letter-spacing:14.091308pt;}
.lsa{letter-spacing:40.532687pt;}
.lsd{letter-spacing:40.534131pt;}
.ls9{letter-spacing:40.539482pt;}
.lse{letter-spacing:40.541762pt;}
.lsc{letter-spacing:40.547095pt;}
.ls10{letter-spacing:43.888798pt;}
.ls11{letter-spacing:43.894645pt;}
.lsf{letter-spacing:46.546278pt;}
.ls1{letter-spacing:69.658902pt;}
.ls0{letter-spacing:332.406386pt;}
.ws1{word-spacing:-357.322177pt;}
.ws0{word-spacing:-345.063347pt;}
.ws8{word-spacing:-218.965600pt;}
.ws5{word-spacing:-201.790464pt;}
.ws4{word-spacing:-195.749623pt;}
.ws3{word-spacing:-195.749321pt;}
.ws2{word-spacing:-195.747260pt;}
.ws40{word-spacing:-182.409333pt;}
.ws3c{word-spacing:-179.770758pt;}
.ws1a{word-spacing:-166.413856pt;}
.ws2e{word-spacing:-145.197829pt;}
.ws24{word-spacing:-145.015420pt;}
.ws23{word-spacing:-144.376987pt;}
.ws25{word-spacing:-142.279280pt;}
.ws75{word-spacing:-141.367233pt;}
.ws7{word-spacing:-140.820005pt;}
.ws42{word-spacing:-140.272777pt;}
.ws2a{word-spacing:-137.354323pt;}
.ws6{word-spacing:-135.894953pt;}
.ws27{word-spacing:-135.712544pt;}
.ws43{word-spacing:-118.737487pt;}
.ws28{word-spacing:-109.354395pt;}
.ws2f{word-spacing:-108.807167pt;}
.ws60{word-spacing:-108.624758pt;}
.ws38{word-spacing:-107.530302pt;}
.ws3e{word-spacing:-107.165483pt;}
.wsc{word-spacing:-104.976571pt;}
.ws2b{word-spacing:-104.246934pt;}
.ws53{word-spacing:-103.882115pt;}
.ws6c{word-spacing:-102.647088pt;}
.ws36{word-spacing:-101.063363pt;}
.ws62{word-spacing:-100.781157pt;}
.ws22{word-spacing:-100.598747pt;}
.ws20{word-spacing:-100.490562pt;}
.ws21{word-spacing:-100.487781pt;}
.ws68{word-spacing:-100.366042pt;}
.ws9{word-spacing:-100.233929pt;}
.ws3f{word-spacing:-100.051519pt;}
.ws63{word-spacing:-99.504291pt;}
.ws26{word-spacing:-99.321882pt;}
.ws5a{word-spacing:-98.045017pt;}
.ws2d{word-spacing:-97.680198pt;}
.ws72{word-spacing:-97.578096pt;}
.ws61{word-spacing:-97.315379pt;}
.ws1b{word-spacing:-96.403333pt;}
.ws19{word-spacing:-96.038514pt;}
.wsa{word-spacing:-95.673695pt;}
.wsd{word-spacing:-94.944058pt;}
.ws69{word-spacing:-94.790150pt;}
.ws41{word-spacing:-94.761649pt;}
.ws31{word-spacing:-94.396830pt;}
.ws52{word-spacing:-94.214421pt;}
.ws30{word-spacing:-93.849602pt;}
.ws2c{word-spacing:-93.302374pt;}
.ws50{word-spacing:-91.843099pt;}
.ws5e{word-spacing:-91.478281pt;}
.ws4f{word-spacing:-91.113462pt;}
.ws1c{word-spacing:-90.748643pt;}
.ws39{word-spacing:-90.383825pt;}
.ws5f{word-spacing:-90.019006pt;}
.ws71{word-spacing:-89.594434pt;}
.ws14{word-spacing:-89.106959pt;}
.ws54{word-spacing:-88.559731pt;}
.ws5d{word-spacing:-87.465275pt;}
.wsb{word-spacing:-87.100457pt;}
.ws5c{word-spacing:-85.823591pt;}
.ws48{word-spacing:-85.641182pt;}
.ws10{word-spacing:-84.546726pt;}
.ws12{word-spacing:-84.181907pt;}
.ws29{word-spacing:-83.269861pt;}
.ws56{word-spacing:-83.212154pt;}
.ws5b{word-spacing:-81.628177pt;}
.ws15{word-spacing:-80.898539pt;}
.ws6f{word-spacing:-80.850422pt;}
.wsf{word-spacing:-80.716130pt;}
.ws47{word-spacing:-80.617967pt;}
.ws57{word-spacing:-80.617887pt;}
.ws13{word-spacing:-80.351311pt;}
.ws18{word-spacing:-80.168902pt;}
.ws3a{word-spacing:-79.804083pt;}
.ws3b{word-spacing:-79.621674pt;}
.ws51{word-spacing:-78.344809pt;}
.ws64{word-spacing:-76.155897pt;}
.ws55{word-spacing:-74.514213pt;}
.ws11{word-spacing:-74.331803pt;}
.ws6b{word-spacing:-74.324095pt;}
.ws59{word-spacing:-72.325301pt;}
.ws67{word-spacing:-71.789599pt;}
.ws17{word-spacing:-71.230845pt;}
.ws3d{word-spacing:-70.683617pt;}
.ws6d{word-spacing:-69.001654pt;}
.ws16{word-spacing:-68.494705pt;}
.ws37{word-spacing:-67.217839pt;}
.ws66{word-spacing:-65.960258pt;}
.wse{word-spacing:-65.211337pt;}
.ws32{word-spacing:-64.084313pt;}
.ws65{word-spacing:-63.045588pt;}
.ws70{word-spacing:-60.384367pt;}
.ws34{word-spacing:-57.871579pt;}
.ws35{word-spacing:-57.871071pt;}
.ws73{word-spacing:-57.216247pt;}
.ws6e{word-spacing:-54.935201pt;}
.ws6a{word-spacing:-52.020530pt;}
.ws45{word-spacing:-27.716473pt;}
.ws33{word-spacing:-0.182409pt;}
.ws1e{word-spacing:-0.127686pt;}
.ws76{word-spacing:0.000000pt;}
.ws46{word-spacing:23.446033pt;}
.ws1f{word-spacing:30.097540pt;}
.ws4c{word-spacing:33.480200pt;}
.ws74{word-spacing:49.034069pt;}
.ws1d{word-spacing:50.344976pt;}
.ws49{word-spacing:57.213000pt;}
.ws4d{word-spacing:57.646800pt;}
.ws58{word-spacing:76.347447pt;}
.ws4a{word-spacing:80.945800pt;}
.ws4b{word-spacing:104.678600pt;}
.ws4e{word-spacing:105.472293pt;}
.ws44{word-spacing:118.528780pt;}
._6{margin-left:-30.874089pt;}
._1d{margin-left:-22.618757pt;}
._3a{margin-left:-21.532272pt;}
._f{margin-left:-20.429845pt;}
._2{margin-left:-19.523321pt;}
._55{margin-left:-17.344828pt;}
._31{margin-left:-15.731300pt;}
._13{margin-left:-13.680700pt;}
._14{margin-left:-11.800871pt;}
._4{margin-left:-10.896737pt;}
._30{margin-left:-9.415521pt;}
._3{margin-left:-8.172553pt;}
._2b{margin-left:-6.765086pt;}
._1a{margin-left:-5.654747pt;}
._a{margin-left:-4.752577pt;}
._b{margin-left:-3.701585pt;}
._0{margin-left:-2.724184pt;}
._8{margin-left:-1.816123pt;}
._1{margin-left:-0.908061pt;}
._5c{width:1.489781pt;}
._3c{width:2.769536pt;}
._69{width:18.520155pt;}
._68{width:22.472265pt;}
._66{width:25.404246pt;}
._67{width:27.198994pt;}
._6a{width:29.870340pt;}
._35{width:30.993646pt;}
._3e{width:31.925619pt;}
._1b{width:33.018053pt;}
._1c{width:33.916180pt;}
._19{width:35.561850pt;}
._d{width:37.175637pt;}
._37{width:38.111595pt;}
._e{width:40.478931pt;}
._11{width:41.383007pt;}
._10{width:42.671828pt;}
._3b{width:43.770270pt;}
._15{width:44.686301pt;}
._56{width:45.602391pt;}
._28{width:46.502424pt;}
._32{width:48.017864pt;}
._16{width:49.611353pt;}
._33{width:50.931626pt;}
._39{width:52.145158pt;}
._18{width:53.437964pt;}
._34{width:54.663022pt;}
._25{width:55.801315pt;}
._21{width:57.086151pt;}
._26{width:58.003676pt;}
._65{width:58.979584pt;}
._20{width:59.979295pt;}
._22{width:61.826702pt;}
._2f{width:63.288068pt;}
._60{width:64.338864pt;}
._23{width:65.841799pt;}
._c{width:67.003103pt;}
._27{width:68.050637pt;}
._24{width:69.125167pt;}
._2a{width:70.098640pt;}
._38{width:71.135655pt;}
._29{width:72.634351pt;}
._1e{width:74.779856pt;}
._1f{width:76.595979pt;}
._2c{width:78.800832pt;}
._2d{width:79.704965pt;}
._57{width:80.945800pt;}
._17{width:84.267106pt;}
._45{width:86.744919pt;}
._5{width:93.530328pt;}
._36{width:96.310292pt;}
._7{width:98.524666pt;}
._44{width:100.003516pt;}
._2e{width:104.718898pt;}
._9{width:108.967373pt;}
._5d{width:111.016623pt;}
._3d{width:112.530618pt;}
._5e{width:127.563472pt;}
._41{width:128.834440pt;}
._43{width:133.534253pt;}
._58{width:164.010600pt;}
._5a{width:165.254160pt;}
._54{width:167.823021pt;}
._4e{width:169.562427pt;}
._59{width:199.609800pt;}
._5b{width:201.123280pt;}
._42{width:205.407396pt;}
._51{width:220.725253pt;}
._4f{width:231.208209pt;}
._50{width:261.130587pt;}
._53{width:262.905767pt;}
._4a{width:273.620514pt;}
._63{width:280.281847pt;}
._62{width:303.265880pt;}
._52{width:315.807021pt;}
._46{width:326.522587pt;}
._4d{width:368.709093pt;}
._47{width:379.417847pt;}
._4c{width:407.375920pt;}
._12{width:411.501187pt;}
._61{width:419.869366pt;}
._48{width:421.604514pt;}
._4b{width:430.359213pt;}
._49{width:525.665880pt;}
._40{width:767.282835pt;}
._5f{width:826.041196pt;}
._3f{width:931.838529pt;}
._64{width:1845.586921pt;}
._6b{width:6564.303868pt;}
.fs8{font-size:85.438080pt;}
.fsc{font-size:86.085888pt;}
.fs7{font-size:94.931200pt;}
.fsb{font-size:95.650987pt;}
.fs6{font-size:104.424320pt;}
.fsa{font-size:105.216085pt;}
.fs9{font-size:108.492800pt;}
.fsd{font-size:109.315413pt;}
.fse{font-size:126.724800pt;}
.fs3{font-size:127.685867pt;}
.fs4{font-size:182.409333pt;}
.fs2{font-size:183.922773pt;}
.fs5{font-size:218.965600pt;}
.fs1{font-size:262.748000pt;}
.fs0{font-size:454.030720pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:7.379388pt;}
.y89{bottom:7.435340pt;}
.y70{bottom:38.740639pt;}
.y88{bottom:39.034378pt;}
.yc8{bottom:42.433333pt;}
.y73{bottom:61.286779pt;}
.y8b{bottom:61.751467pt;}
.y6f{bottom:78.203445pt;}
.y87{bottom:78.796398pt;}
.y6e{bottom:113.732029pt;}
.y86{bottom:114.594367pt;}
.yc7{bottom:134.728000pt;}
.y74{bottom:146.555344pt;}
.y8c{bottom:147.666555pt;}
.y6d{bottom:149.260587pt;}
.y85{bottom:150.392309pt;}
.y6c{bottom:184.789171pt;}
.y84{bottom:186.190278pt;}
.y79{bottom:200.293387pt;}
.y91{bottom:201.812050pt;}
.y72{bottom:208.345585pt;}
.y8a{bottom:209.925302pt;}
.y6b{bottom:220.317729pt;}
.y83{bottom:221.988220pt;}
.y75{bottom:231.823909pt;}
.y8d{bottom:233.581643pt;}
.y6a{bottom:255.846287pt;}
.y82{bottom:257.786163pt;}
.y5f{bottom:287.268000pt;}
.y69{bottom:291.374871pt;}
.y81{bottom:293.584131pt;}
.y76{bottom:317.092474pt;}
.y8e{bottom:319.496731pt;}
.y68{bottom:326.903429pt;}
.y80{bottom:329.382074pt;}
.y5e{bottom:342.262667pt;}
.y67{bottom:362.432000pt;}
.y7f{bottom:365.180029pt;}
.y66{bottom:397.960558pt;}
.y7e{bottom:400.977972pt;}
.y77{bottom:402.361027pt;}
.y8f{bottom:405.411805pt;}
.y5d{bottom:417.706667pt;}
.yc6{bottom:432.518667pt;}
.y65{bottom:433.489129pt;}
.y7d{bottom:436.775927pt;}
.y64{bottom:469.017693pt;}
.y7c{bottom:472.573876pt;}
.y5c{bottom:472.700000pt;}
.yc5{bottom:472.848000pt;}
.y78{bottom:487.629579pt;}
.y90{bottom:491.326880pt;}
.y63{bottom:504.454438pt;}
.y7b{bottom:508.279308pt;}
.yc4{bottom:513.176000pt;}
.y5b{bottom:527.693333pt;}
.yc3{bottom:553.505333pt;}
.y5a{bottom:582.688000pt;}
.yc2{bottom:593.833333pt;}
.yc1{bottom:634.162667pt;}
.y59{bottom:637.681333pt;}
.yc0{bottom:674.490667pt;}
.y58{bottom:692.674667pt;}
.ybf{bottom:714.820000pt;}
.y57{bottom:747.668000pt;}
.ybe{bottom:755.149333pt;}
.ybd{bottom:795.477333pt;}
.y56{bottom:802.662667pt;}
.ybc{bottom:835.806667pt;}
.y55{bottom:857.656000pt;}
.y54{bottom:912.649333pt;}
.ybb{bottom:936.538667pt;}
.y53{bottom:967.644000pt;}
.y52{bottom:1023.169333pt;}
.yba{bottom:1059.526667pt;}
.y51{bottom:1078.162667pt;}
.yb9{bottom:1114.520000pt;}
.y50{bottom:1136.241333pt;}
.yb8{bottom:1169.513333pt;}
.y4f{bottom:1195.220000pt;}
.yb7{bottom:1224.508000pt;}
.yb6{bottom:1279.501333pt;}
.y4e{bottom:1327.246667pt;}
.yb5{bottom:1357.182667pt;}
.yb4{bottom:1412.176000pt;}
.yb3{bottom:1467.169333pt;}
.yb2{bottom:1522.164000pt;}
.yb1{bottom:1577.157333pt;}
.yb0{bottom:1632.150667pt;}
.yaf{bottom:1709.832000pt;}
.yae{bottom:1764.825333pt;}
.yad{bottom:1819.820000pt;}
.y4d{bottom:1859.930667pt;}
.yac{bottom:1874.813333pt;}
.y4c{bottom:1914.925333pt;}
.yab{bottom:1952.494667pt;}
.y4b{bottom:1969.918667pt;}
.yaa{bottom:2007.488000pt;}
.y4a{bottom:2024.912000pt;}
.y49{bottom:2079.906667pt;}
.ya9{bottom:2107.124000pt;}
.y48{bottom:2179.542667pt;}
.ya8{bottom:2267.816000pt;}
.y47{bottom:2302.529333pt;}
.y46{bottom:2357.524000pt;}
.y45{bottom:2412.517333pt;}
.y44{bottom:2467.510667pt;}
.y43{bottom:2522.505333pt;}
.y42{bottom:2577.498667pt;}
.ya7{bottom:2770.418667pt;}
.y41{bottom:3034.200000pt;}
.y40{bottom:3089.194667pt;}
.y3f{bottom:3144.188000pt;}
.y3e{bottom:3199.181333pt;}
.ya6{bottom:3264.550667pt;}
.y3d{bottom:3265.518667pt;}
.y3c{bottom:3320.513333pt;}
.ya5{bottom:3331.500000pt;}
.ya4{bottom:3386.493333pt;}
.ya3{bottom:3461.937333pt;}
.y3b{bottom:3475.874667pt;}
.ya2{bottom:3516.932000pt;}
.y3a{bottom:3530.868000pt;}
.ya1{bottom:3571.925333pt;}
.y39{bottom:3585.862667pt;}
.ya0{bottom:3627.450667pt;}
.y38{bottom:3640.856000pt;}
.y9f{bottom:3682.444000pt;}
.y37{bottom:3695.849333pt;}
.y36{bottom:3750.844000pt;}
.y9e{bottom:3789.748000pt;}
.y35{bottom:3805.837333pt;}
.y9d{bottom:3844.742667pt;}
.y34{bottom:3860.830667pt;}
.y9c{bottom:3899.736000pt;}
.y33{bottom:3915.825333pt;}
.y9b{bottom:3954.729333pt;}
.y9a{bottom:4013.708000pt;}
.y32{bottom:4015.460000pt;}
.y31{bottom:4153.041333pt;}
.y99{bottom:4199.034667pt;}
.y30{bottom:4208.034667pt;}
.y2f{bottom:4263.028000pt;}
.y2e{bottom:4318.022667pt;}
.y2d{bottom:4384.360000pt;}
.y2c{bottom:4439.353333pt;}
.y2b{bottom:4543.706667pt;}
.y2a{bottom:4637.328000pt;}
.y29{bottom:4692.321333pt;}
.y26{bottom:4745.997333pt;}
.y28{bottom:4767.502667pt;}
.y23{bottom:4798.784000pt;}
.y98{bottom:4814.450667pt;}
.y27{bottom:4829.633333pt;}
.y25{bottom:4842.106667pt;}
.y24{bottom:4855.786667pt;}
.y97{bottom:4869.445333pt;}
.y22{bottom:4906.560000pt;}
.y96{bottom:4924.438667pt;}
.y21{bottom:4961.553333pt;}
.y95{bottom:4979.432000pt;}
.y20{bottom:5016.546667pt;}
.y94{bottom:5034.426667pt;}
.y93{bottom:5089.420000pt;}
.y1f{bottom:5116.182667pt;}
.y92{bottom:5189.056000pt;}
.y1e{bottom:5239.170667pt;}
.y1d{bottom:5294.164000pt;}
.y7a{bottom:5304.077333pt;}
.y1c{bottom:5349.157333pt;}
.y1b{bottom:5404.152000pt;}
.y1a{bottom:5459.145333pt;}
.y19{bottom:5536.826667pt;}
.y18{bottom:5591.820000pt;}
.y17{bottom:5646.813333pt;}
.y16{bottom:5701.808000pt;}
.y15{bottom:5756.801333pt;}
.y14{bottom:5811.794667pt;}
.y62{bottom:5843.438667pt;}
.y13{bottom:5889.476000pt;}
.y12{bottom:5944.469333pt;}
.y11{bottom:5999.464000pt;}
.y10{bottom:6054.457333pt;}
.yf{bottom:6132.138667pt;}
.ye{bottom:6187.132000pt;}
.yd{bottom:6242.125333pt;}
.yc{bottom:6297.120000pt;}
.yb{bottom:6352.113333pt;}
.y61{bottom:6386.865333pt;}
.y60{bottom:6441.860000pt;}
.ya{bottom:6451.749333pt;}
.y9{bottom:6650.974667pt;}
.y8{bottom:6705.968000pt;}
.y7{bottom:6777.510667pt;}
.y6{bottom:6832.504000pt;}
.y5{bottom:6905.172000pt;}
.y4{bottom:6987.662667pt;}
.y3{bottom:7099.892000pt;}
.y2{bottom:7241.042667pt;}
.y1{bottom:7382.193333pt;}
.ha{height:0.000000pt;}
.h12{height:59.322729pt;}
.h17{height:59.772526pt;}
.h11{height:65.914144pt;}
.h16{height:66.413917pt;}
.h10{height:72.505558pt;}
.h15{height:73.055309pt;}
.h13{height:75.330450pt;}
.h18{height:75.901620pt;}
.h9{height:88.613991pt;}
.h3{height:94.487541pt;}
.hb{height:95.636714pt;}
.h19{height:96.691022pt;}
.hc{height:126.592077pt;}
.h5{height:134.982907pt;}
.hd{height:135.621339pt;}
.h8{height:136.624591pt;}
.h7{height:139.178321pt;}
.he{height:139.816754pt;}
.h1a{height:154.805991pt;}
.h4{height:160.684875pt;}
.h6{height:162.034544pt;}
.h2{height:231.452186pt;}
.h1{height:335.982733pt;}
.hf{height:522.121600pt;}
.h14{height:526.080427pt;}
.h0{height:7559.054667pt;}
.w3{width:672.973013pt;}
.w2{width:672.994400pt;}
.w1{width:3212.598233pt;}
.w0{width:3212.598667pt;}
.x0{left:0.000000pt;}
.x25{left:17.667167pt;}
.x24{left:28.685964pt;}
.x23{left:40.552364pt;}
.x20{left:70.673948pt;}
.x1f{left:77.931859pt;}
.x29{left:84.288859pt;}
.x21{left:85.506948pt;}
.x2b{left:87.063020pt;}
.x14{left:90.013333pt;}
.xa{left:102.966667pt;}
.x3b{left:109.953333pt;}
.x3c{left:115.181333pt;}
.x12{left:147.184000pt;}
.x17{left:148.834667pt;}
.x1b{left:183.477333pt;}
.x1a{left:196.702667pt;}
.x1d{left:220.345333pt;}
.x22{left:225.414156pt;}
.x2c{left:227.123289pt;}
.x19{left:250.789333pt;}
.x1c{left:262.789333pt;}
.x18{left:357.762667pt;}
.x16{left:408.853333pt;}
.xb{left:420.053333pt;}
.x15{left:551.678667pt;}
.xc{left:562.334667pt;}
.x26{left:603.053608pt;}
.x2d{left:607.626077pt;}
.x13{left:620.734667pt;}
.x27{left:665.776012pt;}
.x9{left:713.932000pt;}
.xe{left:719.145333pt;}
.xd{left:733.101333pt;}
.x10{left:789.412000pt;}
.x2{left:800.394667pt;}
.x1{left:813.958667pt;}
.x4{left:816.366667pt;}
.xf{left:829.908000pt;}
.x6{left:840.746667pt;}
.x7{left:875.330667pt;}
.x11{left:920.670667pt;}
.x3{left:944.322667pt;}
.x5{left:955.186667pt;}
.x8{left:1350.493333pt;}
.x2f{left:1651.592000pt;}
.x30{left:1673.422667pt;}
.x1e{left:1697.460000pt;}
.x3a{left:1708.858667pt;}
.x34{left:1737.265333pt;}
.x33{left:1771.777333pt;}
.x32{left:1812.638667pt;}
.x2e{left:1848.412000pt;}
.x31{left:1893.164000pt;}
.x36{left:1928.917333pt;}
.x35{left:1992.706667pt;}
.x2a{left:2047.665333pt;}
.x38{left:2214.412000pt;}
.x39{left:2225.525333pt;}
.x37{left:2271.793333pt;}
.x28{left:2397.872000pt;}
}




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