
    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_2d607644e4450fd9bb5a3f73.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_05d82f556ddcb6b472f55ef0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eb2f3b6a74392181a1d2e209.woff2')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_2e2b6f2f7719b369cb92f7b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b9dd241025ef632e6a747d88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.040000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b6b202449c006ebae0cbb4c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c093943beedf66dbaea3e6c0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_94a72399024be49081ddb5d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.889000;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);}
.v3{vertical-align:-64.776000px;}
.v7{vertical-align:-28.692000px;}
.v6{vertical-align:-25.032000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.568000px;}
.v8{vertical-align:24.298641px;}
.v9{vertical-align:26.979277px;}
.vb{vertical-align:34.506000px;}
.va{vertical-align:44.988000px;}
.v4{vertical-align:53.970000px;}
.v5{vertical-align:61.404000px;}
.v2{vertical-align:77.724000px;}
.ls27{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.003714px;}
.ls3{letter-spacing:0.003816px;}
.ls8{letter-spacing:0.005327px;}
.lsa{letter-spacing:0.006015px;}
.ls1f{letter-spacing:1.745857px;}
.ls24{letter-spacing:1.938461px;}
.ls9{letter-spacing:2.987520px;}
.ls25{letter-spacing:2.988603px;}
.ls2{letter-spacing:2.989065px;}
.ls0{letter-spacing:2.991816px;}
.ls23{letter-spacing:2.995065px;}
.ls18{letter-spacing:5.345519px;}
.ls1c{letter-spacing:7.376611px;}
.ls6{letter-spacing:7.499258px;}
.ls7{letter-spacing:24.975562px;}
.ls15{letter-spacing:32.727562px;}
.ls5{letter-spacing:36.969565px;}
.ls12{letter-spacing:37.092792px;}
.ls14{letter-spacing:37.123117px;}
.ls17{letter-spacing:37.187327px;}
.ls26{letter-spacing:38.432250px;}
.ls21{letter-spacing:39.001065px;}
.ls16{letter-spacing:40.085520px;}
.ls10{letter-spacing:41.317473px;}
.lsb{letter-spacing:44.296440px;}
.ls11{letter-spacing:46.075350px;}
.ls1{letter-spacing:47.617065px;}
.ls1d{letter-spacing:48.415065px;}
.ls22{letter-spacing:49.105065px;}
.ls20{letter-spacing:50.719065px;}
.ls1a{letter-spacing:54.669816px;}
.ls4{letter-spacing:63.290370px;}
.lsf{letter-spacing:66.257258px;}
.lse{letter-spacing:69.547117px;}
.lsd{letter-spacing:70.918440px;}
.ls19{letter-spacing:73.697253px;}
.lsc{letter-spacing:77.350440px;}
.ls1b{letter-spacing:77.745878px;}
.ls1e{letter-spacing:518.869883px;}
.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;}
}
.ws5b{word-spacing:-518.869883px;}
.ws3{word-spacing:-94.676807px;}
.ws28{word-spacing:-78.922485px;}
.ws2{word-spacing:-37.121161px;}
.ws47{word-spacing:-37.121011px;}
.ws6f{word-spacing:-30.993750px;}
.ws79{word-spacing:-12.350710px;}
.ws21{word-spacing:-12.128691px;}
.ws12{word-spacing:-6.841240px;}
.ws9{word-spacing:-5.651459px;}
.ws2a{word-spacing:-4.376018px;}
.ws30{word-spacing:-2.230839px;}
.ws6a{word-spacing:-2.082116px;}
.ws69{word-spacing:-1.784671px;}
.ws61{word-spacing:-1.735650px;}
.ws45{word-spacing:-1.635949px;}
.ws6{word-spacing:-1.487226px;}
.ws1e{word-spacing:-1.189781px;}
.ws1d{word-spacing:-1.160084px;}
.ws2f{word-spacing:-1.041058px;}
.ws62{word-spacing:-0.867825px;}
.ws64{word-spacing:-0.743850px;}
.ws51{word-spacing:-0.743613px;}
.ws1a{word-spacing:-0.594890px;}
.ws8{word-spacing:-0.446168px;}
.ws5{word-spacing:-0.214177px;}
.ws29{word-spacing:-0.148723px;}
.ws14{word-spacing:-0.123975px;}
.ws27{word-spacing:-0.086353px;}
.ws71{word-spacing:-0.086077px;}
.ws4{word-spacing:0.000000px;}
.ws5a{word-spacing:0.594890px;}
.ws13{word-spacing:1.041058px;}
.ws54{word-spacing:1.189781px;}
.ws73{word-spacing:1.487226px;}
.ws7{word-spacing:1.635949px;}
.ws66{word-spacing:1.933394px;}
.wsb{word-spacing:2.082116px;}
.ws60{word-spacing:2.107575px;}
.ws17{word-spacing:2.479500px;}
.ws4d{word-spacing:3.866788px;}
.ws58{word-spacing:4.015510px;}
.ws4e{word-spacing:4.164233px;}
.ws22{word-spacing:4.223722px;}
.ws4b{word-spacing:4.461678px;}
.ws11{word-spacing:5.056568px;}
.ws4f{word-spacing:5.205291px;}
.wsf{word-spacing:5.354014px;}
.ws77{word-spacing:5.502736px;}
.ws59{word-spacing:5.800181px;}
.ws74{word-spacing:7.138685px;}
.wsa{word-spacing:7.882298px;}
.ws53{word-spacing:8.179743px;}
.ws50{word-spacing:8.923356px;}
.ws52{word-spacing:9.072079px;}
.ws40{word-spacing:9.518246px;}
.ws57{word-spacing:9.666969px;}
.ws41{word-spacing:9.815692px;}
.ws67{word-spacing:10.559305px;}
.ws10{word-spacing:10.856750px;}
.ws6e{word-spacing:10.909800px;}
.wse{word-spacing:11.005472px;}
.wsd{word-spacing:11.302918px;}
.ws42{word-spacing:11.451640px;}
.ws55{word-spacing:12.195253px;}
.ws48{word-spacing:12.641421px;}
.ws33{word-spacing:12.645450px;}
.ws4c{word-spacing:12.790144px;}
.ws75{word-spacing:12.938866px;}
.ws68{word-spacing:13.385034px;}
.ws56{word-spacing:13.533757px;}
.ws35{word-spacing:13.682479px;}
.ws18{word-spacing:14.128647px;}
.ws6d{word-spacing:14.133150px;}
.wsc{word-spacing:15.169705px;}
.ws39{word-spacing:15.467150px;}
.ws46{word-spacing:16.359486px;}
.ws43{word-spacing:16.954376px;}
.ws2b{word-spacing:17.400544px;}
.ws2d{word-spacing:17.487916px;}
.ws2e{word-spacing:17.549267px;}
.ws49{word-spacing:18.144157px;}
.ws3f{word-spacing:20.077551px;}
.ws26{word-spacing:21.564777px;}
.ws25{word-spacing:21.568567px;}
.ws1b{word-spacing:22.308390px;}
.ws34{word-spacing:23.200726px;}
.ws1f{word-spacing:23.646893px;}
.ws3e{word-spacing:24.687952px;}
.ws1c{word-spacing:25.282842px;}
.ws4a{word-spacing:26.323900px;}
.ws3b{word-spacing:29.744520px;}
.ws63{word-spacing:30.001950px;}
.ws23{word-spacing:30.746038px;}
.ws24{word-spacing:30.785578px;}
.ws70{word-spacing:30.869775px;}
.ws72{word-spacing:31.231746px;}
.ws5f{word-spacing:32.977350px;}
.ws16{word-spacing:33.349275px;}
.ws3d{word-spacing:33.462585px;}
.ws65{word-spacing:33.473250px;}
.ws38{word-spacing:33.908753px;}
.ws37{word-spacing:34.949811px;}
.ws2c{word-spacing:36.645249px;}
.ws76{word-spacing:37.031927px;}
.ws44{word-spacing:37.478095px;}
.ws3a{word-spacing:42.832109px;}
.ws19{word-spacing:43.278277px;}
.ws32{word-spacing:43.515225px;}
.ws6c{word-spacing:44.878950px;}
.ws3c{word-spacing:47.888677px;}
.ws1{word-spacing:53.329973px;}
.ws78{word-spacing:53.540136px;}
.ws36{word-spacing:61.868602px;}
.ws7a{word-spacing:77.633197px;}
.ws0{word-spacing:110.589466px;}
.ws6b{word-spacing:112.601719px;}
.ws20{word-spacing:125.224429px;}
.ws5d{word-spacing:183.780008px;}
.ws5e{word-spacing:209.775019px;}
.ws5c{word-spacing:254.955925px;}
.ws15{word-spacing:433.777273px;}
.ws31{word-spacing:486.028762px;}
._2c{margin-left:-518.869883px;}
._0{margin-left:-40.860365px;}
._8{margin-left:-18.919982px;}
._26{margin-left:-16.384064px;}
._3a{margin-left:-13.831202px;}
._12{margin-left:-12.195253px;}
._1{margin-left:-11.103360px;}
._e{margin-left:-9.666969px;}
._32{margin-left:-7.846392px;}
._1f{margin-left:-6.454320px;}
._7{margin-left:-4.819419px;}
._2{margin-left:-3.212649px;}
._3{margin-left:-2.141766px;}
._13{margin-left:-1.130131px;}
._18{width:7.436130px;}
._5{width:9.864127px;}
._17{width:15.680454px;}
._4{width:17.879115px;}
._39{width:25.683344px;}
._6{width:29.093579px;}
._30{width:30.373875px;}
._16{width:34.569399px;}
._9{width:36.705862px;}
._2d{width:37.779427px;}
._31{width:38.811900px;}
._d{width:40.512197px;}
._33{width:41.976452px;}
._b{width:43.516875px;}
._2b{width:44.914225px;}
._1a{width:45.956331px;}
._29{width:47.085816px;}
._37{width:48.129454px;}
._10{width:49.167932px;}
._a{width:50.982830px;}
._c{width:52.350355px;}
._28{width:53.929552px;}
._21{width:56.663311px;}
._2a{width:58.150537px;}
._19{width:59.489040px;}
._38{width:60.530098px;}
._11{width:62.434715px;}
._1d{width:64.629099px;}
._36{width:67.603374px;}
._27{width:72.666103px;}
._24{width:74.807468px;}
._f{width:79.269146px;}
._20{width:80.548401px;}
._1e{width:81.886904px;}
._25{width:85.108469px;}
._23{width:105.860422px;}
._35{width:127.525847px;}
._34{width:142.483746px;}
._22{width:146.343038px;}
._2e{width:229.961734px;}
._15{width:461.773246px;}
._14{width:489.763717px;}
._1c{width:506.924369px;}
._1b{width:527.815870px;}
._2f{width:957.057317px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,128);}
.fsb{font-size:44.431800px;}
.fsd{font-size:46.984320px;}
.fsf{font-size:49.333536px;}
.fs8{font-size:59.132700px;}
.fsa{font-size:63.474000px;}
.fs6{font-size:65.703000px;}
.fse{font-size:70.476480px;}
.fs10{font-size:86.077200px;}
.fs5{font-size:88.029000px;}
.fsc{font-size:88.863600px;}
.fs7{font-size:91.984200px;}
.fs9{font-size:118.977600px;}
.fs3{font-size:123.975000px;}
.fs2{font-size:148.722600px;}
.fs4{font-size:178.490400px;}
.fs1{font-size:214.176600px;}
.fs0{font-size:444.134400px;}
.y0{bottom:0.000000px;}
.yea{bottom:10.718298px;}
.ya7{bottom:16.287528px;}
.y54{bottom:16.600274px;}
.y1c{bottom:20.418602px;}
.ye9{bottom:30.463336px;}
.ya6{bottom:40.112593px;}
.y53{bottom:44.062074px;}
.y1b{bottom:50.506639px;}
.yb0{bottom:57.245614px;}
.yc6{bottom:67.830837px;}
.yf1{bottom:75.414116px;}
.ya8{bottom:76.876391px;}
.yeb{bottom:83.863902px;}
.yf0{bottom:89.350351px;}
.yc7{bottom:110.171728px;}
.yb1{bottom:114.829227px;}
.y1d{bottom:120.533407px;}
.yec{bottom:130.622490px;}
.y55{bottom:135.698071px;}
.ya9{bottom:137.305896px;}
.yc8{bottom:152.512620px;}
.yf2{bottom:154.347774px;}
.yb2{bottom:172.412839px;}
.yed{bottom:177.381077px;}
.y1e{bottom:183.327440px;}
.yc9{bottom:194.853512px;}
.yaa{bottom:197.735401px;}
.yf7{bottom:197.828764px;}
.y8a{bottom:213.175500px;}
.yee{bottom:224.139665px;}
.y56{bottom:228.446501px;}
.yb3{bottom:229.996452px;}
.yf3{bottom:233.281431px;}
.y109{bottom:236.017500px;}
.yca{bottom:237.194404px;}
.y5a{bottom:241.813090px;}
.y1f{bottom:246.121473px;}
.y25{bottom:252.601279px;}
.yaf{bottom:255.220524px;}
.y89{bottom:258.007500px;}
.yab{bottom:258.164906px;}
.yef{bottom:270.898252px;}
.ycb{bottom:279.535296px;}
.yb4{bottom:287.580065px;}
.y88{bottom:302.839500px;}
.ydf{bottom:305.103490px;}
.y20{bottom:308.915506px;}
.yf4{bottom:312.215089px;}
.yac{bottom:318.594411px;}
.ybf{bottom:319.562478px;}
.y57{bottom:321.194932px;}
.ye0{bottom:335.652434px;}
.ye7{bottom:337.398195px;}
.yb5{bottom:345.163678px;}
.yc0{bottom:347.280722px;}
.y87{bottom:347.671500px;}
.y108{bottom:348.744000px;}
.ye1{bottom:366.201378px;}
.y21{bottom:371.709539px;}
.yad{bottom:379.023917px;}
.yc1{bottom:389.621614px;}
.yf5{bottom:391.148746px;}
.y86{bottom:392.503500px;}
.y107{bottom:393.576000px;}
.ye2{bottom:396.750321px;}
.yb6{bottom:402.747291px;}
.y58{bottom:413.943362px;}
.ye3{bottom:427.299265px;}
.yc2{bottom:431.962506px;}
.y22{bottom:434.503572px;}
.y85{bottom:437.335500px;}
.y106{bottom:438.408000px;}
.yae{bottom:439.453422px;}
.y61{bottom:446.252466px;}
.ye4{bottom:457.848209px;}
.yb7{bottom:460.330903px;}
.y60{bottom:467.965254px;}
.yf6{bottom:470.082404px;}
.yc3{bottom:474.303398px;}
.y84{bottom:482.167500px;}
.y105{bottom:483.240000px;}
.ye5{bottom:488.397153px;}
.y5f{bottom:489.678042px;}
.y23{bottom:497.297605px;}
.y28{bottom:499.226214px;}
.y59{bottom:506.691793px;}
.y5e{bottom:511.390830px;}
.yc4{bottom:516.644289px;}
.ye6{bottom:518.946097px;}
.y98{bottom:520.144140px;}
.y83{bottom:526.999500px;}
.y27{bottom:531.514976px;}
.y5d{bottom:533.103619px;}
.ye8{bottom:535.158134px;}
.y97{bottom:543.969205px;}
.y5c{bottom:554.816407px;}
.y104{bottom:557.959500px;}
.yc5{bottom:558.985181px;}
.y24{bottom:560.091638px;}
.y26{bottom:563.803738px;}
.y82{bottom:571.831500px;}
.y99{bottom:574.189410px;}
.y5b{bottom:576.529195px;}
.yb8{bottom:599.012364px;}
.y9a{bottom:614.475747px;}
.y103{bottom:614.746500px;}
.y42{bottom:623.724046px;}
.yb9{bottom:626.730608px;}
.y9b{bottom:654.762084px;}
.y81{bottom:655.144500px;}
.yba{bottom:669.071500px;}
.ya0{bottom:687.097620px;}
.y43{bottom:687.861500px;}
.y9c{bottom:695.048421px;}
.y102{bottom:698.061000px;}
.ybb{bottom:711.412392px;}
.y9d{bottom:735.334758px;}
.ya5{bottom:735.585309px;}
.y44{bottom:751.998955px;}
.ybc{bottom:753.753283px;}
.ya4{bottom:758.867374px;}
.y9e{bottom:775.621094px;}
.y80{bottom:779.733000px;}
.ya3{bottom:782.149439px;}
.ybd{bottom:796.094175px;}
.y4b{bottom:798.849541px;}
.ya2{bottom:805.431504px;}
.y9f{bottom:815.907431px;}
.y45{bottom:816.136409px;}
.y101{bottom:823.867500px;}
.y7f{bottom:824.565000px;}
.ya1{bottom:828.713569px;}
.ybe{bottom:838.435067px;}
.y63{bottom:839.949000px;}
.y100{bottom:868.699500px;}
.y7e{bottom:869.397000px;}
.ycc{bottom:869.474290px;}
.y62{bottom:877.309500px;}
.y46{bottom:880.273863px;}
.y41{bottom:903.460500px;}
.yff{bottom:913.531500px;}
.y7d{bottom:914.229000px;}
.y47{bottom:944.411317px;}
.yfe{bottom:958.363500px;}
.y7c{bottom:959.061000px;}
.yfd{bottom:1003.195500px;}
.y52{bottom:1003.288916px;}
.y7b{bottom:1003.893000px;}
.y48{bottom:1008.548771px;}
.y51{bottom:1025.001705px;}
.y50{bottom:1046.714493px;}
.yfc{bottom:1048.027500px;}
.y7a{bottom:1048.723500px;}
.y4f{bottom:1068.427281px;}
.y49{bottom:1072.686225px;}
.y4e{bottom:1090.140070px;}
.y79{bottom:1093.555500px;}
.y4d{bottom:1111.852858px;}
.yfb{bottom:1131.342000px;}
.y4c{bottom:1133.565646px;}
.y4a{bottom:1136.823680px;}
.y78{bottom:1138.387500px;}
.y77{bottom:1183.219500px;}
.y76{bottom:1228.051500px;}
.yfa{bottom:1229.572500px;}
.yf9{bottom:1266.933000px;}
.y75{bottom:1272.883500px;}
.yf8{bottom:1304.292000px;}
.y74{bottom:1317.715500px;}
.y73{bottom:1362.547500px;}
.yde{bottom:1367.805000px;}
.y72{bottom:1407.379500px;}
.y71{bottom:1452.211500px;}
.y70{bottom:1497.043500px;}
.y6f{bottom:1541.875500px;}
.y6e{bottom:1586.706000px;}
.y6d{bottom:1631.538000px;}
.y6c{bottom:1676.370000px;}
.y6b{bottom:1721.202000px;}
.y6a{bottom:1766.034000px;}
.y69{bottom:1810.866000px;}
.y68{bottom:1855.698000px;}
.y67{bottom:1900.530000px;}
.y66{bottom:1945.362000px;}
.ydd{bottom:1984.653000px;}
.y65{bottom:1990.194000px;}
.ydc{bottom:2029.485000px;}
.y64{bottom:2035.026000px;}
.ydb{bottom:2074.317000px;}
.y40{bottom:2079.858000px;}
.yda{bottom:2119.147500px;}
.y3f{bottom:2124.690000px;}
.yd9{bottom:2163.979500px;}
.y3e{bottom:2208.003000px;}
.yd8{bottom:2208.811500px;}
.yd7{bottom:2253.643500px;}
.yd6{bottom:2298.475500px;}
.y3d{bottom:2332.591500px;}
.yd5{bottom:2343.307500px;}
.y3c{bottom:2377.423500px;}
.yd4{bottom:2388.139500px;}
.y3b{bottom:2422.255500px;}
.yd3{bottom:2432.971500px;}
.y3a{bottom:2467.087500px;}
.y39{bottom:2511.919500px;}
.yd2{bottom:2516.284500px;}
.y38{bottom:2556.751500px;}
.y2a{bottom:2594.007000px;}
.y37{bottom:2601.582000px;}
.y29{bottom:2631.366000px;}
.yd1{bottom:2642.092500px;}
.y36{bottom:2646.414000px;}
.y1a{bottom:2657.518500px;}
.yd0{bottom:2679.451500px;}
.ycf{bottom:2716.812000px;}
.y35{bottom:2720.442000px;}
.yce{bottom:2754.172500px;}
.ycd{bottom:2791.531500px;}
.y34{bottom:2839.300500px;}
.y96{bottom:2855.043000px;}
.y33{bottom:2884.132500px;}
.y32{bottom:2928.964500px;}
.y31{bottom:2973.796500px;}
.y30{bottom:3018.628500px;}
.y2f{bottom:3063.460500px;}
.y2e{bottom:3108.292500px;}
.y2d{bottom:3153.124500px;}
.y2c{bottom:3197.955000px;}
.y2b{bottom:3242.787000px;}
.y19{bottom:3287.619000px;}
.y18{bottom:3332.451000px;}
.y17{bottom:3415.765500px;}
.y16{bottom:3540.354000px;}
.y15{bottom:3585.186000px;}
.y14{bottom:3630.018000px;}
.y13{bottom:3674.848500px;}
.y12{bottom:3719.680500px;}
.y11{bottom:3764.512500px;}
.y95{bottom:3769.698000px;}
.y10{bottom:3809.344500px;}
.y94{bottom:3814.530000px;}
.yf{bottom:3854.176500px;}
.y93{bottom:3859.362000px;}
.ye{bottom:3899.008500px;}
.y92{bottom:3904.194000px;}
.yd{bottom:3943.840500px;}
.y91{bottom:3949.026000px;}
.yc{bottom:3988.672500px;}
.y90{bottom:3993.856500px;}
.yb{bottom:4033.504500px;}
.y8f{bottom:4038.688500px;}
.ya{bottom:4078.336500px;}
.y8e{bottom:4083.520500px;}
.y9{bottom:4123.168500px;}
.y8d{bottom:4128.352500px;}
.y8c{bottom:4173.184500px;}
.y8{bottom:4206.481500px;}
.y8b{bottom:4218.016500px;}
.y7{bottom:4363.726500px;}
.y6{bottom:4379.919000px;}
.y5{bottom:4447.167000px;}
.y4{bottom:4498.221000px;}
.y3{bottom:4514.415000px;}
.y2{bottom:4631.823000px;}
.y1{bottom:4763.089500px;}
.h1c{height:43.648433px;}
.h16{height:54.934278px;}
.h18{height:58.967346px;}
.h14{height:61.038087px;}
.h1e{height:65.472650px;}
.h19{height:65.575783px;}
.h1d{height:72.810132px;}
.hd{height:81.778941px;}
.h1a{height:82.554284px;}
.hf{height:85.294800px;}
.h15{height:85.453322px;}
.he{height:88.394175px;}
.h5{height:92.857275px;}
.h1f{height:102.229338px;}
.ha{height:102.321149px;}
.h11{height:111.541950px;}
.h7{height:122.801395px;}
.h8{height:123.689395px;}
.h6{height:123.695395px;}
.h20{height:136.827149px;}
.hb{height:146.827275px;}
.h10{height:146.951250px;}
.h9{height:152.707916px;}
.h12{height:154.385250px;}
.h3{height:155.275916px;}
.h4{height:189.265950px;}
.h2{height:316.667827px;}
.h1b{height:555.588360px;}
.hc{height:616.167238px;}
.h17{height:897.784686px;}
.h13{height:1169.938416px;}
.h1{height:5052.000000px;}
.h0{height:5052.189000px;}
.w3{width:934.035901px;}
.w2{width:934.044084px;}
.w4{width:1497.634318px;}
.w5{width:1497.698980px;}
.w0{width:3569.953500px;}
.w1{width:3570.000000px;}
.x0{left:0.000000px;}
.x20{left:23.475462px;}
.x17{left:29.304565px;}
.x2d{left:31.518648px;}
.xf{left:32.556975px;}
.x16{left:54.411580px;}
.x22{left:56.848901px;}
.xd{left:64.372926px;}
.xe{left:78.368161px;}
.x19{left:109.574265px;}
.xb{left:137.600393px;}
.x2e{left:140.406376px;}
.x23{left:169.653460px;}
.xa{left:212.598000px;}
.x14{left:235.014000px;}
.x2f{left:303.169457px;}
.x37{left:326.444334px;}
.x1f{left:383.181211px;}
.x30{left:391.906846px;}
.x38{left:409.671262px;}
.x1{left:426.133500px;}
.x27{left:450.530964px;}
.x26{left:460.176036px;}
.xc{left:466.884496px;}
.x1a{left:471.098723px;}
.x24{left:501.698382px;}
.x31{left:574.820266px;}
.x25{left:596.708962px;}
.x39{left:598.095143px;}
.x32{left:663.878837px;}
.x3a{left:681.322071px;}
.x21{left:705.719957px;}
.x10{left:756.239258px;}
.x1c{left:766.821000px;}
.x15{left:771.535500px;}
.x33{left:846.471075px;}
.x1b{left:859.755580px;}
.x18{left:869.174721px;}
.x34{left:929.144244px;}
.x3b{left:952.972881px;}
.x29{left:965.186114px;}
.x4{left:975.000000px;}
.x28{left:1004.115201px;}
.x2{left:1055.328000px;}
.x2c{left:1062.491286px;}
.x35{left:1118.121884px;}
.x3c{left:1141.396761px;}
.x36{left:1178.136437px;}
.x12{left:1219.815000px;}
.x3d{left:1224.623690px;}
.x13{left:1238.404500px;}
.x11{left:1242.231000px;}
.x2b{left:1282.088411px;}
.x7{left:1313.472000px;}
.x2a{left:1321.017497px;}
.x3{left:1348.480500px;}
.x3e{left:1450.993018px;}
.x3f{left:1486.980682px;}
.x8{left:1847.020500px;}
.x1e{left:1859.697000px;}
.x1d{left:1882.113000px;}
.x41{left:1925.766000px;}
.x9{left:2057.680500px;}
.x42{left:2065.581000px;}
.x5{left:2110.291500px;}
.x40{left:2457.787500px;}
.x6{left:2572.032000px;}
@media print{
.v3{vertical-align:-57.578667pt;}
.v7{vertical-align:-25.504000pt;}
.v6{vertical-align:-22.250667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.282667pt;}
.v8{vertical-align:21.598792pt;}
.v9{vertical-align:23.981580pt;}
.vb{vertical-align:30.672000pt;}
.va{vertical-align:39.989333pt;}
.v4{vertical-align:47.973333pt;}
.v5{vertical-align:54.581333pt;}
.v2{vertical-align:69.088000pt;}
.ls27{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.003302pt;}
.ls3{letter-spacing:0.003392pt;}
.ls8{letter-spacing:0.004735pt;}
.lsa{letter-spacing:0.005347pt;}
.ls1f{letter-spacing:1.551873pt;}
.ls24{letter-spacing:1.723077pt;}
.ls9{letter-spacing:2.655573pt;}
.ls25{letter-spacing:2.656536pt;}
.ls2{letter-spacing:2.656947pt;}
.ls0{letter-spacing:2.659392pt;}
.ls23{letter-spacing:2.662280pt;}
.ls18{letter-spacing:4.751573pt;}
.ls1c{letter-spacing:6.556988pt;}
.ls6{letter-spacing:6.666007pt;}
.ls7{letter-spacing:22.200499pt;}
.ls15{letter-spacing:29.091166pt;}
.ls5{letter-spacing:32.861835pt;}
.ls12{letter-spacing:32.971371pt;}
.ls14{letter-spacing:32.998326pt;}
.ls17{letter-spacing:33.055402pt;}
.ls26{letter-spacing:34.162000pt;}
.ls21{letter-spacing:34.667613pt;}
.ls16{letter-spacing:35.631573pt;}
.ls10{letter-spacing:36.726642pt;}
.lsb{letter-spacing:39.374613pt;}
.ls11{letter-spacing:40.955867pt;}
.ls1{letter-spacing:42.326280pt;}
.ls1d{letter-spacing:43.035613pt;}
.ls22{letter-spacing:43.648947pt;}
.ls20{letter-spacing:45.083613pt;}
.ls1a{letter-spacing:48.595392pt;}
.ls4{letter-spacing:56.258107pt;}
.lsf{letter-spacing:58.895340pt;}
.lse{letter-spacing:61.819660pt;}
.lsd{letter-spacing:63.038613pt;}
.ls19{letter-spacing:65.508670pt;}
.lsc{letter-spacing:68.755947pt;}
.ls1b{letter-spacing:69.107447pt;}
.ls1e{letter-spacing:461.217674pt;}
.ws5b{word-spacing:-461.217674pt;}
.ws3{word-spacing:-84.157162pt;}
.ws28{word-spacing:-70.153320pt;}
.ws2{word-spacing:-32.996588pt;}
.ws47{word-spacing:-32.996454pt;}
.ws6f{word-spacing:-27.550000pt;}
.ws79{word-spacing:-10.978409pt;}
.ws21{word-spacing:-10.781058pt;}
.ws12{word-spacing:-6.081102pt;}
.ws9{word-spacing:-5.023519pt;}
.ws2a{word-spacing:-3.889794pt;}
.ws30{word-spacing:-1.982968pt;}
.ws6a{word-spacing:-1.850770pt;}
.ws69{word-spacing:-1.586374pt;}
.ws61{word-spacing:-1.542800pt;}
.ws45{word-spacing:-1.454177pt;}
.ws6{word-spacing:-1.321979pt;}
.ws1e{word-spacing:-1.057583pt;}
.ws1d{word-spacing:-1.031186pt;}
.ws2f{word-spacing:-0.925385pt;}
.ws62{word-spacing:-0.771400pt;}
.ws64{word-spacing:-0.661200pt;}
.ws51{word-spacing:-0.660989pt;}
.ws1a{word-spacing:-0.528791pt;}
.ws8{word-spacing:-0.396594pt;}
.ws5{word-spacing:-0.190379pt;}
.ws29{word-spacing:-0.132198pt;}
.ws14{word-spacing:-0.110200pt;}
.ws27{word-spacing:-0.076758pt;}
.ws71{word-spacing:-0.076513pt;}
.ws4{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.528791pt;}
.ws13{word-spacing:0.925385pt;}
.ws54{word-spacing:1.057583pt;}
.ws73{word-spacing:1.321979pt;}
.ws7{word-spacing:1.454177pt;}
.ws66{word-spacing:1.718572pt;}
.wsb{word-spacing:1.850770pt;}
.ws60{word-spacing:1.873400pt;}
.ws17{word-spacing:2.204000pt;}
.ws4d{word-spacing:3.437145pt;}
.ws58{word-spacing:3.569342pt;}
.ws4e{word-spacing:3.701540pt;}
.ws22{word-spacing:3.754419pt;}
.ws4b{word-spacing:3.965936pt;}
.ws11{word-spacing:4.494727pt;}
.ws4f{word-spacing:4.626925pt;}
.wsf{word-spacing:4.759123pt;}
.ws77{word-spacing:4.891321pt;}
.ws59{word-spacing:5.155717pt;}
.ws74{word-spacing:6.345498pt;}
.wsa{word-spacing:7.006487pt;}
.ws53{word-spacing:7.270883pt;}
.ws50{word-spacing:7.931872pt;}
.ws52{word-spacing:8.064070pt;}
.ws40{word-spacing:8.460663pt;}
.ws57{word-spacing:8.592861pt;}
.ws41{word-spacing:8.725059pt;}
.ws67{word-spacing:9.386049pt;}
.ws10{word-spacing:9.650444pt;}
.ws6e{word-spacing:9.697600pt;}
.wse{word-spacing:9.782642pt;}
.wsd{word-spacing:10.047038pt;}
.ws42{word-spacing:10.179236pt;}
.ws55{word-spacing:10.840225pt;}
.ws48{word-spacing:11.236819pt;}
.ws33{word-spacing:11.240400pt;}
.ws4c{word-spacing:11.369017pt;}
.ws75{word-spacing:11.501214pt;}
.ws68{word-spacing:11.897808pt;}
.ws56{word-spacing:12.030006pt;}
.ws35{word-spacing:12.162204pt;}
.ws18{word-spacing:12.558797pt;}
.ws6d{word-spacing:12.562800pt;}
.wsc{word-spacing:13.484182pt;}
.ws39{word-spacing:13.748578pt;}
.ws46{word-spacing:14.541765pt;}
.ws43{word-spacing:15.070557pt;}
.ws2b{word-spacing:15.467150pt;}
.ws2d{word-spacing:15.544814pt;}
.ws2e{word-spacing:15.599348pt;}
.ws49{word-spacing:16.128140pt;}
.ws3f{word-spacing:17.846712pt;}
.ws26{word-spacing:19.168691pt;}
.ws25{word-spacing:19.172060pt;}
.ws1b{word-spacing:19.829680pt;}
.ws34{word-spacing:20.622867pt;}
.ws1f{word-spacing:21.019461pt;}
.ws3e{word-spacing:21.944846pt;}
.ws1c{word-spacing:22.473637pt;}
.ws4a{word-spacing:23.399022pt;}
.ws3b{word-spacing:26.439573pt;}
.ws63{word-spacing:26.668400pt;}
.ws23{word-spacing:27.329812pt;}
.ws24{word-spacing:27.364958pt;}
.ws70{word-spacing:27.439800pt;}
.ws72{word-spacing:27.761552pt;}
.ws5f{word-spacing:29.313200pt;}
.ws16{word-spacing:29.643800pt;}
.ws3d{word-spacing:29.744520pt;}
.ws65{word-spacing:29.754000pt;}
.ws38{word-spacing:30.141114pt;}
.ws37{word-spacing:31.066499pt;}
.ws2c{word-spacing:32.573554pt;}
.ws76{word-spacing:32.917269pt;}
.ws44{word-spacing:33.313862pt;}
.ws3a{word-spacing:38.072986pt;}
.ws19{word-spacing:38.469579pt;}
.ws32{word-spacing:38.680200pt;}
.ws6c{word-spacing:39.892400pt;}
.ws3c{word-spacing:42.567713pt;}
.ws1{word-spacing:47.404421pt;}
.ws78{word-spacing:47.591232pt;}
.ws36{word-spacing:54.994313pt;}
.ws7a{word-spacing:69.007286pt;}
.ws0{word-spacing:98.301747pt;}
.ws6b{word-spacing:100.090417pt;}
.ws20{word-spacing:111.310604pt;}
.ws5d{word-spacing:163.360007pt;}
.ws5e{word-spacing:186.466683pt;}
.ws5c{word-spacing:226.627489pt;}
.ws15{word-spacing:385.579798pt;}
.ws31{word-spacing:432.025566pt;}
._2c{margin-left:-461.217674pt;}
._0{margin-left:-36.320324pt;}
._8{margin-left:-16.817762pt;}
._26{margin-left:-14.563613pt;}
._3a{margin-left:-12.294402pt;}
._12{margin-left:-10.840225pt;}
._1{margin-left:-9.869653pt;}
._e{margin-left:-8.592861pt;}
._32{margin-left:-6.974571pt;}
._1f{margin-left:-5.737173pt;}
._7{margin-left:-4.283928pt;}
._2{margin-left:-2.855688pt;}
._3{margin-left:-1.903792pt;}
._13{margin-left:-1.004561pt;}
._18{width:6.609893pt;}
._5{width:8.768113pt;}
._17{width:13.938182pt;}
._4{width:15.892547pt;}
._39{width:22.829639pt;}
._6{width:25.860959pt;}
._30{width:26.999000pt;}
._16{width:30.728355pt;}
._9{width:32.627433pt;}
._2d{width:33.581713pt;}
._31{width:34.499467pt;}
._d{width:36.010842pt;}
._33{width:37.312402pt;}
._b{width:38.681667pt;}
._2b{width:39.923756pt;}
._1a{width:40.850072pt;}
._29{width:41.854059pt;}
._37{width:42.781737pt;}
._10{width:43.704829pt;}
._a{width:45.318071pt;}
._c{width:46.533649pt;}
._28{width:47.937380pt;}
._21{width:50.367387pt;}
._2a{width:51.689366pt;}
._19{width:52.879147pt;}
._38{width:53.804532pt;}
._11{width:55.497524pt;}
._1d{width:57.448088pt;}
._36{width:60.091888pt;}
._27{width:64.592092pt;}
._24{width:66.495527pt;}
._f{width:70.461463pt;}
._20{width:71.598579pt;}
._1e{width:72.788359pt;}
._25{width:75.651972pt;}
._23{width:94.098153pt;}
._35{width:113.356309pt;}
._34{width:126.652219pt;}
._22{width:130.082701pt;}
._2e{width:204.410430pt;}
._15{width:410.465107pt;}
._14{width:435.345526pt;}
._1c{width:450.599439pt;}
._1b{width:469.169662pt;}
._2f{width:850.717615pt;}
.fsb{font-size:39.494933pt;}
.fsd{font-size:41.763840pt;}
.fsf{font-size:43.852032pt;}
.fs8{font-size:52.562400pt;}
.fsa{font-size:56.421333pt;}
.fs6{font-size:58.402667pt;}
.fse{font-size:62.645760pt;}
.fs10{font-size:76.513067pt;}
.fs5{font-size:78.248000pt;}
.fsc{font-size:78.989867pt;}
.fs7{font-size:81.763733pt;}
.fs9{font-size:105.757867pt;}
.fs3{font-size:110.200000pt;}
.fs2{font-size:132.197867pt;}
.fs4{font-size:158.658133pt;}
.fs1{font-size:190.379200pt;}
.fs0{font-size:394.786133pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:9.527376pt;}
.ya7{bottom:14.477802pt;}
.y54{bottom:14.755799pt;}
.y1c{bottom:18.149868pt;}
.ye9{bottom:27.078521pt;}
.ya6{bottom:35.655638pt;}
.y53{bottom:39.166288pt;}
.y1b{bottom:44.894790pt;}
.yb0{bottom:50.884990pt;}
.yc6{bottom:60.294077pt;}
.yf1{bottom:67.034770pt;}
.ya8{bottom:68.334570pt;}
.yeb{bottom:74.545691pt;}
.yf0{bottom:79.422534pt;}
.yc7{bottom:97.930425pt;}
.yb1{bottom:102.070424pt;}
.y1d{bottom:107.140807pt;}
.yec{bottom:116.108880pt;}
.y55{bottom:120.620508pt;}
.ya9{bottom:122.049685pt;}
.yc8{bottom:135.566774pt;}
.yf2{bottom:137.198021pt;}
.yb2{bottom:153.255857pt;}
.yed{bottom:157.672069pt;}
.y1e{bottom:162.957725pt;}
.yc9{bottom:173.203122pt;}
.yaa{bottom:175.764801pt;}
.yf7{bottom:175.847790pt;}
.y8a{bottom:189.489333pt;}
.yee{bottom:199.235258pt;}
.y56{bottom:203.063557pt;}
.yb3{bottom:204.441291pt;}
.yf3{bottom:207.361272pt;}
.y109{bottom:209.793333pt;}
.yca{bottom:210.839470pt;}
.y5a{bottom:214.944969pt;}
.y1f{bottom:218.774643pt;}
.y25{bottom:224.534470pt;}
.yaf{bottom:226.862688pt;}
.y89{bottom:229.340000pt;}
.yab{bottom:229.479917pt;}
.yef{bottom:240.798447pt;}
.ycb{bottom:248.475818pt;}
.yb4{bottom:255.626724pt;}
.y88{bottom:269.190667pt;}
.ydf{bottom:271.203102pt;}
.y20{bottom:274.591561pt;}
.yf4{bottom:277.524523pt;}
.yac{bottom:283.195032pt;}
.ybf{bottom:284.055536pt;}
.y57{bottom:285.506606pt;}
.ye0{bottom:298.357719pt;}
.ye7{bottom:299.909507pt;}
.yb5{bottom:306.812158pt;}
.yc0{bottom:308.693975pt;}
.y87{bottom:309.041333pt;}
.y108{bottom:309.994667pt;}
.ye1{bottom:325.512336pt;}
.y21{bottom:330.408479pt;}
.yad{bottom:336.910148pt;}
.yc1{bottom:346.330324pt;}
.yf5{bottom:347.687775pt;}
.y86{bottom:348.892000pt;}
.y107{bottom:349.845333pt;}
.ye2{bottom:352.666952pt;}
.yb6{bottom:357.997592pt;}
.y58{bottom:367.949655pt;}
.ye3{bottom:379.821569pt;}
.yc2{bottom:383.966672pt;}
.y22{bottom:386.225398pt;}
.y85{bottom:388.742667pt;}
.y106{bottom:389.696000pt;}
.yae{bottom:390.625264pt;}
.y61{bottom:396.668858pt;}
.ye4{bottom:406.976186pt;}
.yb7{bottom:409.183025pt;}
.y60{bottom:415.969114pt;}
.yf6{bottom:417.851026pt;}
.yc3{bottom:421.603020pt;}
.y84{bottom:428.593333pt;}
.y105{bottom:429.546667pt;}
.ye5{bottom:434.130803pt;}
.y5f{bottom:435.269371pt;}
.y23{bottom:442.042316pt;}
.y28{bottom:443.756634pt;}
.y59{bottom:450.392705pt;}
.y5e{bottom:454.569627pt;}
.yc4{bottom:459.239368pt;}
.ye6{bottom:461.285419pt;}
.y98{bottom:462.350346pt;}
.y83{bottom:468.444000pt;}
.y27{bottom:472.457756pt;}
.y5d{bottom:473.869883pt;}
.ye8{bottom:475.696119pt;}
.y97{bottom:483.528182pt;}
.y5c{bottom:493.170139pt;}
.y104{bottom:495.964000pt;}
.yc5{bottom:496.875717pt;}
.y24{bottom:497.859234pt;}
.y26{bottom:501.158878pt;}
.y82{bottom:508.294667pt;}
.y99{bottom:510.390587pt;}
.y5b{bottom:512.470396pt;}
.yb8{bottom:532.455435pt;}
.y9a{bottom:546.200664pt;}
.y103{bottom:546.441333pt;}
.y42{bottom:554.421375pt;}
.yb9{bottom:557.093874pt;}
.y9b{bottom:582.010741pt;}
.y81{bottom:582.350667pt;}
.yba{bottom:594.730222pt;}
.ya0{bottom:610.753440pt;}
.y43{bottom:611.432445pt;}
.y9c{bottom:617.820818pt;}
.y102{bottom:620.498667pt;}
.ybb{bottom:632.366570pt;}
.y9d{bottom:653.630896pt;}
.ya5{bottom:653.853608pt;}
.y44{bottom:668.443515pt;}
.ybc{bottom:670.002918pt;}
.ya4{bottom:674.548777pt;}
.y9e{bottom:689.440973pt;}
.y80{bottom:693.096000pt;}
.ya3{bottom:695.243946pt;}
.ybd{bottom:707.639267pt;}
.y4b{bottom:710.088481pt;}
.ya2{bottom:715.939114pt;}
.y9f{bottom:725.251050pt;}
.y45{bottom:725.454586pt;}
.y101{bottom:732.326667pt;}
.y7f{bottom:732.946667pt;}
.ya1{bottom:736.634283pt;}
.ybe{bottom:745.275615pt;}
.y63{bottom:746.621333pt;}
.y100{bottom:772.177333pt;}
.y7e{bottom:772.797333pt;}
.ycc{bottom:772.866036pt;}
.y62{bottom:779.830667pt;}
.y46{bottom:782.465656pt;}
.y41{bottom:803.076000pt;}
.yff{bottom:812.028000pt;}
.y7d{bottom:812.648000pt;}
.y47{bottom:839.476726pt;}
.yfe{bottom:851.878667pt;}
.y7c{bottom:852.498667pt;}
.yfd{bottom:891.729333pt;}
.y52{bottom:891.812370pt;}
.y7b{bottom:892.349333pt;}
.y48{bottom:896.487797pt;}
.y51{bottom:911.112626pt;}
.y50{bottom:930.412883pt;}
.yfc{bottom:931.580000pt;}
.y7a{bottom:932.198667pt;}
.y4f{bottom:949.713139pt;}
.y49{bottom:953.498867pt;}
.y4e{bottom:969.013395pt;}
.y79{bottom:972.049333pt;}
.y4d{bottom:988.313651pt;}
.yfb{bottom:1005.637333pt;}
.y4c{bottom:1007.613908pt;}
.y4a{bottom:1010.509937pt;}
.y78{bottom:1011.900000pt;}
.y77{bottom:1051.750667pt;}
.y76{bottom:1091.601333pt;}
.yfa{bottom:1092.953333pt;}
.yf9{bottom:1126.162667pt;}
.y75{bottom:1131.452000pt;}
.yf8{bottom:1159.370667pt;}
.y74{bottom:1171.302667pt;}
.y73{bottom:1211.153333pt;}
.yde{bottom:1215.826667pt;}
.y72{bottom:1251.004000pt;}
.y71{bottom:1290.854667pt;}
.y70{bottom:1330.705333pt;}
.y6f{bottom:1370.556000pt;}
.y6e{bottom:1410.405333pt;}
.y6d{bottom:1450.256000pt;}
.y6c{bottom:1490.106667pt;}
.y6b{bottom:1529.957333pt;}
.y6a{bottom:1569.808000pt;}
.y69{bottom:1609.658667pt;}
.y68{bottom:1649.509333pt;}
.y67{bottom:1689.360000pt;}
.y66{bottom:1729.210667pt;}
.ydd{bottom:1764.136000pt;}
.y65{bottom:1769.061333pt;}
.ydc{bottom:1803.986667pt;}
.y64{bottom:1808.912000pt;}
.ydb{bottom:1843.837333pt;}
.y40{bottom:1848.762667pt;}
.yda{bottom:1883.686667pt;}
.y3f{bottom:1888.613333pt;}
.yd9{bottom:1923.537333pt;}
.y3e{bottom:1962.669333pt;}
.yd8{bottom:1963.388000pt;}
.yd7{bottom:2003.238667pt;}
.yd6{bottom:2043.089333pt;}
.y3d{bottom:2073.414667pt;}
.yd5{bottom:2082.940000pt;}
.y3c{bottom:2113.265333pt;}
.yd4{bottom:2122.790667pt;}
.y3b{bottom:2153.116000pt;}
.yd3{bottom:2162.641333pt;}
.y3a{bottom:2192.966667pt;}
.y39{bottom:2232.817333pt;}
.yd2{bottom:2236.697333pt;}
.y38{bottom:2272.668000pt;}
.y2a{bottom:2305.784000pt;}
.y37{bottom:2312.517333pt;}
.y29{bottom:2338.992000pt;}
.yd1{bottom:2348.526667pt;}
.y36{bottom:2352.368000pt;}
.y1a{bottom:2362.238667pt;}
.yd0{bottom:2381.734667pt;}
.ycf{bottom:2414.944000pt;}
.y35{bottom:2418.170667pt;}
.yce{bottom:2448.153333pt;}
.ycd{bottom:2481.361333pt;}
.y34{bottom:2523.822667pt;}
.y96{bottom:2537.816000pt;}
.y33{bottom:2563.673333pt;}
.y32{bottom:2603.524000pt;}
.y31{bottom:2643.374667pt;}
.y30{bottom:2683.225333pt;}
.y2f{bottom:2723.076000pt;}
.y2e{bottom:2762.926667pt;}
.y2d{bottom:2802.777333pt;}
.y2c{bottom:2842.626667pt;}
.y2b{bottom:2882.477333pt;}
.y19{bottom:2922.328000pt;}
.y18{bottom:2962.178667pt;}
.y17{bottom:3036.236000pt;}
.y16{bottom:3146.981333pt;}
.y15{bottom:3186.832000pt;}
.y14{bottom:3226.682667pt;}
.y13{bottom:3266.532000pt;}
.y12{bottom:3306.382667pt;}
.y11{bottom:3346.233333pt;}
.y95{bottom:3350.842667pt;}
.y10{bottom:3386.084000pt;}
.y94{bottom:3390.693333pt;}
.yf{bottom:3425.934667pt;}
.y93{bottom:3430.544000pt;}
.ye{bottom:3465.785333pt;}
.y92{bottom:3470.394667pt;}
.yd{bottom:3505.636000pt;}
.y91{bottom:3510.245333pt;}
.yc{bottom:3545.486667pt;}
.y90{bottom:3550.094667pt;}
.yb{bottom:3585.337333pt;}
.y8f{bottom:3589.945333pt;}
.ya{bottom:3625.188000pt;}
.y8e{bottom:3629.796000pt;}
.y9{bottom:3665.038667pt;}
.y8d{bottom:3669.646667pt;}
.y8c{bottom:3709.497333pt;}
.y8{bottom:3739.094667pt;}
.y8b{bottom:3749.348000pt;}
.y7{bottom:3878.868000pt;}
.y6{bottom:3893.261333pt;}
.y5{bottom:3953.037333pt;}
.y4{bottom:3998.418667pt;}
.y3{bottom:4012.813333pt;}
.y2{bottom:4117.176000pt;}
.y1{bottom:4233.857333pt;}
.h1c{height:38.798607pt;}
.h16{height:48.830470pt;}
.h18{height:52.415419pt;}
.h14{height:54.256077pt;}
.h1e{height:58.197911pt;}
.h19{height:58.289585pt;}
.h1d{height:64.720118pt;}
.hd{height:72.692392pt;}
.h1a{height:73.381586pt;}
.hf{height:75.817600pt;}
.h15{height:75.958508pt;}
.he{height:78.572600pt;}
.h5{height:82.539800pt;}
.h1f{height:90.870523pt;}
.ha{height:90.952132pt;}
.h11{height:99.148400pt;}
.h7{height:109.156796pt;}
.h8{height:109.946129pt;}
.h6{height:109.951462pt;}
.h20{height:121.624132pt;}
.hb{height:130.513133pt;}
.h10{height:130.623333pt;}
.h9{height:135.740370pt;}
.h12{height:137.231333pt;}
.h3{height:138.023036pt;}
.h4{height:168.236400pt;}
.h2{height:281.482513pt;}
.h1b{height:493.856320pt;}
.hc{height:547.704212pt;}
.h17{height:798.030832pt;}
.h13{height:1039.945259pt;}
.h1{height:4490.666667pt;}
.h0{height:4490.834667pt;}
.w3{width:830.254134pt;}
.w2{width:830.261408pt;}
.w4{width:1331.230505pt;}
.w5{width:1331.287982pt;}
.w0{width:3173.292000pt;}
.w1{width:3173.333333pt;}
.x0{left:0.000000pt;}
.x20{left:20.867077pt;}
.x17{left:26.048502pt;}
.x2d{left:28.016576pt;}
.xf{left:28.939534pt;}
.x16{left:48.365849pt;}
.x22{left:50.532357pt;}
.xd{left:57.220378pt;}
.xe{left:69.660588pt;}
.x19{left:97.399347pt;}
.xb{left:122.311461pt;}
.x2e{left:124.805667pt;}
.x23{left:150.803076pt;}
.xa{left:188.976000pt;}
.x14{left:208.901333pt;}
.x2f{left:269.483962pt;}
.x37{left:290.172741pt;}
.x1f{left:340.605521pt;}
.x30{left:348.361641pt;}
.x38{left:364.152233pt;}
.x1{left:378.785333pt;}
.x27{left:400.471968pt;}
.x26{left:409.045366pt;}
.xc{left:415.008441pt;}
.x1a{left:418.754420pt;}
.x24{left:445.954117pt;}
.x31{left:510.951348pt;}
.x25{left:530.407966pt;}
.x39{left:531.640127pt;}
.x32{left:590.114522pt;}
.x3a{left:605.619619pt;}
.x21{left:627.306629pt;}
.x10{left:672.212674pt;}
.x1c{left:681.618667pt;}
.x15{left:685.809333pt;}
.x33{left:752.418734pt;}
.x1b{left:764.227182pt;}
.x18{left:772.599752pt;}
.x34{left:825.905995pt;}
.x3b{left:847.087005pt;}
.x29{left:857.943212pt;}
.x4{left:866.666667pt;}
.x28{left:892.546845pt;}
.x2{left:938.069333pt;}
.x2c{left:944.436699pt;}
.x35{left:993.886119pt;}
.x3c{left:1014.574899pt;}
.x36{left:1047.232388pt;}
.x12{left:1084.280000pt;}
.x3d{left:1088.554391pt;}
.x13{left:1100.804000pt;}
.x11{left:1104.205333pt;}
.x2b{left:1139.634143pt;}
.x7{left:1167.530667pt;}
.x2a{left:1174.237775pt;}
.x3{left:1198.649333pt;}
.x3e{left:1289.771571pt;}
.x3f{left:1321.760606pt;}
.x8{left:1641.796000pt;}
.x1e{left:1653.064000pt;}
.x1d{left:1672.989333pt;}
.x41{left:1711.792000pt;}
.x9{left:1829.049333pt;}
.x42{left:1836.072000pt;}
.x5{left:1875.814667pt;}
.x40{left:2184.700000pt;}
.x6{left:2286.250667pt;}
}




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