
    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_86fb684a241358215e74e261.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907000;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_ec719d4b702b8e607e481bfd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e468b48736b4cc030e13588e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1174e13f9ceca04b15788c57.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ac2c8f0115cd2a5e4676f62d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.664000;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_4621745f59ae52e79e32d2a9.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v4{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.108000px;}
.v1{vertical-align:23.754000px;}
.v3{vertical-align:26.034000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.071731px;}
.ls1{letter-spacing:2.988479px;}
.ls6{letter-spacing:2.992894px;}
.ls5{letter-spacing:19.582618px;}
.lsf{letter-spacing:21.662822px;}
.ls0{letter-spacing:24.690479px;}
.ls9{letter-spacing:27.329587px;}
.ls7{letter-spacing:27.401318px;}
.ls8{letter-spacing:28.333824px;}
.lsa{letter-spacing:28.405555px;}
.lsc{letter-spacing:29.051136px;}
.lsb{letter-spacing:30.414029px;}
.ls4{letter-spacing:32.538479px;}
.ls10{letter-spacing:32.924621px;}
.lsd{letter-spacing:48.059904px;}
.ls2{letter-spacing:703.967053px;}
.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;}
}
.ws3a{word-spacing:-35.112422px;}
.wsa{word-spacing:-32.544027px;}
.ws48{word-spacing:-29.881822px;}
.ws7e{word-spacing:-19.116365px;}
.ws9e{word-spacing:-18.757709px;}
.ws15{word-spacing:-18.542515px;}
.ws74{word-spacing:-18.183859px;}
.ws25{word-spacing:-17.681741px;}
.ws29{word-spacing:-17.538278px;}
.ws1a{word-spacing:-17.394816px;}
.ws10{word-spacing:-17.323085px;}
.ws54{word-spacing:-16.892698px;}
.ws7f{word-spacing:-16.820966px;}
.ws2b{word-spacing:-16.677504px;}
.ws5f{word-spacing:-16.462310px;}
.ws46{word-spacing:-16.247117px;}
.ws95{word-spacing:-16.175386px;}
.ws76{word-spacing:-16.103654px;}
.ws26{word-spacing:-15.960192px;}
.ws16{word-spacing:-15.744998px;}
.ws24{word-spacing:-15.673267px;}
.ws3c{word-spacing:-15.601536px;}
.ws3b{word-spacing:-15.529805px;}
.ws53{word-spacing:-15.458074px;}
.ws7a{word-spacing:-15.242880px;}
.wsbe{word-spacing:-15.057474px;}
.ws12{word-spacing:-15.027686px;}
.wsbf{word-spacing:-14.997698px;}
.ws9c{word-spacing:-14.740762px;}
.ws52{word-spacing:-14.669030px;}
.ws92{word-spacing:-14.597299px;}
.wsa9{word-spacing:-14.579269px;}
.ws2c{word-spacing:-14.525568px;}
.ws91{word-spacing:-14.238643px;}
.ws33{word-spacing:-14.166912px;}
.wsb0{word-spacing:-14.101064px;}
.ws9d{word-spacing:-14.095181px;}
.ws38{word-spacing:-14.023450px;}
.ws6c{word-spacing:-13.951718px;}
.ws23{word-spacing:-13.879987px;}
.ws30{word-spacing:-13.808256px;}
.wsa5{word-spacing:-13.664794px;}
.wsb5{word-spacing:-13.622859px;}
.ws68{word-spacing:-13.593062px;}
.ws67{word-spacing:-13.521331px;}
.ws8b{word-spacing:-13.449600px;}
.ws1b{word-spacing:-13.377869px;}
.ws96{word-spacing:-13.306138px;}
.ws7d{word-spacing:-13.234406px;}
.ws66{word-spacing:-13.162675px;}
.wsb6{word-spacing:-13.084879px;}
.ws37{word-spacing:-13.019213px;}
.ws3e{word-spacing:-12.947482px;}
.ws78{word-spacing:-12.875750px;}
.ws17{word-spacing:-12.732288px;}
.ws7{word-spacing:-12.711283px;}
.ws45{word-spacing:-12.660557px;}
.ws1c{word-spacing:-12.588826px;}
.wsc{word-spacing:-12.517094px;}
.ws2d{word-spacing:-12.373632px;}
.ws99{word-spacing:-12.230170px;}
.ws7c{word-spacing:-12.158438px;}
.wsb3{word-spacing:-12.068694px;}
.ws36{word-spacing:-12.014976px;}
.ws28{word-spacing:-11.943245px;}
.ws19{word-spacing:-11.871514px;}
.ws14{word-spacing:-11.728051px;}
.ws3f{word-spacing:-11.656320px;}
.ws4b{word-spacing:-11.441126px;}
.ws93{word-spacing:-11.369395px;}
.ws3{word-spacing:-11.336737px;}
.ws42{word-spacing:-11.297664px;}
.wsb1{word-spacing:-11.231835px;}
.ws97{word-spacing:-11.225933px;}
.wsbc{word-spacing:-11.172060px;}
.ws39{word-spacing:-11.154202px;}
.ws8{word-spacing:-11.140373px;}
.ws44{word-spacing:-10.939008px;}
.ws2{word-spacing:-10.878555px;}
.ws69{word-spacing:-10.867277px;}
.ws1{word-spacing:-10.813100px;}
.ws90{word-spacing:-10.723814px;}
.wsba{word-spacing:-10.693855px;}
.ws3d{word-spacing:-10.508621px;}
.wsb4{word-spacing:-10.394977px;}
.ws83{word-spacing:-10.365158px;}
.wsae{word-spacing:-10.335201px;}
.ws2e{word-spacing:-10.293427px;}
.wsa7{word-spacing:-10.155874px;}
.ws79{word-spacing:-10.149965px;}
.ws6a{word-spacing:-10.078234px;}
.ws6{word-spacing:-10.027645px;}
.ws64{word-spacing:-10.006502px;}
.wsa8{word-spacing:-9.976548px;}
.ws63{word-spacing:-9.934771px;}
.wsab{word-spacing:-9.916772px;}
.ws50{word-spacing:-9.863040px;}
.wsac{word-spacing:-9.797221px;}
.ws51{word-spacing:-9.791309px;}
.ws2a{word-spacing:-9.647846px;}
.ws61{word-spacing:-9.576115px;}
.ws65{word-spacing:-9.504384px;}
.wsa6{word-spacing:-9.360922px;}
.ws8d{word-spacing:-9.289190px;}
.ws9f{word-spacing:-9.217459px;}
.ws18{word-spacing:-9.145728px;}
.ws8e{word-spacing:-9.073997px;}
.wsf{word-spacing:-9.002266px;}
.ws47{word-spacing:-8.930534px;}
.ws5a{word-spacing:-8.858803px;}
.ws31{word-spacing:-8.787072px;}
.ws60{word-spacing:-8.715341px;}
.ws41{word-spacing:-8.643610px;}
.wsa3{word-spacing:-8.571878px;}
.ws5c{word-spacing:-8.500147px;}
.ws5{word-spacing:-8.456734px;}
.ws6b{word-spacing:-8.284954px;}
.ws5b{word-spacing:-8.213222px;}
.ws27{word-spacing:-8.141491px;}
.ws62{word-spacing:-8.069760px;}
.ws8c{word-spacing:-7.998029px;}
.wsa2{word-spacing:-7.854566px;}
.wsb9{word-spacing:-7.824626px;}
.ws4c{word-spacing:-7.782835px;}
.ws8a{word-spacing:-7.711104px;}
.wsb8{word-spacing:-7.705075px;}
.ws81{word-spacing:-7.639373px;}
.wsaf{word-spacing:-7.585524px;}
.ws6f{word-spacing:-7.567642px;}
.ws1d{word-spacing:-7.495910px;}
.ws77{word-spacing:-7.424179px;}
.ws1f{word-spacing:-7.280717px;}
.ws98{word-spacing:-7.208986px;}
.ws73{word-spacing:-7.137254px;}
.wsa1{word-spacing:-6.993792px;}
.wsd{word-spacing:-6.922061px;}
.ws9{word-spacing:-6.820369px;}
.ws75{word-spacing:-6.778598px;}
.ws49{word-spacing:-6.706867px;}
.wsaa{word-spacing:-6.449787px;}
.ws55{word-spacing:-6.419942px;}
.ws5e{word-spacing:-6.348211px;}
.ws94{word-spacing:-6.204749px;}
.ws56{word-spacing:-6.133018px;}
.ws57{word-spacing:-6.061286px;}
.ws6e{word-spacing:-5.846093px;}
.ws5d{word-spacing:-5.774362px;}
.ws32{word-spacing:-5.630899px;}
.wsa4{word-spacing:-5.559168px;}
.wsbd{word-spacing:-5.553153px;}
.ws58{word-spacing:-5.487437px;}
.ws59{word-spacing:-5.415706px;}
.ws70{word-spacing:-5.272243px;}
.ws4f{word-spacing:-5.128781px;}
.ws80{word-spacing:-4.985318px;}
.ws34{word-spacing:-4.913587px;}
.wsb2{word-spacing:-4.895622px;}
.ws1e{word-spacing:-4.841856px;}
.ws40{word-spacing:-4.770125px;}
.wsc0{word-spacing:-4.716295px;}
.ws7b{word-spacing:-4.626662px;}
.wse{word-spacing:-4.554931px;}
.ws4{word-spacing:-4.464004px;}
.ws4a{word-spacing:-4.339738px;}
.wsb7{word-spacing:-4.297866px;}
.ws9a{word-spacing:-4.196275px;}
.ws71{word-spacing:-4.124544px;}
.ws86{word-spacing:-3.765888px;}
.ws85{word-spacing:-3.694157px;}
.ws43{word-spacing:-3.335501px;}
.ws88{word-spacing:-3.048576px;}
.ws8f{word-spacing:-2.976845px;}
.ws4d{word-spacing:-2.905114px;}
.ws4e{word-spacing:-2.833382px;}
.ws2f{word-spacing:-2.689920px;}
.ws6d{word-spacing:-2.618189px;}
.ws82{word-spacing:-2.546458px;}
.ws9b{word-spacing:-2.187802px;}
.ws72{word-spacing:-2.044339px;}
.ws11{word-spacing:-1.900877px;}
.wsad{word-spacing:-1.727515px;}
.ws87{word-spacing:-1.685683px;}
.ws84{word-spacing:-1.542221px;}
.ws89{word-spacing:-1.255296px;}
.wsbb{word-spacing:-0.950432px;}
.ws13{word-spacing:-0.753178px;}
.ws35{word-spacing:-0.681446px;}
.wsa0{word-spacing:-0.394522px;}
.ws21{word-spacing:-0.047821px;}
.ws22{word-spacing:0.000000px;}
.ws20{word-spacing:16.880672px;}
.ws0{word-spacing:27.200395px;}
.wsb{word-spacing:35.112422px;}
.wsc1{word-spacing:651.304470px;}
._21{margin-left:-35.960652px;}
._20{margin-left:-34.201442px;}
._2b{margin-left:-29.887800px;}
._2c{margin-left:-27.592007px;}
._2d{margin-left:-26.444875px;}
._2a{margin-left:-7.035031px;}
._b{margin-left:-5.881958px;}
._1{margin-left:-4.562092px;}
._25{margin-left:-3.328346px;}
._0{margin-left:-2.238007px;}
._4{margin-left:-1.194326px;}
._6{width:1.027543px;}
._2{width:2.324084px;}
._16{width:4.605078px;}
._2e{width:7.052077px;}
._e{width:17.918454px;}
._11{width:19.405085px;}
._14{width:20.672926px;}
._1b{width:22.303010px;}
._7{width:23.543926px;}
._23{width:25.550647px;}
._19{width:27.343921px;}
._3{width:28.374123px;}
._f{width:29.788181px;}
._10{width:30.844416px;}
._9{width:32.192963px;}
._17{width:33.842845px;}
._1c{width:34.933088px;}
._c{width:36.252936px;}
._15{width:37.375525px;}
._29{width:38.428193px;}
._a{width:39.547212px;}
._1d{width:40.614199px;}
._22{width:41.819290px;}
._26{width:42.823520px;}
._12{width:43.985566px;}
._8{width:45.864917px;}
._5{width:47.283323px;}
._1e{width:48.289438px;}
._1a{width:50.140103px;}
._13{width:52.378091px;}
._1f{width:53.672854px;}
._28{width:57.302459px;}
._18{width:58.331806px;}
._27{width:59.341453px;}
._d{width:64.701530px;}
._24{width:71.134044px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y28{bottom:55.774500px;}
.y56{bottom:69.970500px;}
.y27{bottom:69.972000px;}
.y26{bottom:114.802500px;}
.y76{bottom:123.342000px;}
.y9f{bottom:127.257000px;}
.yc8{bottom:131.172000px;}
.yf0{bottom:133.981500px;}
.y25{bottom:136.471500px;}
.y75{bottom:145.011000px;}
.y9e{bottom:148.926000px;}
.y55{bottom:151.074000px;}
.yef{bottom:151.914000px;}
.yc7{bottom:152.841000px;}
.y24{bottom:158.140500px;}
.y74{bottom:166.680000px;}
.yee{bottom:169.846500px;}
.y9d{bottom:170.595000px;}
.y54{bottom:174.343500px;}
.yc6{bottom:174.508500px;}
.y23{bottom:179.809500px;}
.yed{bottom:187.779000px;}
.y73{bottom:188.349000px;}
.y53{bottom:196.012500px;}
.yc5{bottom:196.177500px;}
.y22{bottom:201.478500px;}
.y9c{bottom:203.097000px;}
.yec{bottom:205.713000px;}
.y72{bottom:210.016500px;}
.y52{bottom:217.681500px;}
.yc4{bottom:217.846500px;}
.y21{bottom:223.147500px;}
.yeb{bottom:223.645500px;}
.y9b{bottom:224.766000px;}
.y71{bottom:231.685500px;}
.y51{bottom:239.350500px;}
.yc3{bottom:239.515500px;}
.yea{bottom:241.578000px;}
.y20{bottom:244.815000px;}
.y9a{bottom:246.435000px;}
.y70{bottom:253.354500px;}
.ye9{bottom:259.510500px;}
.y50{bottom:261.019500px;}
.yc2{bottom:261.184500px;}
.y1f{bottom:266.484000px;}
.y99{bottom:268.104000px;}
.y6f{bottom:275.023500px;}
.ye8{bottom:277.443000px;}
.y4f{bottom:282.687000px;}
.yc1{bottom:282.852000px;}
.y1e{bottom:288.153000px;}
.y98{bottom:289.773000px;}
.ye7{bottom:295.375500px;}
.y6e{bottom:296.692500px;}
.y4e{bottom:304.356000px;}
.y1d{bottom:309.822000px;}
.y97{bottom:311.440500px;}
.ye6{bottom:313.309500px;}
.yc0{bottom:314.556000px;}
.y7c{bottom:318.361500px;}
.y4d{bottom:326.025000px;}
.y6d{bottom:329.196000px;}
.ye5{bottom:331.242000px;}
.y1c{bottom:331.491000px;}
.y96{bottom:333.109500px;}
.y4c{bottom:347.694000px;}
.ye4{bottom:349.174500px;}
.y6c{bottom:350.863500px;}
.y1b{bottom:353.160000px;}
.y95{bottom:354.778500px;}
.ybf{bottom:355.522500px;}
.ye3{bottom:367.107000px;}
.y10e{bottom:368.941500px;}
.y4b{bottom:369.363000px;}
.y6b{bottom:372.532500px;}
.y94{bottom:376.447500px;}
.ybe{bottom:377.191500px;}
.ye2{bottom:385.039500px;}
.y1a{bottom:385.662000px;}
.y6a{bottom:394.201500px;}
.ybd{bottom:398.860500px;}
.y4a{bottom:401.865000px;}
.ye1{bottom:402.973500px;}
.y19{bottom:407.331000px;}
.y93{bottom:408.151500px;}
.y69{bottom:415.870500px;}
.ybc{bottom:420.529500px;}
.ye0{bottom:420.906000px;}
.y49{bottom:423.534000px;}
.y18{bottom:429.000000px;}
.y68{bottom:437.539500px;}
.ydf{bottom:438.838500px;}
.ybb{bottom:442.198500px;}
.y48{bottom:445.203000px;}
.y17{bottom:450.669000px;}
.yde{bottom:456.771000px;}
.y7b{bottom:459.207000px;}
.yba{bottom:463.866000px;}
.y47{bottom:466.872000px;}
.y67{bottom:470.041500px;}
.y16{bottom:472.338000px;}
.ydd{bottom:474.703500px;}
.y92{bottom:480.876000px;}
.yb9{bottom:485.535000px;}
.y46{bottom:488.541000px;}
.y66{bottom:491.710500px;}
.ydc{bottom:492.636000px;}
.y15{bottom:494.005500px;}
.y91{bottom:502.545000px;}
.yb8{bottom:507.204000px;}
.y45{bottom:510.210000px;}
.ydb{bottom:510.570000px;}
.y65{bottom:513.379500px;}
.y14{bottom:515.674500px;}
.y90{bottom:524.214000px;}
.yda{bottom:528.502500px;}
.yb7{bottom:528.873000px;}
.y44{bottom:531.877500px;}
.y64{bottom:535.048500px;}
.y13{bottom:537.343500px;}
.y8f{bottom:545.883000px;}
.yd9{bottom:546.435000px;}
.yb6{bottom:550.542000px;}
.y43{bottom:553.546500px;}
.y63{bottom:556.717500px;}
.y12{bottom:559.012500px;}
.yd8{bottom:564.367500px;}
.y8e{bottom:567.552000px;}
.yb5{bottom:572.211000px;}
.y42{bottom:575.215500px;}
.y10c{bottom:577.671000px;}
.y62{bottom:578.386500px;}
.y8d{bottom:589.219500px;}
.y11{bottom:590.716500px;}
.yd7{bottom:592.335000px;}
.yb4{bottom:593.878500px;}
.y10b{bottom:595.603500px;}
.y41{bottom:596.884500px;}
.y61{bottom:600.054000px;}
.y8c{bottom:610.888500px;}
.y40{bottom:618.553500px;}
.y60{bottom:621.723000px;}
.y10a{bottom:624.370500px;}
.yb3{bottom:625.582500px;}
.y10{bottom:630.321000px;}
.y8b{bottom:632.557500px;}
.y3f{bottom:640.221000px;}
.y7a{bottom:643.392000px;}
.y109{bottom:653.137500px;}
.y5f{bottom:653.427000px;}
.y8a{bottom:654.226500px;}
.yf{bottom:654.688500px;}
.yb2{bottom:654.970500px;}
.y3e{bottom:661.890000px;}
.y79{bottom:665.061000px;}
.y108{bottom:671.070000px;}
.y89{bottom:675.895500px;}
.yb1{bottom:676.639500px;}
.y3d{bottom:683.559000px;}
.yd6{bottom:686.730000px;}
.ye{bottom:693.567000px;}
.y5e{bottom:694.393500px;}
.y78{bottom:696.765000px;}
.y107{bottom:697.365000px;}
.y88{bottom:697.564500px;}
.yb0{bottom:698.308500px;}
.y3c{bottom:705.228000px;}
.yd5{bottom:708.397500px;}
.yd{bottom:715.234500px;}
.y5d{bottom:716.062500px;}
.y87{bottom:719.232000px;}
.yaf{bottom:719.977500px;}
.y3b{bottom:726.897000px;}
.yd4{bottom:730.066500px;}
.yc{bottom:736.903500px;}
.y5c{bottom:737.731500px;}
.y86{bottom:740.901000px;}
.yae{bottom:741.645000px;}
.y106{bottom:744.082500px;}
.y3a{bottom:748.566000px;}
.yd3{bottom:751.735500px;}
.yb{bottom:758.572500px;}
.y5b{bottom:759.400500px;}
.y105{bottom:762.015000px;}
.yad{bottom:763.314000px;}
.y39{bottom:770.233500px;}
.y85{bottom:773.404500px;}
.y104{bottom:779.947500px;}
.ya{bottom:780.241500px;}
.y5a{bottom:781.068000px;}
.yd2{bottom:784.239000px;}
.yac{bottom:784.983000px;}
.y84{bottom:795.073500px;}
.y103{bottom:797.880000px;}
.y9{bottom:801.910500px;}
.y38{bottom:802.737000px;}
.yd1{bottom:805.908000px;}
.yab{bottom:806.652000px;}
.y102{bottom:815.812500px;}
.y83{bottom:816.742500px;}
.y8{bottom:823.579500px;}
.y37{bottom:824.406000px;}
.yd0{bottom:827.575500px;}
.yaa{bottom:828.321000px;}
.y101{bottom:833.745000px;}
.y82{bottom:838.410000px;}
.y7{bottom:845.247000px;}
.y36{bottom:846.075000px;}
.ycf{bottom:849.244500px;}
.ya9{bottom:849.990000px;}
.y100{bottom:851.679000px;}
.y81{bottom:860.079000px;}
.y35{bottom:867.744000px;}
.yff{bottom:869.611500px;}
.y6{bottom:869.616000px;}
.yce{bottom:870.913500px;}
.ya8{bottom:882.492000px;}
.yfe{bottom:887.544000px;}
.y34{bottom:889.411500px;}
.y80{bottom:891.783000px;}
.ycd{bottom:892.582500px;}
.ya7{bottom:904.161000px;}
.yfd{bottom:905.476500px;}
.y33{bottom:911.080500px;}
.ycc{bottom:914.251500px;}
.y77{bottom:921.915000px;}
.yfc{bottom:923.409000px;}
.y5{bottom:925.644000px;}
.ya6{bottom:925.830000px;}
.y10d{bottom:932.421000px;}
.y32{bottom:932.749500px;}
.ycb{bottom:935.920500px;}
.yfb{bottom:941.343000px;}
.y59{bottom:943.584000px;}
.ya5{bottom:947.499000px;}
.y31{bottom:954.418500px;}
.yca{bottom:957.588000px;}
.yfa{bottom:959.275500px;}
.y58{bottom:965.253000px;}
.ya4{bottom:969.168000px;}
.y4{bottom:969.465000px;}
.y30{bottom:976.087500px;}
.yf9{bottom:977.208000px;}
.y57{bottom:986.922000px;}
.yc9{bottom:989.292000px;}
.ya3{bottom:990.835500px;}
.yf8{bottom:995.140500px;}
.y7f{bottom:997.756500px;}
.y3{bottom:1001.409000px;}
.y2f{bottom:1008.591000px;}
.ya2{bottom:1012.504500px;}
.yf7{bottom:1013.073000px;}
.y7e{bottom:1019.424000px;}
.y2e{bottom:1030.258500px;}
.yf6{bottom:1031.005500px;}
.ya1{bottom:1034.173500px;}
.y7d{bottom:1041.093000px;}
.yf5{bottom:1048.939500px;}
.y2d{bottom:1051.927500px;}
.y2{bottom:1058.899500px;}
.ya0{bottom:1065.877500px;}
.yf4{bottom:1066.872000px;}
.y2c{bottom:1073.596500px;}
.yf3{bottom:1084.804500px;}
.y1{bottom:1085.799000px;}
.y2b{bottom:1095.265500px;}
.yf2{bottom:1102.737000px;}
.y2a{bottom:1116.934500px;}
.yf1{bottom:1120.669500px;}
.y29{bottom:1138.602000px;}
.h8{height:27.825462px;}
.h4{height:35.913271px;}
.h9{height:44.891476px;}
.h5{height:49.156405px;}
.h6{height:53.870131px;}
.h3{height:59.667271px;}
.ha{height:59.999476px;}
.h2{height:60.598349px;}
.h7{height:61.947271px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.299000px;}
.x9{left:123.858000px;}
.x8{left:126.489000px;}
.x2{left:128.454000px;}
.xb{left:180.261000px;}
.x1{left:202.974000px;}
.x5{left:214.381500px;}
.xc{left:225.651000px;}
.x3{left:326.484000px;}
.x4{left:333.549000px;}
.xd{left:437.679000px;}
.x7{left:442.068000px;}
.xa{left:589.740000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v4{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.429333pt;}
.v1{vertical-align:21.114667pt;}
.v3{vertical-align:23.141333pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.063761pt;}
.ls1{letter-spacing:2.656426pt;}
.ls6{letter-spacing:2.660350pt;}
.ls5{letter-spacing:17.406771pt;}
.lsf{letter-spacing:19.255842pt;}
.ls0{letter-spacing:21.947093pt;}
.ls9{letter-spacing:24.292966pt;}
.ls7{letter-spacing:24.356727pt;}
.ls8{letter-spacing:25.185621pt;}
.lsa{letter-spacing:25.249382pt;}
.lsc{letter-spacing:25.823232pt;}
.lsb{letter-spacing:27.034692pt;}
.ls4{letter-spacing:28.923093pt;}
.ls10{letter-spacing:29.266330pt;}
.lsd{letter-spacing:42.719915pt;}
.ls2{letter-spacing:625.748491pt;}
.ws3a{word-spacing:-31.211042pt;}
.wsa{word-spacing:-28.928024pt;}
.ws48{word-spacing:-26.561620pt;}
.ws7e{word-spacing:-16.992324pt;}
.ws9e{word-spacing:-16.673519pt;}
.ws15{word-spacing:-16.482236pt;}
.ws74{word-spacing:-16.163430pt;}
.ws25{word-spacing:-15.717103pt;}
.ws29{word-spacing:-15.589581pt;}
.ws1a{word-spacing:-15.462059pt;}
.ws10{word-spacing:-15.398298pt;}
.ws54{word-spacing:-15.015731pt;}
.ws7f{word-spacing:-14.951970pt;}
.ws2b{word-spacing:-14.824448pt;}
.ws5f{word-spacing:-14.633165pt;}
.ws46{word-spacing:-14.441882pt;}
.ws95{word-spacing:-14.378121pt;}
.ws76{word-spacing:-14.314359pt;}
.ws26{word-spacing:-14.186837pt;}
.ws16{word-spacing:-13.995554pt;}
.ws24{word-spacing:-13.931793pt;}
.ws3c{word-spacing:-13.868032pt;}
.ws3b{word-spacing:-13.804271pt;}
.ws53{word-spacing:-13.740510pt;}
.ws7a{word-spacing:-13.549227pt;}
.wsbe{word-spacing:-13.384421pt;}
.ws12{word-spacing:-13.357943pt;}
.wsbf{word-spacing:-13.331287pt;}
.ws9c{word-spacing:-13.102899pt;}
.ws52{word-spacing:-13.039138pt;}
.ws92{word-spacing:-12.975377pt;}
.wsa9{word-spacing:-12.959350pt;}
.ws2c{word-spacing:-12.911616pt;}
.ws91{word-spacing:-12.656572pt;}
.ws33{word-spacing:-12.592811pt;}
.wsb0{word-spacing:-12.534279pt;}
.ws9d{word-spacing:-12.529050pt;}
.ws38{word-spacing:-12.465289pt;}
.ws6c{word-spacing:-12.401527pt;}
.ws23{word-spacing:-12.337766pt;}
.ws30{word-spacing:-12.274005pt;}
.wsa5{word-spacing:-12.146483pt;}
.wsb5{word-spacing:-12.109208pt;}
.ws68{word-spacing:-12.082722pt;}
.ws67{word-spacing:-12.018961pt;}
.ws8b{word-spacing:-11.955200pt;}
.ws1b{word-spacing:-11.891439pt;}
.ws96{word-spacing:-11.827678pt;}
.ws7d{word-spacing:-11.763917pt;}
.ws66{word-spacing:-11.700156pt;}
.wsb6{word-spacing:-11.631003pt;}
.ws37{word-spacing:-11.572634pt;}
.ws3e{word-spacing:-11.508873pt;}
.ws78{word-spacing:-11.445111pt;}
.ws17{word-spacing:-11.317589pt;}
.ws7{word-spacing:-11.298919pt;}
.ws45{word-spacing:-11.253828pt;}
.ws1c{word-spacing:-11.190067pt;}
.wsc{word-spacing:-11.126306pt;}
.ws2d{word-spacing:-10.998784pt;}
.ws99{word-spacing:-10.871262pt;}
.ws7c{word-spacing:-10.807501pt;}
.wsb3{word-spacing:-10.727728pt;}
.ws36{word-spacing:-10.679979pt;}
.ws28{word-spacing:-10.616218pt;}
.ws19{word-spacing:-10.552457pt;}
.ws14{word-spacing:-10.424934pt;}
.ws3f{word-spacing:-10.361173pt;}
.ws4b{word-spacing:-10.169890pt;}
.ws93{word-spacing:-10.106129pt;}
.ws3{word-spacing:-10.077099pt;}
.ws42{word-spacing:-10.042368pt;}
.wsb1{word-spacing:-9.983854pt;}
.ws97{word-spacing:-9.978607pt;}
.wsbc{word-spacing:-9.930720pt;}
.ws39{word-spacing:-9.914846pt;}
.ws8{word-spacing:-9.902554pt;}
.ws44{word-spacing:-9.723563pt;}
.ws2{word-spacing:-9.669826pt;}
.ws69{word-spacing:-9.659802pt;}
.ws1{word-spacing:-9.611644pt;}
.ws90{word-spacing:-9.532279pt;}
.wsba{word-spacing:-9.505649pt;}
.ws3d{word-spacing:-9.340996pt;}
.wsb4{word-spacing:-9.239979pt;}
.ws83{word-spacing:-9.213474pt;}
.wsae{word-spacing:-9.186846pt;}
.ws2e{word-spacing:-9.149713pt;}
.wsa7{word-spacing:-9.027444pt;}
.ws79{word-spacing:-9.022191pt;}
.ws6a{word-spacing:-8.958430pt;}
.ws6{word-spacing:-8.913462pt;}
.ws64{word-spacing:-8.894669pt;}
.wsa8{word-spacing:-8.868042pt;}
.ws63{word-spacing:-8.830908pt;}
.wsab{word-spacing:-8.814908pt;}
.ws50{word-spacing:-8.767147pt;}
.wsac{word-spacing:-8.708641pt;}
.ws51{word-spacing:-8.703386pt;}
.ws2a{word-spacing:-8.575863pt;}
.ws61{word-spacing:-8.512102pt;}
.ws65{word-spacing:-8.448341pt;}
.wsa6{word-spacing:-8.320819pt;}
.ws8d{word-spacing:-8.257058pt;}
.ws9f{word-spacing:-8.193297pt;}
.ws18{word-spacing:-8.129536pt;}
.ws8e{word-spacing:-8.065775pt;}
.wsf{word-spacing:-8.002014pt;}
.ws47{word-spacing:-7.938253pt;}
.ws5a{word-spacing:-7.874492pt;}
.ws31{word-spacing:-7.810731pt;}
.ws60{word-spacing:-7.746970pt;}
.ws41{word-spacing:-7.683209pt;}
.wsa3{word-spacing:-7.619447pt;}
.ws5c{word-spacing:-7.555686pt;}
.ws5{word-spacing:-7.517097pt;}
.ws6b{word-spacing:-7.364403pt;}
.ws5b{word-spacing:-7.300642pt;}
.ws27{word-spacing:-7.236881pt;}
.ws62{word-spacing:-7.173120pt;}
.ws8c{word-spacing:-7.109359pt;}
.wsa2{word-spacing:-6.981837pt;}
.wsb9{word-spacing:-6.955223pt;}
.ws4c{word-spacing:-6.918076pt;}
.ws8a{word-spacing:-6.854315pt;}
.wsb8{word-spacing:-6.848955pt;}
.ws81{word-spacing:-6.790554pt;}
.wsaf{word-spacing:-6.742688pt;}
.ws6f{word-spacing:-6.726793pt;}
.ws1d{word-spacing:-6.663031pt;}
.ws77{word-spacing:-6.599270pt;}
.ws1f{word-spacing:-6.471748pt;}
.ws98{word-spacing:-6.407987pt;}
.ws73{word-spacing:-6.344226pt;}
.wsa1{word-spacing:-6.216704pt;}
.wsd{word-spacing:-6.152943pt;}
.ws9{word-spacing:-6.062551pt;}
.ws75{word-spacing:-6.025421pt;}
.ws49{word-spacing:-5.961660pt;}
.wsaa{word-spacing:-5.733144pt;}
.ws55{word-spacing:-5.706615pt;}
.ws5e{word-spacing:-5.642854pt;}
.ws94{word-spacing:-5.515332pt;}
.ws56{word-spacing:-5.451571pt;}
.ws57{word-spacing:-5.387810pt;}
.ws6e{word-spacing:-5.196527pt;}
.ws5d{word-spacing:-5.132766pt;}
.ws32{word-spacing:-5.005244pt;}
.wsa4{word-spacing:-4.941483pt;}
.wsbd{word-spacing:-4.936136pt;}
.ws58{word-spacing:-4.877722pt;}
.ws59{word-spacing:-4.813961pt;}
.ws70{word-spacing:-4.686438pt;}
.ws4f{word-spacing:-4.558916pt;}
.ws80{word-spacing:-4.431394pt;}
.ws34{word-spacing:-4.367633pt;}
.wsb2{word-spacing:-4.351664pt;}
.ws1e{word-spacing:-4.303872pt;}
.ws40{word-spacing:-4.240111pt;}
.wsc0{word-spacing:-4.192262pt;}
.ws7b{word-spacing:-4.112589pt;}
.wse{word-spacing:-4.048828pt;}
.ws4{word-spacing:-3.968003pt;}
.ws4a{word-spacing:-3.857545pt;}
.wsb7{word-spacing:-3.820325pt;}
.ws9a{word-spacing:-3.730022pt;}
.ws71{word-spacing:-3.666261pt;}
.ws86{word-spacing:-3.347456pt;}
.ws85{word-spacing:-3.283695pt;}
.ws43{word-spacing:-2.964890pt;}
.ws88{word-spacing:-2.709845pt;}
.ws8f{word-spacing:-2.646084pt;}
.ws4d{word-spacing:-2.582323pt;}
.ws4e{word-spacing:-2.518562pt;}
.ws2f{word-spacing:-2.391040pt;}
.ws6d{word-spacing:-2.327279pt;}
.ws82{word-spacing:-2.263518pt;}
.ws9b{word-spacing:-1.944713pt;}
.ws72{word-spacing:-1.817190pt;}
.ws11{word-spacing:-1.689668pt;}
.wsad{word-spacing:-1.535569pt;}
.ws87{word-spacing:-1.498385pt;}
.ws84{word-spacing:-1.370863pt;}
.ws89{word-spacing:-1.115819pt;}
.wsbb{word-spacing:-0.844828pt;}
.ws13{word-spacing:-0.669491pt;}
.ws35{word-spacing:-0.605730pt;}
.wsa0{word-spacing:-0.350686pt;}
.ws21{word-spacing:-0.042507pt;}
.ws22{word-spacing:0.000000pt;}
.ws20{word-spacing:15.005042pt;}
.ws0{word-spacing:24.178129pt;}
.wsb{word-spacing:31.211042pt;}
.wsc1{word-spacing:578.937307pt;}
._21{margin-left:-31.965024pt;}
._20{margin-left:-30.401282pt;}
._2b{margin-left:-26.566933pt;}
._2c{margin-left:-24.526228pt;}
._2d{margin-left:-23.506556pt;}
._2a{margin-left:-6.253361pt;}
._b{margin-left:-5.228407pt;}
._1{margin-left:-4.055193pt;}
._25{margin-left:-2.958530pt;}
._0{margin-left:-1.989340pt;}
._4{margin-left:-1.061623pt;}
._6{width:0.913372pt;}
._2{width:2.065853pt;}
._16{width:4.093403pt;}
._2e{width:6.268513pt;}
._e{width:15.927515pt;}
._11{width:17.248964pt;}
._14{width:18.375934pt;}
._1b{width:19.824898pt;}
._7{width:20.927934pt;}
._23{width:22.711686pt;}
._19{width:24.305708pt;}
._3{width:25.221443pt;}
._f{width:26.478383pt;}
._10{width:27.417259pt;}
._9{width:28.615967pt;}
._17{width:30.082529pt;}
._1c{width:31.051634pt;}
._c{width:32.224832pt;}
._15{width:33.222689pt;}
._29{width:34.158394pt;}
._a{width:35.153077pt;}
._1d{width:36.101510pt;}
._22{width:37.172702pt;}
._26{width:38.065351pt;}
._12{width:39.098281pt;}
._8{width:40.768815pt;}
._5{width:42.029620pt;}
._1e{width:42.923945pt;}
._1a{width:44.568980pt;}
._13{width:46.558303pt;}
._1f{width:47.709203pt;}
._28{width:50.935519pt;}
._18{width:51.850494pt;}
._27{width:52.747958pt;}
._d{width:57.512471pt;}
._24{width:63.230261pt;}
.fs4{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:49.577333pt;}
.y56{bottom:62.196000pt;}
.y27{bottom:62.197333pt;}
.y26{bottom:102.046667pt;}
.y76{bottom:109.637333pt;}
.y9f{bottom:113.117333pt;}
.yc8{bottom:116.597333pt;}
.yf0{bottom:119.094667pt;}
.y25{bottom:121.308000pt;}
.y75{bottom:128.898667pt;}
.y9e{bottom:132.378667pt;}
.y55{bottom:134.288000pt;}
.yef{bottom:135.034667pt;}
.yc7{bottom:135.858667pt;}
.y24{bottom:140.569333pt;}
.y74{bottom:148.160000pt;}
.yee{bottom:150.974667pt;}
.y9d{bottom:151.640000pt;}
.y54{bottom:154.972000pt;}
.yc6{bottom:155.118667pt;}
.y23{bottom:159.830667pt;}
.yed{bottom:166.914667pt;}
.y73{bottom:167.421333pt;}
.y53{bottom:174.233333pt;}
.yc5{bottom:174.380000pt;}
.y22{bottom:179.092000pt;}
.y9c{bottom:180.530667pt;}
.yec{bottom:182.856000pt;}
.y72{bottom:186.681333pt;}
.y52{bottom:193.494667pt;}
.yc4{bottom:193.641333pt;}
.y21{bottom:198.353333pt;}
.yeb{bottom:198.796000pt;}
.y9b{bottom:199.792000pt;}
.y71{bottom:205.942667pt;}
.y51{bottom:212.756000pt;}
.yc3{bottom:212.902667pt;}
.yea{bottom:214.736000pt;}
.y20{bottom:217.613333pt;}
.y9a{bottom:219.053333pt;}
.y70{bottom:225.204000pt;}
.ye9{bottom:230.676000pt;}
.y50{bottom:232.017333pt;}
.yc2{bottom:232.164000pt;}
.y1f{bottom:236.874667pt;}
.y99{bottom:238.314667pt;}
.y6f{bottom:244.465333pt;}
.ye8{bottom:246.616000pt;}
.y4f{bottom:251.277333pt;}
.yc1{bottom:251.424000pt;}
.y1e{bottom:256.136000pt;}
.y98{bottom:257.576000pt;}
.ye7{bottom:262.556000pt;}
.y6e{bottom:263.726667pt;}
.y4e{bottom:270.538667pt;}
.y1d{bottom:275.397333pt;}
.y97{bottom:276.836000pt;}
.ye6{bottom:278.497333pt;}
.yc0{bottom:279.605333pt;}
.y7c{bottom:282.988000pt;}
.y4d{bottom:289.800000pt;}
.y6d{bottom:292.618667pt;}
.ye5{bottom:294.437333pt;}
.y1c{bottom:294.658667pt;}
.y96{bottom:296.097333pt;}
.y4c{bottom:309.061333pt;}
.ye4{bottom:310.377333pt;}
.y6c{bottom:311.878667pt;}
.y1b{bottom:313.920000pt;}
.y95{bottom:315.358667pt;}
.ybf{bottom:316.020000pt;}
.ye3{bottom:326.317333pt;}
.y10e{bottom:327.948000pt;}
.y4b{bottom:328.322667pt;}
.y6b{bottom:331.140000pt;}
.y94{bottom:334.620000pt;}
.ybe{bottom:335.281333pt;}
.ye2{bottom:342.257333pt;}
.y1a{bottom:342.810667pt;}
.y6a{bottom:350.401333pt;}
.ybd{bottom:354.542667pt;}
.y4a{bottom:357.213333pt;}
.ye1{bottom:358.198667pt;}
.y19{bottom:362.072000pt;}
.y93{bottom:362.801333pt;}
.y69{bottom:369.662667pt;}
.ybc{bottom:373.804000pt;}
.ye0{bottom:374.138667pt;}
.y49{bottom:376.474667pt;}
.y18{bottom:381.333333pt;}
.y68{bottom:388.924000pt;}
.ydf{bottom:390.078667pt;}
.ybb{bottom:393.065333pt;}
.y48{bottom:395.736000pt;}
.y17{bottom:400.594667pt;}
.yde{bottom:406.018667pt;}
.y7b{bottom:408.184000pt;}
.yba{bottom:412.325333pt;}
.y47{bottom:414.997333pt;}
.y67{bottom:417.814667pt;}
.y16{bottom:419.856000pt;}
.ydd{bottom:421.958667pt;}
.y92{bottom:427.445333pt;}
.yb9{bottom:431.586667pt;}
.y46{bottom:434.258667pt;}
.y66{bottom:437.076000pt;}
.ydc{bottom:437.898667pt;}
.y15{bottom:439.116000pt;}
.y91{bottom:446.706667pt;}
.yb8{bottom:450.848000pt;}
.y45{bottom:453.520000pt;}
.ydb{bottom:453.840000pt;}
.y65{bottom:456.337333pt;}
.y14{bottom:458.377333pt;}
.y90{bottom:465.968000pt;}
.yda{bottom:469.780000pt;}
.yb7{bottom:470.109333pt;}
.y44{bottom:472.780000pt;}
.y64{bottom:475.598667pt;}
.y13{bottom:477.638667pt;}
.y8f{bottom:485.229333pt;}
.yd9{bottom:485.720000pt;}
.yb6{bottom:489.370667pt;}
.y43{bottom:492.041333pt;}
.y63{bottom:494.860000pt;}
.y12{bottom:496.900000pt;}
.yd8{bottom:501.660000pt;}
.y8e{bottom:504.490667pt;}
.yb5{bottom:508.632000pt;}
.y42{bottom:511.302667pt;}
.y10c{bottom:513.485333pt;}
.y62{bottom:514.121333pt;}
.y8d{bottom:523.750667pt;}
.y11{bottom:525.081333pt;}
.yd7{bottom:526.520000pt;}
.yb4{bottom:527.892000pt;}
.y10b{bottom:529.425333pt;}
.y41{bottom:530.564000pt;}
.y61{bottom:533.381333pt;}
.y8c{bottom:543.012000pt;}
.y40{bottom:549.825333pt;}
.y60{bottom:552.642667pt;}
.y10a{bottom:554.996000pt;}
.yb3{bottom:556.073333pt;}
.y10{bottom:560.285333pt;}
.y8b{bottom:562.273333pt;}
.y3f{bottom:569.085333pt;}
.y7a{bottom:571.904000pt;}
.y109{bottom:580.566667pt;}
.y5f{bottom:580.824000pt;}
.y8a{bottom:581.534667pt;}
.yf{bottom:581.945333pt;}
.yb2{bottom:582.196000pt;}
.y3e{bottom:588.346667pt;}
.y79{bottom:591.165333pt;}
.y108{bottom:596.506667pt;}
.y89{bottom:600.796000pt;}
.yb1{bottom:601.457333pt;}
.y3d{bottom:607.608000pt;}
.yd6{bottom:610.426667pt;}
.ye{bottom:616.504000pt;}
.y5e{bottom:617.238667pt;}
.y78{bottom:619.346667pt;}
.y107{bottom:619.880000pt;}
.y88{bottom:620.057333pt;}
.yb0{bottom:620.718667pt;}
.y3c{bottom:626.869333pt;}
.yd5{bottom:629.686667pt;}
.yd{bottom:635.764000pt;}
.y5d{bottom:636.500000pt;}
.y87{bottom:639.317333pt;}
.yaf{bottom:639.980000pt;}
.y3b{bottom:646.130667pt;}
.yd4{bottom:648.948000pt;}
.yc{bottom:655.025333pt;}
.y5c{bottom:655.761333pt;}
.y86{bottom:658.578667pt;}
.yae{bottom:659.240000pt;}
.y106{bottom:661.406667pt;}
.y3a{bottom:665.392000pt;}
.yd3{bottom:668.209333pt;}
.yb{bottom:674.286667pt;}
.y5b{bottom:675.022667pt;}
.y105{bottom:677.346667pt;}
.yad{bottom:678.501333pt;}
.y39{bottom:684.652000pt;}
.y85{bottom:687.470667pt;}
.y104{bottom:693.286667pt;}
.ya{bottom:693.548000pt;}
.y5a{bottom:694.282667pt;}
.yd2{bottom:697.101333pt;}
.yac{bottom:697.762667pt;}
.y84{bottom:706.732000pt;}
.y103{bottom:709.226667pt;}
.y9{bottom:712.809333pt;}
.y38{bottom:713.544000pt;}
.yd1{bottom:716.362667pt;}
.yab{bottom:717.024000pt;}
.y102{bottom:725.166667pt;}
.y83{bottom:725.993333pt;}
.y8{bottom:732.070667pt;}
.y37{bottom:732.805333pt;}
.yd0{bottom:735.622667pt;}
.yaa{bottom:736.285333pt;}
.y101{bottom:741.106667pt;}
.y82{bottom:745.253333pt;}
.y7{bottom:751.330667pt;}
.y36{bottom:752.066667pt;}
.ycf{bottom:754.884000pt;}
.ya9{bottom:755.546667pt;}
.y100{bottom:757.048000pt;}
.y81{bottom:764.514667pt;}
.y35{bottom:771.328000pt;}
.yff{bottom:772.988000pt;}
.y6{bottom:772.992000pt;}
.yce{bottom:774.145333pt;}
.ya8{bottom:784.437333pt;}
.yfe{bottom:788.928000pt;}
.y34{bottom:790.588000pt;}
.y80{bottom:792.696000pt;}
.ycd{bottom:793.406667pt;}
.ya7{bottom:803.698667pt;}
.yfd{bottom:804.868000pt;}
.y33{bottom:809.849333pt;}
.ycc{bottom:812.668000pt;}
.y77{bottom:819.480000pt;}
.yfc{bottom:820.808000pt;}
.y5{bottom:822.794667pt;}
.ya6{bottom:822.960000pt;}
.y10d{bottom:828.818667pt;}
.y32{bottom:829.110667pt;}
.ycb{bottom:831.929333pt;}
.yfb{bottom:836.749333pt;}
.y59{bottom:838.741333pt;}
.ya5{bottom:842.221333pt;}
.y31{bottom:848.372000pt;}
.yca{bottom:851.189333pt;}
.yfa{bottom:852.689333pt;}
.y58{bottom:858.002667pt;}
.ya4{bottom:861.482667pt;}
.y4{bottom:861.746667pt;}
.y30{bottom:867.633333pt;}
.yf9{bottom:868.629333pt;}
.y57{bottom:877.264000pt;}
.yc9{bottom:879.370667pt;}
.ya3{bottom:880.742667pt;}
.yf8{bottom:884.569333pt;}
.y7f{bottom:886.894667pt;}
.y3{bottom:890.141333pt;}
.y2f{bottom:896.525333pt;}
.ya2{bottom:900.004000pt;}
.yf7{bottom:900.509333pt;}
.y7e{bottom:906.154667pt;}
.y2e{bottom:915.785333pt;}
.yf6{bottom:916.449333pt;}
.ya1{bottom:919.265333pt;}
.y7d{bottom:925.416000pt;}
.yf5{bottom:932.390667pt;}
.y2d{bottom:935.046667pt;}
.y2{bottom:941.244000pt;}
.ya0{bottom:947.446667pt;}
.yf4{bottom:948.330667pt;}
.y2c{bottom:954.308000pt;}
.yf3{bottom:964.270667pt;}
.y1{bottom:965.154667pt;}
.y2b{bottom:973.569333pt;}
.yf2{bottom:980.210667pt;}
.y2a{bottom:992.830667pt;}
.yf1{bottom:996.150667pt;}
.y29{bottom:1012.090667pt;}
.h8{height:24.733744pt;}
.h4{height:31.922907pt;}
.h9{height:39.903534pt;}
.h5{height:43.694582pt;}
.h6{height:47.884561pt;}
.h3{height:53.037574pt;}
.ha{height:53.332867pt;}
.h2{height:53.865199pt;}
.h7{height:55.064241pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.488000pt;}
.x9{left:110.096000pt;}
.x8{left:112.434667pt;}
.x2{left:114.181333pt;}
.xb{left:160.232000pt;}
.x1{left:180.421333pt;}
.x5{left:190.561333pt;}
.xc{left:200.578667pt;}
.x3{left:290.208000pt;}
.x4{left:296.488000pt;}
.xd{left:389.048000pt;}
.x7{left:392.949333pt;}
.xa{left:524.213333pt;}
}




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