
    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_fb7b4230e7aa65e2b913d3d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7df8f18a75a302cc1ab79dfa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.092773;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_493e1ba087ca9c50480a94e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.961914;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_08a42ff75b51c97bbb9b4f5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903809;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-105.839491px;}
.ws18{word-spacing:-94.320228px;}
.ws7b{word-spacing:-87.952617px;}
.ws55{word-spacing:-87.912454px;}
.ws52{word-spacing:-87.740938px;}
.wsa7{word-spacing:-87.635098px;}
.ws31{word-spacing:-87.618151px;}
.wsb1{word-spacing:-87.529259px;}
.ws5e{word-spacing:-87.486212px;}
.ws3f{word-spacing:-87.166530px;}
.ws7a{word-spacing:-87.116144px;}
.ws63{word-spacing:-87.059970px;}
.ws9e{word-spacing:-87.000061px;}
.ws25{word-spacing:-86.682543px;}
.ws16{word-spacing:-86.576704px;}
.ws4b{word-spacing:-86.470864px;}
.ws94{word-spacing:-86.420022px;}
.wsa5{word-spacing:-86.207486px;}
.ws8e{word-spacing:-86.119398px;}
.ws62{word-spacing:-85.994364px;}
.ws51{word-spacing:-85.624148px;}
.ws5{word-spacing:-85.518309px;}
.ws38{word-spacing:-85.412469px;}
.wsa{word-spacing:-85.311612px;}
.wsaf{word-spacing:-85.141880px;}
.ws3c{word-spacing:-84.565753px;}
.ws2d{word-spacing:-84.354074px;}
.ws49{word-spacing:-83.863153px;}
.ws3a{word-spacing:-83.507358px;}
.ws1f{word-spacing:-83.401519px;}
.ws24{word-spacing:-83.295679px;}
.ws93{word-spacing:-82.448963px;}
.ws83{word-spacing:-82.343124px;}
.ws9c{word-spacing:-82.237284px;}
.ws7f{word-spacing:-81.945063px;}
.wsac{word-spacing:-81.838503px;}
.ws7e{word-spacing:-81.731942px;}
.ws45{word-spacing:-81.390568px;}
.ws27{word-spacing:-81.284729px;}
.ws48{word-spacing:-80.332174px;}
.ws54{word-spacing:-80.226334px;}
.wsb6{word-spacing:-80.120495px;}
.ws5a{word-spacing:-79.908816px;}
.ws90{word-spacing:-79.813852px;}
.wsa0{word-spacing:-79.707292px;}
.ws2b{word-spacing:-79.273779px;}
.ws6{word-spacing:-79.167939px;}
.wsd{word-spacing:-79.062100px;}
.wsaa{word-spacing:-78.850421px;}
.ws50{word-spacing:-78.748247px;}
.wsd7{word-spacing:-78.302388px;}
.wsb5{word-spacing:-78.215384px;}
.wsab{word-spacing:-78.109544px;}
.ws13{word-spacing:-78.003705px;}
.ws85{word-spacing:-78.002323px;}
.wsb9{word-spacing:-77.682641px;}
.ws2f{word-spacing:-77.156989px;}
.wsc5{word-spacing:-77.059627px;}
.ws2{word-spacing:-77.051149px;}
.ws71{word-spacing:-76.617036px;}
.wsd0{word-spacing:-76.305065px;}
.wsd4{word-spacing:-76.210745px;}
.wsd9{word-spacing:-76.196375px;}
.wsc3{word-spacing:-76.116424px;}
.ws14{word-spacing:-76.098594px;}
.ws15{word-spacing:-75.992754px;}
.wsc1{word-spacing:-75.927784px;}
.ws35{word-spacing:-75.886915px;}
.ws95{word-spacing:-75.675236px;}
.ws6d{word-spacing:-75.444870px;}
.ws82{word-spacing:-75.040199px;}
.ws91{word-spacing:-74.934360px;}
.ws4e{word-spacing:-74.828520px;}
.wsce{word-spacing:-74.522204px;}
.ws12{word-spacing:-73.981804px;}
.wsdc{word-spacing:-73.976939px;}
.ws4c{word-spacing:-73.875965px;}
.ws78{word-spacing:-73.770125px;}
.wsca{word-spacing:-73.507169px;}
.ws98{word-spacing:-73.420219px;}
.wsd3{word-spacing:-73.381138px;}
.ws76{word-spacing:-72.923409px;}
.wsbb{word-spacing:-72.817570px;}
.ws57{word-spacing:-72.711730px;}
.wsb7{word-spacing:-71.865014px;}
.wsa6{word-spacing:-71.653335px;}
.wsd5{word-spacing:-71.589053px;}
.ws65{word-spacing:-71.289008px;}
.wsa1{word-spacing:-70.806619px;}
.wsc2{word-spacing:-70.645851px;}
.wsb{word-spacing:-70.594940px;}
.ws1b{word-spacing:-70.560644px;}
.ws68{word-spacing:-70.383261px;}
.ws74{word-spacing:-69.748224px;}
.ws8d{word-spacing:-69.642385px;}
.ws6a{word-spacing:-69.324867px;}
.ws5b{word-spacing:-69.157797px;}
.ws7{word-spacing:-68.689830px;}
.ws11{word-spacing:-68.478151px;}
.ws8c{word-spacing:-68.266472px;}
.ws10{word-spacing:-67.879071px;}
.wsbf{word-spacing:-67.816244px;}
.ws42{word-spacing:-67.631435px;}
.ws87{word-spacing:-67.525595px;}
.ws26{word-spacing:-67.419756px;}
.ws84{word-spacing:-67.026586px;}
.wsa2{word-spacing:-66.573040px;}
.ws29{word-spacing:-66.467200px;}
.wsbe{word-spacing:-66.361361px;}
.ws4a{word-spacing:-65.514645px;}
.ws67{word-spacing:-65.302966px;}
.ws6b{word-spacing:-65.091287px;}
.ws56{word-spacing:-64.895375px;}
.wsc8{word-spacing:-64.892317px;}
.ws9d{word-spacing:-64.682254px;}
.ws5d{word-spacing:-64.667929px;}
.wscf{word-spacing:-64.609356px;}
.ws9b{word-spacing:-64.456250px;}
.ws30{word-spacing:-64.350410px;}
.wsb4{word-spacing:-64.244571px;}
.ws4d{word-spacing:-64.032892px;}
.ws8a{word-spacing:-63.723209px;}
.ws59{word-spacing:-63.397855px;}
.ws75{word-spacing:-63.292016px;}
.ws81{word-spacing:-63.186176px;}
.ws5f{word-spacing:-62.339460px;}
.ws6c{word-spacing:-62.233621px;}
.wsd8{word-spacing:-61.968390px;}
.ws58{word-spacing:-61.281065px;}
.wsc4{word-spacing:-61.119508px;}
.ws43{word-spacing:-61.069386px;}
.ws92{word-spacing:-60.526393px;}
.wsa9{word-spacing:-60.419832px;}
.ws66{word-spacing:-60.222670px;}
.ws32{word-spacing:-60.116831px;}
.ws41{word-spacing:-60.010991px;}
.wsc9{word-spacing:-59.893345px;}
.ws5c{word-spacing:-59.164275px;}
.ws79{word-spacing:-58.952596px;}
.wsb3{word-spacing:-58.288621px;}
.ws86{word-spacing:-58.000041px;}
.ws28{word-spacing:-57.894201px;}
.ws4f{word-spacing:-57.047486px;}
.wsf{word-spacing:-56.835807px;}
.wsc0{word-spacing:-56.497817px;}
.ws2c{word-spacing:-55.989091px;}
.ws8b{word-spacing:-55.883251px;}
.ws73{word-spacing:-55.777412px;}
.ws4{word-spacing:-54.930696px;}
.ws37{word-spacing:-54.824856px;}
.ws69{word-spacing:-54.719017px;}
.wsb0{word-spacing:-54.239320px;}
.ws96{word-spacing:-53.766461px;}
.ws17{word-spacing:-53.668210px;}
.wsd2{word-spacing:-53.573890px;}
.ws0{word-spacing:-53.280000px;}
.ws99{word-spacing:-52.840647px;}
.wsc7{word-spacing:-52.725008px;}
.ws3{word-spacing:-52.708066px;}
.ws6f{word-spacing:-51.755511px;}
.wsb2{word-spacing:-51.543832px;}
.ws34{word-spacing:-50.697116px;}
.ws2e{word-spacing:-50.485437px;}
.wscc{word-spacing:-49.801081px;}
.ws1c{word-spacing:-49.745254px;}
.ws36{word-spacing:-49.638721px;}
.ws64{word-spacing:-49.532882px;}
.wsd6{word-spacing:-48.952199px;}
.wsa4{word-spacing:-48.580326px;}
.ws3d{word-spacing:-47.310252px;}
.ws44{word-spacing:-46.566961px;}
.wsad{word-spacing:-46.251858px;}
.wscd{word-spacing:-46.122592px;}
.ws33{word-spacing:-46.040179px;}
.ws88{word-spacing:-45.405142px;}
.ws20{word-spacing:-45.299302px;}
.wsda{word-spacing:-45.179389px;}
.ws7d{word-spacing:-44.981784px;}
.ws39{word-spacing:-44.346747px;}
.ws46{word-spacing:-44.135068px;}
.ws97{word-spacing:-43.370144px;}
.wsc{word-spacing:-43.076673px;}
.ws80{word-spacing:-42.229957px;}
.ws9a{word-spacing:-42.124117px;}
.ws9{word-spacing:-42.018278px;}
.ws8f{word-spacing:-41.065722px;}
.wscb{word-spacing:-41.029299px;}
.ws22{word-spacing:-40.386449px;}
.ws7c{word-spacing:-38.843093px;}
.ws2a{word-spacing:-38.148677px;}
.ws6e{word-spacing:-37.890538px;}
.ws72{word-spacing:-37.863659px;}
.ws70{word-spacing:-37.573019px;}
.ws61{word-spacing:-36.726303px;}
.ws23{word-spacing:-35.910906px;}
.ws1e{word-spacing:-35.773748px;}
.ws47{word-spacing:-33.656958px;}
.wsbd{word-spacing:-31.434329px;}
.wsba{word-spacing:-31.328489px;}
.wsc6{word-spacing:-28.201748px;}
.ws8{word-spacing:-26.320456px;}
.wsbc{word-spacing:-26.248194px;}
.ws53{word-spacing:-23.073009px;}
.ws19{word-spacing:-21.608786px;}
.wsae{word-spacing:-21.062059px;}
.ws77{word-spacing:-18.733590px;}
.wsa3{word-spacing:-17.781034px;}
.wse{word-spacing:-15.770084px;}
.ws3e{word-spacing:-14.705356px;}
.wsa8{word-spacing:-13.547455px;}
.ws3b{word-spacing:-11.536505px;}
.wsdb{word-spacing:-7.356978px;}
.ws9f{word-spacing:-5.499520px;}
.ws60{word-spacing:-5.427114px;}
.ws21{word-spacing:-0.529197px;}
.ws1d{word-spacing:0.000000px;}
.wsb8{word-spacing:2.328469px;}
.ws89{word-spacing:4.795225px;}
.ws40{word-spacing:7.302925px;}
.wsd1{word-spacing:15.562838px;}
.ws1a{word-spacing:29.000425px;}
._1b{margin-left:-13.827515px;}
._1c{margin-left:-9.210302px;}
._19{margin-left:-6.692357px;}
._1d{margin-left:-5.376253px;}
._1e{margin-left:-3.961450px;}
._18{margin-left:-2.923927px;}
._1{margin-left:-1.587592px;}
._3{width:1.003987px;}
._0{width:2.116790px;}
._f{width:3.498654px;}
._1a{width:19.189959px;}
._16{width:20.532861px;}
._6{width:22.129380px;}
._c{width:23.496367px;}
._30{width:24.984071px;}
._23{width:26.623095px;}
._7{width:27.732922px;}
._15{width:29.123622px;}
._2{width:30.214211px;}
._28{width:31.966502px;}
._14{width:33.881889px;}
._8{width:35.685761px;}
._12{width:37.615874px;}
._2e{width:38.913758px;}
._13{width:39.991851px;}
._17{width:41.697658px;}
._24{width:43.236920px;}
._31{width:44.881895px;}
._2d{width:46.279771px;}
._25{width:47.313228px;}
._26{width:48.530108px;}
._29{width:49.750512px;}
._11{width:50.754499px;}
._5{width:52.871289px;}
._4{width:54.719017px;}
._37{width:55.834795px;}
._35{width:57.685498px;}
._2b{width:59.563365px;}
._27{width:61.003048px;}
._b{width:62.359056px;}
._e{width:64.147658px;}
._3a{width:66.101225px;}
._21{width:67.655134px;}
._36{width:69.217140px;}
._34{width:70.379354px;}
._1f{width:71.547496px;}
._22{width:73.050215px;}
._3d{width:75.786378px;}
._a{width:79.236107px;}
._9{width:81.508005px;}
._3c{width:86.426028px;}
._38{width:88.324543px;}
._2c{width:90.208418px;}
._10{width:91.405790px;}
._3b{width:93.640895px;}
._2a{width:95.944986px;}
._33{width:101.430250px;}
._32{width:102.818412px;}
._20{width:106.426071px;}
._3e{width:111.550225px;}
._39{width:113.823344px;}
._d{width:124.790711px;}
._2f{width:403.742237px;}
.fc4{color:transparent;}
.fc3{color:rgb(194,223,253);}
.fc2{color:rgb(252,246,234);}
.fc1{color:rgb(14,27,43);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:53.280000px;}
.fs6{font-size:70.560644px;}
.fs4{font-size:82.799491px;}
.fs5{font-size:88.560597px;}
.fs3{font-size:94.320228px;}
.fs1{font-size:105.839491px;}
.fs2{font-size:106.560551px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.182316px;}
.y24{bottom:93.772584px;}
.y46{bottom:93.971898px;}
.y8f{bottom:95.037802px;}
.y51{bottom:105.664356px;}
.ybb{bottom:110.533512px;}
.y70{bottom:112.867193px;}
.y23{bottom:115.009900px;}
.y98{bottom:117.550643px;}
.y45{bottom:125.827428px;}
.y8e{bottom:126.901375px;}
.y50{bottom:137.519885px;}
.y7d{bottom:138.787662px;}
.yba{bottom:142.380999px;}
.y6f{bottom:144.730767px;}
.y22{bottom:148.128227px;}
.y97{bottom:149.406172px;}
.yd9{bottom:149.944208px;}
.y44{bottom:157.691001px;}
.y8d{bottom:158.764949px;}
.y21{bottom:169.370905px;}
.y4f{bottom:169.372602px;}
.y7c{bottom:170.632740px;}
.yb9{bottom:174.234361px;}
.y6e{bottom:176.575763px;}
.yd8{bottom:178.383061px;}
.y96{bottom:181.250470px;}
.y9a{bottom:189.713690px;}
.y8c{bottom:190.616160px;}
.y1a{bottom:201.237797px;}
.y43{bottom:201.238988px;}
.y7b{bottom:202.506765px;}
.yb8{bottom:206.100102px;}
.y6d{bottom:208.449948px;}
.y95{bottom:213.125275px;}
.yd7{bottom:218.515515px;}
.y99{bottom:221.587768px;}
.y19{bottom:229.676580px;}
.y42{bottom:233.102640px;}
.y7a{bottom:234.370418px;}
.yb7{bottom:237.963754px;}
.y94{bottom:244.988927px;}
.yd6{bottom:246.774467px;}
.y6c{bottom:252.183643px;}
.y41{bottom:264.966214px;}
.y79{bottom:266.225947px;}
.yb6{bottom:269.819283px;}
.y18{bottom:270.360239px;}
.y93{bottom:276.852501px;}
.y6b{bottom:284.047216px;}
.yd5{bottom:286.734188px;}
.y40{bottom:296.821743px;}
.y78{bottom:298.089520px;}
.y17{bottom:302.223891px;}
.y92{bottom:308.708030px;}
.yb5{bottom:313.569144px;}
.yd4{bottom:315.173041px;}
.y6a{bottom:315.902746px;}
.y3f{bottom:328.685396px;}
.y77{bottom:329.953094px;}
.y16{bottom:334.087465px;}
.y91{bottom:340.571604px;}
.yb4{bottom:345.424673px;}
.y69{bottom:347.766398px;}
.yd3{bottom:355.312663px;}
.y3e{bottom:360.540925px;}
.y76{bottom:361.808623px;}
.y15{bottom:365.942994px;}
.y90{bottom:372.427133px;}
.yb3{bottom:377.288247px;}
.y68{bottom:379.629971px;}
.yd2{bottom:383.578783px;}
.y3d{bottom:392.404498px;}
.y75{bottom:393.672276px;}
.y14{bottom:397.806647px;}
.y4e{bottom:404.274620px;}
.yb2{bottom:409.151899px;}
.y67{bottom:411.307837px;}
.yd1{bottom:423.718405px;}
.y3c{bottom:424.268072px;}
.y74{bottom:425.519683px;}
.y13{bottom:429.662176px;}
.y4d{bottom:436.138193px;}
.yb1{bottom:440.993396px;}
.y66{bottom:443.334878px;}
.y84{bottom:448.017683px;}
.yd0{bottom:452.157259px;}
.y73{bottom:457.380118px;}
.y5b{bottom:457.913406px;}
.y12{bottom:461.516614px;}
.y3b{bottom:467.994513px;}
.yb0{bottom:472.859447px;}
.y65{bottom:475.207916px;}
.y83{bottom:479.884899px;}
.y72{bottom:489.238865px;}
.y5a{bottom:489.781477px;}
.ycf{bottom:492.116980px;}
.y11{bottom:493.386090px;}
.y3a{bottom:499.858952px;}
.yaf{bottom:504.729764px;}
.y64{bottom:507.068256px;}
.y82{bottom:511.745239px;}
.yce{bottom:520.375931px;}
.y71{bottom:521.099205px;}
.y10{bottom:525.246508px;}
.y39{bottom:531.719371px;}
.y59{bottom:533.528104px;}
.yae{bottom:536.577251px;}
.y63{bottom:538.928596px;}
.y81{bottom:543.605658px;}
.yf{bottom:557.106849px;}
.ycd{bottom:560.694050px;}
.y38{bottom:563.579711px;}
.y58{bottom:565.388523px;}
.yad{bottom:568.437591px;}
.y62{bottom:570.789015px;}
.y80{bottom:575.465998px;}
.ye{bottom:588.967267px;}
.y37{bottom:595.440130px;}
.yac{bottom:600.297931px;}
.ycc{bottom:600.842316px;}
.y61{bottom:602.649394px;}
.y7f{bottom:607.326378px;}
.y57{bottom:609.122218px;}
.ya1{bottom:620.284995px;}
.yd{bottom:620.827608px;}
.y36{bottom:627.300470px;}
.ycb{bottom:629.096910px;}
.yab{bottom:632.158350px;}
.y60{bottom:634.496841px;}
.y7e{bottom:639.186757px;}
.y56{bottom:640.982597px;}
.ya0{bottom:652.145375px;}
.yc{bottom:652.687987px;}
.y35{bottom:659.160850px;}
.yaa{bottom:664.018729px;}
.y5f{bottom:666.357221px;}
.yca{bottom:669.060988px;}
.y4c{bottom:671.047136px;}
.y9f{bottom:684.005754px;}
.yb{bottom:684.548367px;}
.y34{bottom:691.021229px;}
.yc9{bottom:697.499842px;}
.y5e{bottom:698.036704px;}
.y4b{bottom:702.907477px;}
.ya9{bottom:707.584499px;}
.y8b{bottom:714.599973px;}
.y9e{bottom:715.866095px;}
.ya{bottom:716.408746px;}
.y33{bottom:722.870917px;}
.yc8{bottom:725.754436px;}
.y5d{bottom:730.077293px;}
.y4a{bottom:734.760138px;}
.ya8{bottom:739.442983px;}
.y8a{bottom:746.454209px;}
.y9d{bottom:747.715975px;}
.y9{bottom:748.262324px;}
.y32{bottom:754.741988px;}
.y55{bottom:760.142480px;}
.y5c{bottom:761.938320px;}
.yc7{bottom:765.902702px;}
.y49{bottom:766.628235px;}
.ya7{bottom:771.305219px;}
.y89{bottom:778.320732px;}
.y9c{bottom:779.586854px;}
.y8{bottom:780.116572px;}
.y54{bottom:792.002860px;}
.yc6{bottom:794.341555px;}
.ye6{bottom:796.494612px;}
.y31{bottom:798.488615px;}
.ya6{bottom:803.165598px;}
.y88{bottom:810.181073px;}
.y9b{bottom:811.447233px;}
.y7{bottom:811.976952px;}
.y53{bottom:823.863239px;}
.ye5{bottom:824.933465px;}
.y30{bottom:830.336062px;}
.yc5{bottom:834.478332px;}
.ya5{bottom:835.025977px;}
.y87{bottom:842.041452px;}
.y6{bottom:843.837332px;}
.y52{bottom:855.723579px;}
.y2f{bottom:862.196442px;}
.yc4{bottom:862.744451px;}
.ye4{bottom:865.081731px;}
.ya4{bottom:866.886357px;}
.y86{bottom:873.901832px;}
.y5{bottom:875.697711px;}
.ye3{bottom:893.336361px;}
.y2e{bottom:894.056821px;}
.ya3{bottom:898.746737px;}
.yc3{bottom:902.697004px;}
.y85{bottom:905.762211px;}
.y4{bottom:907.558090px;}
.y48{bottom:925.917200px;}
.ya2{bottom:930.607116px;}
.yc2{bottom:931.135822px;}
.ye2{bottom:933.484627px;}
.y2d{bottom:937.622590px;}
.y3{bottom:939.418450px;}
.y47{bottom:957.777580px;}
.ye1{bottom:961.923445px;}
.y2c{bottom:969.482970px;}
.y2{bottom:971.278830px;}
.yc1{bottom:971.284106px;}
.ybd{bottom:989.637940px;}
.yc0{bottom:999.538718px;}
.y2b{bottom:1001.343634px;}
.ye0{bottom:1001.875998px;}
.ybc{bottom:1021.492827px;}
.ybf{bottom:1027.804855px;}
.ydf{bottom:1030.142135px;}
.y2a{bottom:1033.199919px;}
.y1c{bottom:1054.256726px;}
.ybe{bottom:1056.243691px;}
.yde{bottom:1058.580970px;}
.y29{bottom:1065.064089px;}
.y1b{bottom:1080.361357px;}
.y28{bottom:1096.924468px;}
.ydd{bottom:1098.717729px;}
.ydc{bottom:1126.983866px;}
.y27{bottom:1128.784838px;}
.y20{bottom:1140.120993px;}
.y26{bottom:1160.645217px;}
.ydb{bottom:1167.120625px;}
.y1f{bottom:1168.375614px;}
.y25{bottom:1192.505587px;}
.yda{bottom:1195.559461px;}
.y1e{bottom:1196.641751px;}
.y1d{bottom:1225.080587px;}
.h2{height:40.013280px;}
.h6{height:57.652380px;}
.h7{height:61.663775px;}
.h9{height:64.359025px;}
.h8{height:83.773679px;}
.h5{height:86.030365px;}
.h3{height:96.537192px;}
.h4{height:97.194877px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.136735px;}
.x3{left:97.376988px;}
.x9{left:109.444133px;}
.x4{left:206.099181px;}
.xa{left:223.733213px;}
.x5{left:272.886197px;}
.x6{left:289.258680px;}
.x8{left:302.764245px;}
.x7{left:305.815369px;}
.x1{left:837.361833px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-94.079547pt;}
.ws18{word-spacing:-83.840203pt;}
.ws7b{word-spacing:-78.180104pt;}
.ws55{word-spacing:-78.144404pt;}
.ws52{word-spacing:-77.991945pt;}
.wsa7{word-spacing:-77.897865pt;}
.ws31{word-spacing:-77.882801pt;}
.wsb1{word-spacing:-77.803786pt;}
.ws5e{word-spacing:-77.765522pt;}
.ws3f{word-spacing:-77.481360pt;}
.ws7a{word-spacing:-77.436572pt;}
.ws63{word-spacing:-77.386640pt;}
.ws9e{word-spacing:-77.333388pt;}
.ws25{word-spacing:-77.051149pt;}
.ws16{word-spacing:-76.957070pt;}
.ws4b{word-spacing:-76.862990pt;}
.ws94{word-spacing:-76.817797pt;}
.wsa5{word-spacing:-76.628876pt;}
.ws8e{word-spacing:-76.550576pt;}
.ws62{word-spacing:-76.439435pt;}
.ws51{word-spacing:-76.110354pt;}
.ws5{word-spacing:-76.016274pt;}
.ws38{word-spacing:-75.922195pt;}
.wsa{word-spacing:-75.832544pt;}
.wsaf{word-spacing:-75.681671pt;}
.ws3c{word-spacing:-75.169558pt;}
.ws2d{word-spacing:-74.981399pt;}
.ws49{word-spacing:-74.545025pt;}
.ws3a{word-spacing:-74.228763pt;}
.ws1f{word-spacing:-74.134683pt;}
.ws24{word-spacing:-74.040604pt;}
.ws93{word-spacing:-73.287967pt;}
.ws83{word-spacing:-73.193888pt;}
.ws9c{word-spacing:-73.099808pt;}
.ws7f{word-spacing:-72.840056pt;}
.wsac{word-spacing:-72.745336pt;}
.ws7e{word-spacing:-72.650615pt;}
.ws45{word-spacing:-72.347172pt;}
.ws27{word-spacing:-72.253092pt;}
.ws48{word-spacing:-71.406376pt;}
.ws54{word-spacing:-71.312297pt;}
.wsb6{word-spacing:-71.218217pt;}
.ws5a{word-spacing:-71.030058pt;}
.ws90{word-spacing:-70.945647pt;}
.wsa0{word-spacing:-70.850926pt;}
.ws2b{word-spacing:-70.465581pt;}
.ws6{word-spacing:-70.371501pt;}
.wsd{word-spacing:-70.277422pt;}
.wsaa{word-spacing:-70.089263pt;}
.ws50{word-spacing:-69.998442pt;}
.wsd7{word-spacing:-69.602123pt;}
.wsb5{word-spacing:-69.524786pt;}
.wsab{word-spacing:-69.430706pt;}
.ws13{word-spacing:-69.336626pt;}
.ws85{word-spacing:-69.335398pt;}
.wsb9{word-spacing:-69.051237pt;}
.ws2f{word-spacing:-68.583990pt;}
.wsc5{word-spacing:-68.497446pt;}
.ws2{word-spacing:-68.489911pt;}
.ws71{word-spacing:-68.104032pt;}
.wsd0{word-spacing:-67.826724pt;}
.wsd4{word-spacing:-67.742884pt;}
.wsd9{word-spacing:-67.730111pt;}
.wsc3{word-spacing:-67.659044pt;}
.ws14{word-spacing:-67.643195pt;}
.ws15{word-spacing:-67.549115pt;}
.wsc1{word-spacing:-67.491363pt;}
.ws35{word-spacing:-67.455036pt;}
.ws95{word-spacing:-67.266876pt;}
.ws6d{word-spacing:-67.062107pt;}
.ws82{word-spacing:-66.702399pt;}
.ws91{word-spacing:-66.608320pt;}
.ws4e{word-spacing:-66.514240pt;}
.wsce{word-spacing:-66.241959pt;}
.ws12{word-spacing:-65.761604pt;}
.wsdc{word-spacing:-65.757279pt;}
.ws4c{word-spacing:-65.667524pt;}
.ws78{word-spacing:-65.573445pt;}
.wsca{word-spacing:-65.339705pt;}
.ws98{word-spacing:-65.262417pt;}
.wsd3{word-spacing:-65.227678pt;}
.ws76{word-spacing:-64.820808pt;}
.wsbb{word-spacing:-64.726729pt;}
.ws57{word-spacing:-64.632649pt;}
.wsb7{word-spacing:-63.880013pt;}
.wsa6{word-spacing:-63.691854pt;}
.wsd5{word-spacing:-63.634714pt;}
.ws65{word-spacing:-63.368007pt;}
.wsa1{word-spacing:-62.939217pt;}
.wsc2{word-spacing:-62.796312pt;}
.wsb{word-spacing:-62.751058pt;}
.ws1b{word-spacing:-62.720572pt;}
.ws68{word-spacing:-62.562899pt;}
.ws74{word-spacing:-61.998422pt;}
.ws8d{word-spacing:-61.904342pt;}
.ws6a{word-spacing:-61.622104pt;}
.ws5b{word-spacing:-61.473598pt;}
.ws7{word-spacing:-61.057626pt;}
.ws11{word-spacing:-60.869467pt;}
.ws8c{word-spacing:-60.681308pt;}
.ws10{word-spacing:-60.336952pt;}
.wsbf{word-spacing:-60.281106pt;}
.ws42{word-spacing:-60.116831pt;}
.ws87{word-spacing:-60.022751pt;}
.ws26{word-spacing:-59.928672pt;}
.ws84{word-spacing:-59.579188pt;}
.wsa2{word-spacing:-59.176035pt;}
.ws29{word-spacing:-59.081956pt;}
.wsbe{word-spacing:-58.987876pt;}
.ws4a{word-spacing:-58.235240pt;}
.ws67{word-spacing:-58.047081pt;}
.ws6b{word-spacing:-57.858922pt;}
.ws56{word-spacing:-57.684778pt;}
.wsc8{word-spacing:-57.682060pt;}
.ws9d{word-spacing:-57.495337pt;}
.ws5d{word-spacing:-57.482603pt;}
.wscf{word-spacing:-57.430539pt;}
.ws9b{word-spacing:-57.294444pt;}
.ws30{word-spacing:-57.200365pt;}
.wsb4{word-spacing:-57.106285pt;}
.ws4d{word-spacing:-56.918126pt;}
.ws8a{word-spacing:-56.642853pt;}
.ws59{word-spacing:-56.353649pt;}
.ws75{word-spacing:-56.259569pt;}
.ws81{word-spacing:-56.165490pt;}
.ws5f{word-spacing:-55.412853pt;}
.ws6c{word-spacing:-55.318774pt;}
.wsd8{word-spacing:-55.083013pt;}
.ws58{word-spacing:-54.472058pt;}
.wsc4{word-spacing:-54.328452pt;}
.ws43{word-spacing:-54.283899pt;}
.ws92{word-spacing:-53.801238pt;}
.wsa9{word-spacing:-53.706518pt;}
.ws66{word-spacing:-53.531262pt;}
.ws32{word-spacing:-53.437183pt;}
.ws41{word-spacing:-53.343103pt;}
.wsc9{word-spacing:-53.238529pt;}
.ws5c{word-spacing:-52.590467pt;}
.ws79{word-spacing:-52.402308pt;}
.wsb3{word-spacing:-51.812108pt;}
.ws86{word-spacing:-51.555592pt;}
.ws28{word-spacing:-51.461512pt;}
.ws4f{word-spacing:-50.708876pt;}
.wsf{word-spacing:-50.520717pt;}
.wsc0{word-spacing:-50.220282pt;}
.ws2c{word-spacing:-49.768081pt;}
.ws8b{word-spacing:-49.674001pt;}
.ws73{word-spacing:-49.579921pt;}
.ws4{word-spacing:-48.827285pt;}
.ws37{word-spacing:-48.733206pt;}
.ws69{word-spacing:-48.639126pt;}
.wsb0{word-spacing:-48.212729pt;}
.ws96{word-spacing:-47.792410pt;}
.ws17{word-spacing:-47.705076pt;}
.wsd2{word-spacing:-47.621235pt;}
.ws0{word-spacing:-47.360000pt;}
.ws99{word-spacing:-46.969464pt;}
.wsc7{word-spacing:-46.866673pt;}
.ws3{word-spacing:-46.851615pt;}
.ws6f{word-spacing:-46.004899pt;}
.wsb2{word-spacing:-45.816740pt;}
.ws34{word-spacing:-45.064103pt;}
.ws2e{word-spacing:-44.875944pt;}
.wscc{word-spacing:-44.267627pt;}
.ws1c{word-spacing:-44.218003pt;}
.ws36{word-spacing:-44.123308pt;}
.ws64{word-spacing:-44.029228pt;}
.wsd6{word-spacing:-43.513065pt;}
.wsa4{word-spacing:-43.182512pt;}
.ws3d{word-spacing:-42.053558pt;}
.ws44{word-spacing:-41.392854pt;}
.wsad{word-spacing:-41.112762pt;}
.wscd{word-spacing:-40.997859pt;}
.ws33{word-spacing:-40.924603pt;}
.ws88{word-spacing:-40.360126pt;}
.ws20{word-spacing:-40.266046pt;}
.wsda{word-spacing:-40.159457pt;}
.ws7d{word-spacing:-39.983808pt;}
.ws39{word-spacing:-39.419330pt;}
.ws46{word-spacing:-39.231171pt;}
.ws97{word-spacing:-38.551239pt;}
.wsc{word-spacing:-38.290376pt;}
.ws80{word-spacing:-37.537739pt;}
.ws9a{word-spacing:-37.443660pt;}
.ws9{word-spacing:-37.349580pt;}
.ws8f{word-spacing:-36.502864pt;}
.wscb{word-spacing:-36.470488pt;}
.ws22{word-spacing:-35.899066pt;}
.ws7c{word-spacing:-34.527194pt;}
.ws2a{word-spacing:-33.909935pt;}
.ws6e{word-spacing:-33.680478pt;}
.ws72{word-spacing:-33.656586pt;}
.ws70{word-spacing:-33.398239pt;}
.ws61{word-spacing:-32.645603pt;}
.ws23{word-spacing:-31.920805pt;}
.ws1e{word-spacing:-31.798887pt;}
.ws47{word-spacing:-29.917296pt;}
.wsbd{word-spacing:-27.941626pt;}
.wsba{word-spacing:-27.847546pt;}
.wsc6{word-spacing:-25.068221pt;}
.ws8{word-spacing:-23.395961pt;}
.wsbc{word-spacing:-23.331728pt;}
.ws53{word-spacing:-20.509341pt;}
.ws19{word-spacing:-19.207810pt;}
.wsae{word-spacing:-18.721830pt;}
.ws77{word-spacing:-16.652080pt;}
.wsa3{word-spacing:-15.805364pt;}
.wse{word-spacing:-14.017853pt;}
.ws3e{word-spacing:-13.071428pt;}
.wsa8{word-spacing:-12.042182pt;}
.ws3b{word-spacing:-10.254671pt;}
.wsdb{word-spacing:-6.539536pt;}
.ws9f{word-spacing:-4.888463pt;}
.ws60{word-spacing:-4.824102pt;}
.ws21{word-spacing:-0.470398pt;}
.ws1d{word-spacing:0.000000pt;}
.wsb8{word-spacing:2.069750pt;}
.ws89{word-spacing:4.262422pt;}
.ws40{word-spacing:6.491489pt;}
.wsd1{word-spacing:13.833633pt;}
.ws1a{word-spacing:25.778155pt;}
._1b{margin-left:-12.291124pt;}
._1c{margin-left:-8.186935pt;}
._19{margin-left:-5.948762pt;}
._1d{margin-left:-4.778892pt;}
._1e{margin-left:-3.521289pt;}
._18{margin-left:-2.599046pt;}
._1{margin-left:-1.411193pt;}
._3{width:0.892433pt;}
._0{width:1.881591pt;}
._f{width:3.109915pt;}
._1a{width:17.057741pt;}
._16{width:18.251432pt;}
._6{width:19.670560pt;}
._c{width:20.885660pt;}
._30{width:22.208063pt;}
._23{width:23.664974pt;}
._7{width:24.651486pt;}
._15{width:25.887664pt;}
._2{width:26.857076pt;}
._28{width:28.414668pt;}
._14{width:30.117234pt;}
._8{width:31.720677pt;}
._12{width:33.436333pt;}
._2e{width:34.590007pt;}
._13{width:35.548312pt;}
._17{width:37.064585pt;}
._24{width:38.432818pt;}
._31{width:39.895018pt;}
._2d{width:41.137574pt;}
._25{width:42.056203pt;}
._26{width:43.137874pt;}
._29{width:44.222677pt;}
._11{width:45.115110pt;}
._5{width:46.996701pt;}
._4{width:48.639126pt;}
._37{width:49.630929pt;}
._35{width:51.275998pt;}
._2b{width:52.945214pt;}
._27{width:54.224931pt;}
._b{width:55.430272pt;}
._e{width:57.020140pt;}
._3a{width:58.756645pt;}
._21{width:60.137897pt;}
._36{width:61.526346pt;}
._34{width:62.559426pt;}
._1f{width:63.597774pt;}
._22{width:64.933525pt;}
._3d{width:67.365669pt;}
._a{width:70.432095pt;}
._9{width:72.451560pt;}
._3c{width:76.823136pt;}
._38{width:78.510705pt;}
._2c{width:80.185261pt;}
._10{width:81.249591pt;}
._3b{width:83.236351pt;}
._2a{width:85.284432pt;}
._33{width:90.160222pt;}
._32{width:91.394144pt;}
._20{width:94.600952pt;}
._3e{width:99.155755pt;}
._39{width:101.176306pt;}
._d{width:110.925076pt;}
._2f{width:358.881988pt;}
.fs0{font-size:47.360000pt;}
.fs6{font-size:62.720572pt;}
.fs4{font-size:73.599548pt;}
.fs5{font-size:78.720531pt;}
.fs3{font-size:83.840203pt;}
.fs1{font-size:94.079547pt;}
.fs2{font-size:94.720489pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.162059pt;}
.y24{bottom:83.353408pt;}
.y46{bottom:83.530576pt;}
.y8f{bottom:84.478047pt;}
.y51{bottom:93.923872pt;}
.ybb{bottom:98.252011pt;}
.y70{bottom:100.326394pt;}
.y23{bottom:102.231022pt;}
.y98{bottom:104.489460pt;}
.y45{bottom:111.846603pt;}
.y8e{bottom:112.801223pt;}
.y50{bottom:122.239898pt;}
.y7d{bottom:123.366811pt;}
.yba{bottom:126.560888pt;}
.y6f{bottom:128.649570pt;}
.y22{bottom:131.669535pt;}
.y97{bottom:132.805487pt;}
.yd9{bottom:133.283740pt;}
.y44{bottom:140.169779pt;}
.y8d{bottom:141.124399pt;}
.y21{bottom:150.551916pt;}
.y4f{bottom:150.553424pt;}
.y7c{bottom:151.673547pt;}
.yb9{bottom:154.874987pt;}
.y6e{bottom:156.956234pt;}
.yd8{bottom:158.562721pt;}
.y96{bottom:161.111529pt;}
.y9a{bottom:168.634391pt;}
.y8c{bottom:169.436586pt;}
.y1a{bottom:178.878042pt;}
.y43{bottom:178.879101pt;}
.y7b{bottom:180.006014pt;}
.yb8{bottom:183.200090pt;}
.y6d{bottom:185.288843pt;}
.y95{bottom:189.444689pt;}
.yd7{bottom:194.236014pt;}
.y99{bottom:196.966905pt;}
.y19{bottom:204.156960pt;}
.y42{bottom:207.202347pt;}
.y7a{bottom:208.329260pt;}
.yb7{bottom:211.523337pt;}
.y94{bottom:217.767936pt;}
.yd6{bottom:219.355082pt;}
.y6c{bottom:224.163238pt;}
.y41{bottom:235.525523pt;}
.y79{bottom:236.645287pt;}
.yb6{bottom:239.839363pt;}
.y18{bottom:240.320213pt;}
.y93{bottom:246.091112pt;}
.y6b{bottom:252.486414pt;}
.yd5{bottom:254.874834pt;}
.y40{bottom:263.841550pt;}
.y78{bottom:264.968463pt;}
.y17{bottom:268.643459pt;}
.y92{bottom:274.407138pt;}
.yb5{bottom:278.728128pt;}
.yd4{bottom:280.153814pt;}
.y6a{bottom:280.802441pt;}
.y3f{bottom:292.164796pt;}
.y77{bottom:293.291639pt;}
.y16{bottom:296.966635pt;}
.y91{bottom:302.730314pt;}
.yb4{bottom:307.044154pt;}
.y69{bottom:309.125687pt;}
.yd3{bottom:315.833479pt;}
.y3e{bottom:320.480823pt;}
.y76{bottom:321.607665pt;}
.y15{bottom:325.282662pt;}
.y90{bottom:331.046341pt;}
.yb3{bottom:335.367330pt;}
.y68{bottom:337.448863pt;}
.yd2{bottom:340.958918pt;}
.y3d{bottom:348.803999pt;}
.y75{bottom:349.930912pt;}
.y14{bottom:353.605908pt;}
.y4e{bottom:359.355218pt;}
.yb2{bottom:363.690577pt;}
.y67{bottom:365.606966pt;}
.yd1{bottom:376.638583pt;}
.y3c{bottom:377.127175pt;}
.y74{bottom:378.239718pt;}
.y13{bottom:381.921935pt;}
.y4d{bottom:387.678394pt;}
.yb1{bottom:391.994130pt;}
.y66{bottom:394.075447pt;}
.y84{bottom:398.237941pt;}
.yd0{bottom:401.917563pt;}
.y73{bottom:406.560105pt;}
.y5b{bottom:407.034138pt;}
.y12{bottom:410.236990pt;}
.y3b{bottom:415.995122pt;}
.yb0{bottom:420.319509pt;}
.y65{bottom:422.407036pt;}
.y83{bottom:426.564355pt;}
.y72{bottom:434.878991pt;}
.y5a{bottom:435.361313pt;}
.ycf{bottom:437.437315pt;}
.y11{bottom:438.565413pt;}
.y3a{bottom:444.319069pt;}
.yaf{bottom:448.648680pt;}
.y64{bottom:450.727339pt;}
.y82{bottom:454.884657pt;}
.yce{bottom:462.556383pt;}
.y71{bottom:463.199293pt;}
.y10{bottom:466.885785pt;}
.y39{bottom:472.639441pt;}
.y59{bottom:474.247204pt;}
.yae{bottom:476.957556pt;}
.y63{bottom:479.047641pt;}
.y81{bottom:483.205029pt;}
.yf{bottom:495.206088pt;}
.ycd{bottom:498.394711pt;}
.y38{bottom:500.959743pt;}
.y58{bottom:502.567576pt;}
.yad{bottom:505.277859pt;}
.y62{bottom:507.368013pt;}
.y80{bottom:511.525332pt;}
.ye{bottom:523.526460pt;}
.y37{bottom:529.280116pt;}
.yac{bottom:533.598161pt;}
.ycc{bottom:534.082059pt;}
.y61{bottom:535.688351pt;}
.y7f{bottom:539.845669pt;}
.y57{bottom:541.441971pt;}
.ya1{bottom:551.364440pt;}
.yd{bottom:551.846762pt;}
.y36{bottom:557.600418pt;}
.ycb{bottom:559.197254pt;}
.yab{bottom:561.918533pt;}
.y60{bottom:563.997192pt;}
.y7e{bottom:568.166006pt;}
.y56{bottom:569.762308pt;}
.ya0{bottom:579.684778pt;}
.yc{bottom:580.167100pt;}
.y35{bottom:585.920755pt;}
.yaa{bottom:590.238871pt;}
.y5f{bottom:592.317530pt;}
.yca{bottom:594.720879pt;}
.y4c{bottom:596.486344pt;}
.y9f{bottom:608.005115pt;}
.yb{bottom:608.487437pt;}
.y34{bottom:614.241092pt;}
.yc9{bottom:619.999859pt;}
.y5e{bottom:620.477070pt;}
.y4b{bottom:624.806646pt;}
.ya9{bottom:628.963999pt;}
.y8b{bottom:635.199976pt;}
.y9e{bottom:636.325417pt;}
.ya{bottom:636.807774pt;}
.y33{bottom:642.551926pt;}
.yc8{bottom:645.115054pt;}
.y5d{bottom:648.957594pt;}
.y4a{bottom:653.120123pt;}
.ya8{bottom:657.282651pt;}
.y8a{bottom:663.514853pt;}
.y9d{bottom:664.636423pt;}
.y9{bottom:665.122066pt;}
.y32{bottom:670.881767pt;}
.y55{bottom:675.682204pt;}
.y5c{bottom:677.278507pt;}
.yc7{bottom:680.802402pt;}
.y49{bottom:681.447320pt;}
.ya7{bottom:685.604639pt;}
.y89{bottom:691.840651pt;}
.y9c{bottom:692.966092pt;}
.y8{bottom:693.436953pt;}
.y54{bottom:704.002542pt;}
.yc6{bottom:706.081383pt;}
.ye6{bottom:707.995210pt;}
.y31{bottom:709.767658pt;}
.ya6{bottom:713.924976pt;}
.y88{bottom:720.160953pt;}
.y9b{bottom:721.286429pt;}
.y7{bottom:721.757291pt;}
.y53{bottom:732.322879pt;}
.ye5{bottom:733.274191pt;}
.y30{bottom:738.076500pt;}
.yc5{bottom:741.758517pt;}
.ya5{bottom:742.245313pt;}
.y87{bottom:748.481291pt;}
.y6{bottom:750.077628pt;}
.y52{bottom:760.643181pt;}
.y2f{bottom:766.396837pt;}
.yc4{bottom:766.883957pt;}
.ye4{bottom:768.961539pt;}
.ya4{bottom:770.565651pt;}
.y86{bottom:776.801628pt;}
.y5{bottom:778.397965pt;}
.ye3{bottom:794.076765pt;}
.y2e{bottom:794.717174pt;}
.ya3{bottom:798.885988pt;}
.yc3{bottom:802.397337pt;}
.y85{bottom:805.121965pt;}
.y4{bottom:806.718303pt;}
.y48{bottom:823.037512pt;}
.ya2{bottom:827.206325pt;}
.yc2{bottom:827.676286pt;}
.ye2{bottom:829.764113pt;}
.y2d{bottom:833.442303pt;}
.y3{bottom:835.038622pt;}
.y47{bottom:851.357849pt;}
.ye1{bottom:855.043062pt;}
.y2c{bottom:861.762640pt;}
.y2{bottom:863.358960pt;}
.yc1{bottom:863.363650pt;}
.ybd{bottom:879.678169pt;}
.yc0{bottom:888.478861pt;}
.y2b{bottom:890.083230pt;}
.ye0{bottom:890.556443pt;}
.ybc{bottom:907.993624pt;}
.ybf{bottom:913.604316pt;}
.ydf{bottom:915.681898pt;}
.y2a{bottom:918.399928pt;}
.y1c{bottom:937.117090pt;}
.ybe{bottom:938.883281pt;}
.yde{bottom:940.960863pt;}
.y29{bottom:946.723634pt;}
.y1b{bottom:960.321206pt;}
.y28{bottom:975.043972pt;}
.ydd{bottom:976.637982pt;}
.ydc{bottom:1001.763437pt;}
.y27{bottom:1003.364300pt;}
.y20{bottom:1013.440883pt;}
.y26{bottom:1031.684638pt;}
.ydb{bottom:1037.440556pt;}
.y1f{bottom:1038.556102pt;}
.y25{bottom:1060.004966pt;}
.yda{bottom:1062.719521pt;}
.y1e{bottom:1063.681557pt;}
.y1d{bottom:1088.960522pt;}
.h2{height:35.567360pt;}
.h6{height:51.246560pt;}
.h7{height:54.812245pt;}
.h9{height:57.208022pt;}
.h8{height:74.465493pt;}
.h5{height:76.471435pt;}
.h3{height:85.810837pt;}
.h4{height:86.395446pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:67.677098pt;}
.x3{left:86.557323pt;}
.x9{left:97.283674pt;}
.x4{left:183.199272pt;}
.xa{left:198.873967pt;}
.x5{left:242.565509pt;}
.x6{left:257.118827pt;}
.x8{left:269.123774pt;}
.x7{left:271.835883pt;}
.x1{left:744.321629pt;}
}




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