
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5b82d428cc54667ea796e913.woff')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_042ac89c37762e9d00d1394e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_5c3b0115681bed0e95969627.woff')format("woff");}.ff4{font-family:ff4;line-height:1.002000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.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_9d4e3b3956b840c42e6c53df.woff')format("woff");}.ff9{font-family:ff9;line-height:0.916667;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bf4d776bdf047ba0f3b2a018.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.860004px;}
.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;}
}
.ws4{word-spacing:-44.674803px;}
.ws5{word-spacing:-25.505999px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:335.629823px;}
.ws2{word-spacing:624.771233px;}
.ws3{word-spacing:907.184185px;}
._26{margin-left:-117.342174px;}
._2{margin-left:-112.076670px;}
._23{margin-left:-108.106073px;}
._2b{margin-left:-103.113436px;}
._28{margin-left:-99.781288px;}
._2d{margin-left:-97.655086px;}
._20{margin-left:-90.539586px;}
._22{margin-left:-88.418986px;}
._29{margin-left:-87.361563px;}
._25{margin-left:-75.549280px;}
._24{margin-left:-60.716437px;}
._21{margin-left:-59.203432px;}
._2a{margin-left:-57.380952px;}
._27{margin-left:-55.163092px;}
._19{margin-left:-51.545534px;}
._17{margin-left:-50.148697px;}
._1e{margin-left:-48.598945px;}
._18{margin-left:-46.832802px;}
._1b{margin-left:-45.697760px;}
._1c{margin-left:-44.299332px;}
._2e{margin-left:-43.051245px;}
._1a{margin-left:-41.316405px;}
._2c{margin-left:-39.402312px;}
._10{margin-left:-38.288236px;}
._7{margin-left:-37.252524px;}
._6{margin-left:-36.161321px;}
._9{margin-left:-35.087674px;}
._3{margin-left:-33.745674px;}
._a{margin-left:-32.454362px;}
._f{margin-left:-30.461331px;}
._1{margin-left:-28.449984px;}
._15{margin-left:-27.243525px;}
._14{margin-left:-25.732428px;}
._d{margin-left:-24.708750px;}
._5{margin-left:-23.086084px;}
._0{margin-left:-21.142957px;}
._4{margin-left:-19.609769px;}
._8{margin-left:-17.902854px;}
._e{margin-left:-16.538430px;}
._12{margin-left:-15.383815px;}
._1d{margin-left:-14.020955px;}
._16{margin-left:-12.494609px;}
._11{margin-left:-11.117550px;}
._30{margin-left:-9.979120px;}
._1f{margin-left:-8.727281px;}
._2f{margin-left:-7.295993px;}
._c{margin-left:-6.029538px;}
._b{margin-left:-4.413010px;}
._13{margin-left:-3.057459px;}
._3e{margin-left:-2.015257px;}
._31{margin-left:-1.003167px;}
._3d{width:1.009094px;}
._3f{width:2.199827px;}
._32{width:4.427054px;}
._33{width:8.893156px;}
._36{width:13.411396px;}
._3a{width:17.218493px;}
._35{width:22.434835px;}
._34{width:26.804576px;}
._3c{width:30.496760px;}
._3b{width:31.653744px;}
._38{width:35.559671px;}
._39{width:36.742570px;}
._37{width:40.434835px;}
.fc3{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(112,111,111);}
.fc0{color:rgb(255,176,0);}
.fs5{font-size:44.676036px;}
.fs3{font-size:47.594678px;}
.fs0{font-size:54.494264px;}
.fs9{font-size:57.816046px;}
.fs11{font-size:58.499998px;}
.fsc{font-size:62.999997px;}
.fs4{font-size:65.046052px;}
.fs6{font-size:65.700053px;}
.fsa{font-size:66.000002px;}
.fs10{font-size:71.999997px;}
.fse{font-size:76.499997px;}
.fs1{font-size:112.399890px;}
.fsf{font-size:116.999995px;}
.fs2{font-size:136.235509px;}
.fs8{font-size:143.994115px;}
.fsd{font-size:143.999994px;}
.fs7{font-size:151.406521px;}
.fsb{font-size:179.999993px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.840938px;}
.y80{bottom:15.749999px;}
.y99{bottom:19.755022px;}
.y75{bottom:26.505022px;}
.y7f{bottom:42.749998px;}
.y74{bottom:50.130021px;}
.y98{bottom:51.255020px;}
.y7e{bottom:66.374997px;}
.y97{bottom:71.505020px;}
.y73{bottom:73.755020px;}
.y96{bottom:91.755019px;}
.y95{bottom:112.005018px;}
.y61{bottom:114.011534px;}
.y94{bottom:132.255017px;}
.y60{bottom:135.830932px;}
.y6b{bottom:146.880016px;}
.y5f{bottom:157.650329px;}
.y93{bottom:163.755016px;}
.y72{bottom:176.130015px;}
.y5e{bottom:179.469727px;}
.y92{bottom:195.255014px;}
.y5d{bottom:201.289124px;}
.y91{bottom:215.505014px;}
.y71{bottom:216.630014px;}
.y5c{bottom:223.108522px;}
.y90{bottom:235.755013px;}
.y70{bottom:244.755012px;}
.y5b{bottom:244.927919px;}
.y5a{bottom:266.747317px;}
.y8f{bottom:267.255011px;}
.y31{bottom:273.388081px;}
.y20{bottom:275.249657px;}
.y2b{bottom:277.035784px;}
.y22{bottom:280.410787px;}
.y6a{bottom:287.505011px;}
.y59{bottom:288.566714px;}
.y1f{bottom:289.527329px;}
.y21{bottom:290.439795px;}
.y8e{bottom:298.755010px;}
.y2d{bottom:298.847751px;}
.y2a{bottom:302.012304px;}
.y1e{bottom:303.807805px;}
.y58{bottom:310.386112px;}
.y8d{bottom:319.005009px;}
.y2f{bottom:322.027570px;}
.y57{bottom:332.205509px;}
.y8c{bottom:339.255008px;}
.y6f{bottom:344.880008px;}
.y56{bottom:354.024907px;}
.yb8{bottom:359.505008px;}
.y69{bottom:360.630008px;}
.y6e{bottom:365.130007px;}
.y8b{bottom:370.755007px;}
.y30{bottom:373.361361px;}
.y55{bottom:375.844304px;}
.yb7{bottom:379.755007px;}
.y26{bottom:383.537069px;}
.y8a{bottom:391.005006px;}
.y29{bottom:394.022377px;}
.y54{bottom:397.663702px;}
.y25{bottom:397.816151px;}
.y2c{bottom:398.822381px;}
.yb6{bottom:400.005006px;}
.y27{bottom:407.426388px;}
.y89{bottom:411.255005px;}
.y24{bottom:412.093822px;}
.y28{bottom:418.997397px;}
.y53{bottom:419.483099px;}
.yb5{bottom:420.255005px;}
.y2e{bottom:422.006400px;}
.y6d{bottom:424.755005px;}
.y23{bottom:426.372903px;}
.y88{bottom:431.505005px;}
.yb4{bottom:440.505004px;}
.y52{bottom:441.302497px;}
.y87{bottom:451.755004px;}
.y6c{bottom:459.630003px;}
.y51{bottom:463.121883px;}
.yb3{bottom:472.005003px;}
.y86{bottom:483.255002px;}
.y50{bottom:484.941280px;}
.yb2{bottom:492.255002px;}
.y4f{bottom:506.760678px;}
.yb1{bottom:523.755001px;}
.y4e{bottom:528.580075px;}
.yb{bottom:542.941477px;}
.y85{bottom:544.005000px;}
.y4d{bottom:550.399473px;}
.ya{bottom:557.219148px;}
.y9{bottom:571.498229px;}
.y4c{bottom:572.218870px;}
.yb0{bottom:584.504998px;}
.y4b{bottom:594.038268px;}
.y8{bottom:600.056452px;}
.y7{bottom:614.334124px;}
.y4a{bottom:615.857665px;}
.yaf{bottom:616.004997px;}
.y6{bottom:628.613205px;}
.y1c{bottom:634.687070px;}
.yae{bottom:636.254996px;}
.y49{bottom:637.677063px;}
.y84{bottom:650.879995px;}
.y5{bottom:657.169928px;}
.y48{bottom:659.496460px;}
.yad{bottom:667.754995px;}
.y83{bottom:671.129995px;}
.y4{bottom:671.447599px;}
.y47{bottom:681.315858px;}
.y82{bottom:691.379994px;}
.y46{bottom:703.135255px;}
.y3{bottom:703.328625px;}
.y81{bottom:711.629993px;}
.yc{bottom:714.787134px;}
.y45{bottom:724.954652px;}
.y7d{bottom:727.379992px;}
.y2{bottom:728.305145px;}
.yac{bottom:728.504992px;}
.y44{bottom:746.774049px;}
.y43{bottom:768.593446px;}
.y16{bottom:790.080444px;}
.y42{bottom:790.412843px;}
.y15{bottom:804.358116px;}
.y41{bottom:812.232240px;}
.y14{bottom:818.637197px;}
.yab{bottom:824.129988px;}
.y67{bottom:834.051629px;}
.y40{bottom:834.051637px;}
.yaa{bottom:844.379987px;}
.y13{bottom:847.195420px;}
.y66{bottom:855.871027px;}
.y3f{bottom:855.871034px;}
.y12{bottom:861.473091px;}
.ya9{bottom:864.629987px;}
.y7c{bottom:868.004986px;}
.y11{bottom:875.750763px;}
.y3e{bottom:877.690424px;}
.ya8{bottom:896.129985px;}
.y3d{bottom:899.509829px;}
.y10{bottom:904.307486px;}
.ya7{bottom:916.379984px;}
.yf{bottom:918.586567px;}
.y3c{bottom:921.329219px;}
.y65{bottom:921.329223px;}
.ye{bottom:932.864239px;}
.ya6{bottom:936.629984px;}
.y64{bottom:943.148620px;}
.y3b{bottom:943.148624px;}
.yd{bottom:947.143320px;}
.y3a{bottom:964.968014px;}
.y63{bottom:964.968018px;}
.ya5{bottom:968.129982px;}
.y19{bottom:979.966346px;}
.y62{bottom:986.787415px;}
.y39{bottom:986.787419px;}
.ya4{bottom:988.379981px;}
.y17{bottom:990.484355px;}
.y18{bottom:1004.942866px;}
.y38{bottom:1008.606812px;}
.ya3{bottom:1008.629981px;}
.y37{bottom:1030.426209px;}
.ya2{bottom:1040.129979px;}
.y1a{bottom:1043.113397px;}
.y36{bottom:1052.245605px;}
.ya1{bottom:1060.379978px;}
.y1b{bottom:1067.573916px;}
.y35{bottom:1074.065004px;}
.y68{bottom:1078.379978px;}
.y7b{bottom:1079.504978px;}
.ya0{bottom:1080.629978px;}
.y34{bottom:1095.884400px;}
.y7a{bottom:1103.129977px;}
.y9f{bottom:1112.129976px;}
.y33{bottom:1117.703796px;}
.y79{bottom:1126.754976px;}
.y32{bottom:1139.523194px;}
.y9e{bottom:1143.629975px;}
.y9d{bottom:1163.879974px;}
.y78{bottom:1174.004974px;}
.yb9{bottom:1178.504974px;}
.y9c{bottom:1195.379973px;}
.y1d{bottom:1196.724020px;}
.y77{bottom:1197.629973px;}
.y76{bottom:1221.254972px;}
.y9b{bottom:1226.879971px;}
.y9a{bottom:1247.129971px;}
.h6{height:42.442234px;}
.h4{height:45.214944px;}
.hc{height:48.049806px;}
.ha{height:54.925244px;}
.h16{height:55.574998px;}
.h12{height:55.694089px;}
.h11{height:57.749998px;}
.hb{height:59.167970px;}
.hf{height:59.849998px;}
.h5{height:61.793749px;}
.h7{height:62.415050px;}
.h15{height:68.399997px;}
.h13{height:90.323996px;}
.h14{height:95.624996px;}
.h2{height:106.779895px;}
.h10{height:111.167995px;}
.h3{height:129.423734px;}
.h9{height:136.794409px;}
.he{height:138.959994px;}
.h8{height:143.836195px;}
.h1{height:1261.441462px;}
.hd{height:1262.879970px;}
.h0{height:1263.000000px;}
.w4{width:805.499966px;}
.w3{width:892.439940px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.w2{width:894.000000px;}
.x61{left:-6.954346px;}
.x62{left:-2.700440px;}
.x0{left:0.000000px;}
.xe3{left:6.565429px;}
.xd6{left:11.250000px;}
.x5e{left:28.124999px;}
.xe8{left:38.249998px;}
.x191{left:43.994749px;}
.x18b{left:47.101683px;}
.xd7{left:49.499998px;}
.x18c{left:51.531370px;}
.x13a{left:53.546262px;}
.xd8{left:56.944334px;}
.x63{left:59.978757px;}
.x1a6{left:61.505857px;}
.x64{left:64.408445px;}
.xe4{left:67.666989px;}
.x14{left:69.134763px;}
.x96{left:72.460324px;}
.xd9{left:75.348630px;}
.x97{left:76.890011px;}
.x171{left:78.561083px;}
.x182{left:79.955197px;}
.xe6{left:81.815732px;}
.x10b{left:83.008297px;}
.x183{left:84.384884px;}
.x98{left:85.734005px;}
.x10c{left:87.437985px;}
.xe9{left:89.160641px;}
.x99{left:90.163693px;}
.xea{left:93.590328px;}
.x77{left:95.631588px;}
.x148{left:97.066402px;}
.x1ad{left:98.119991px;}
.x78{left:100.061275px;}
.xfe{left:101.334590px;}
.x90{left:103.883419px;}
.x188{left:105.579708px;}
.x5f{left:106.744258px;}
.x13{left:108.000000px;}
.xe5{left:109.388667px;}
.x60{left:111.173946px;}
.xda{left:113.247066px;}
.x20{left:114.925776px;}
.xb7{left:116.449580px;}
.x79{left:118.887446px;}
.x65{left:121.279170px;}
.x7a{left:123.317133px;}
.x66{left:125.708857px;}
.x143{left:127.919804px;}
.xe7{left:129.839717px;}
.x18a{left:132.826899px;}
.xc6{left:133.906855px;}
.xb8{left:134.937372px;}
.x91{left:137.298334px;}
.xc7{left:138.336542px;}
.xb9{left:139.367060px;}
.x189{left:140.400444px;}
.xb{left:141.416813px;}
.xa8{left:142.743158px;}
.x165{left:143.919794px;}
.x12b{left:144.988764px;}
.x9a{left:146.449945px;}
.x19e{left:147.607904px;}
.x115{left:148.799921px;}
.x92{left:151.171869px;}
.x116{left:152.529779px;}
.x18d{left:154.121698px;}
.x93{left:155.601556px;}
.x164{left:157.131951px;}
.x12f{left:160.638787px;}
.x161{left:163.784173px;}
.x21{left:165.658011px;}
.x7b{left:166.944939px;}
.x118{left:169.167473px;}
.x7c{left:171.374627px;}
.x119{left:173.597161px;}
.x10d{left:176.777703px;}
.x169{left:178.280632px;}
.x22{left:180.923514px;}
.x19b{left:182.422478px;}
.xc{left:183.456147px;}
.x158{left:185.025139px;}
.x122{left:188.093620px;}
.x16d{left:189.285637px;}
.xd2{left:190.353513px;}
.x14a{left:191.950920px;}
.x184{left:193.089103px;}
.x12c{left:194.284416px;}
.x1{left:196.623157px;}
.x2{left:198.013658px;}
.x7{left:200.077660px;}
.x8{left:201.471161px;}
.xff{left:202.994376px;}
.x67{left:204.981803px;}
.x192{left:206.670401px;}
.x9b{left:207.834952px;}
.x14b{left:209.039054px;}
.x23{left:210.136382px;}
.x9c{left:212.264640px;}
.x24{left:214.104644px;}
.x100{left:216.275748px;}
.x68{left:218.255484px;}
.x47{left:220.201168px;}
.x7d{left:221.770010px;}
.x5d{left:223.558584px;}
.x9d{left:225.538321px;}
.x13b{left:226.627066px;}
.x196{left:229.425146px;}
.x12d{left:231.075430px;}
.x25{left:233.246122px;}
.x12e{left:235.505117px;}
.x26{left:237.214384px;}
.x3{left:239.179691px;}
.x5{left:242.634194px;}
.xa{left:244.045695px;}
.xdb{left:245.671865px;}
.xe{left:247.521198px;}
.x7e{left:248.832631px;}
.xa9{left:250.447622px;}
.x16f{left:251.647328px;}
.x48{left:253.685298px;}
.x9{left:255.303204px;}
.x4{left:256.834705px;}
.x6{left:260.289208px;}
.x17d{left:262.256825px;}
.x49{left:263.329096px;}
.x185{left:266.532704px;}
.xaa{left:268.750843px;}
.x13c{left:270.362537px;}
.x19c{left:271.377674px;}
.x153{left:272.649891px;}
.x13d{left:274.792225px;}
.x101{left:276.361072px;}
.x14f{left:278.368274px;}
.x10e{left:281.590564px;}
.x7f{left:283.877918px;}
.x102{left:285.328113px;}
.x1a9{left:286.720081px;}
.x94{left:288.422962px;}
.x4a{left:290.430169px;}
.x149{left:292.022048px;}
.x117{left:293.272327px;}
.x16e{left:294.867542px;}
.xba{left:295.882678px;}
.x178{left:297.236194px;}
.xeb{left:299.047839px;}
.x4b{left:300.073968px;}
.x179{left:301.665882px;}
.x3d{left:302.946887px;}
.x18e{left:305.753894px;}
.x3e{left:307.376574px;}
.xbb{left:309.187121px;}
.x123{left:311.155871px;}
.xec{left:312.329211px;}
.xbc{left:313.616808px;}
.x69{left:315.693224px;}
.xed{left:316.758898px;}
.x103{left:317.897081px;}
.x1ae{left:318.927599px;}
.x6a{left:320.122912px;}
.x80{left:321.253404px;}
.xab{left:323.414415px;}
.x4c{left:324.737175px;}
.x19f{left:325.948961px;}
.xac{left:327.844103px;}
.x9e{left:329.236070px;}
.x81{left:330.435777px;}
.x27{left:332.637231px;}
.x4d{left:333.734977px;}
.x28{left:336.605493px;}
.x10f{left:338.530503px;}
.xbd{left:341.025499px;}
.xdc{left:342.870103px;}
.x11a{left:344.616929px;}
.x166{left:346.278062px;}
.x1aa{left:347.366807px;}
.x1a{left:348.591788px;}
.x167{left:350.707750px;}
.x144{left:353.340079px;}
.x170{left:355.306626px;}
.x37{left:356.537100px;}
.x3f{left:358.945298px;}
.x199{left:360.486679px;}
.x6b{left:361.805039px;}
.xdd{left:363.111313px;}
.x40{left:364.690048px;}
.x6c{left:366.234726px;}
.x4e{left:367.542104px;}
.x174{left:369.903061px;}
.x82{left:371.894882px;}
.x9f{left:373.794418px;}
.x95{left:375.024887px;}
.x15{left:377.859359px;}
.xf2{left:379.766586px;}
.x16a{left:381.815536px;}
.x13e{left:383.742538px;}
.x172{left:384.899398px;}
.x16b{left:386.245223px;}
.xad{left:387.575668px;}
.x124{left:389.152206px;}
.x104{left:390.279402px;}
.xf3{left:392.763412px;}
.x105{left:394.709090px;}
.x130{left:395.842879px;}
.xa0{left:397.311751px;}
.x1b{left:399.041005px;}
.x131{left:400.272566px;}
.xf{left:402.601822px;}
.x38{left:404.135330px;}
.xd{left:405.238824px;}
.x13f{left:406.721541px;}
.x39{left:408.103592px;}
.x19d{left:409.551619px;}
.x140{left:411.152327px;}
.x125{left:412.338850px;}
.x154{left:413.461653px;}
.x150{left:414.904157px;}
.x126{left:416.768538px;}
.x41{left:418.153913px;}
.x29{left:419.632605px;}
.x1c{left:422.235340px;}
.x2a{left:423.600866px;}
.x16{left:426.278302px;}
.x151{left:427.562604px;}
.x1a0{left:428.800763px;}
.x17{left:430.246564px;}
.x3a{left:431.613263px;}
.x2b{left:432.867834px;}
.xee{left:433.884138px;}
.x2c{left:436.836095px;}
.x4f{left:438.786242px;}
.x162{left:440.155133px;}
.x83{left:442.123883px;}
.x168{left:444.677106px;}
.x84{left:446.553570px;}
.x50{left:447.968615px;}
.x1d{left:450.005480px;}
.xa1{left:452.090680px;}
.x6d{left:454.028668px;}
.x17e{left:455.601910px;}
.x51{left:457.712389px;}
.x18f{left:459.339459px;}
.xa2{left:461.057720px;}
.x110{left:463.053936px;}
.x3b{left:464.415142px;}
.x159{left:466.971661px;}
.x1af{left:468.006578px;}
.x16c{left:469.878643px;}
.x6e{left:472.178081px;}
.x1e{left:473.530504px;}
.x52{left:475.707993px;}
.xc8{left:478.253521px;}
.xf4{left:480.503520px;}
.xc9{left:482.683208px;}
.x106{left:484.025736px;}
.x53{left:485.882431px;}
.x3c{left:487.940165px;}
.x11b{left:489.858378px;}
.xae{left:491.350322px;}
.x132{left:492.542338px;}
.x54{left:494.880234px;}
.x18{left:496.404255px;}
.xf5{left:498.283793px;}
.x19{left:500.372517px;}
.xde{left:502.031229px;}
.x11c{left:503.470438px;}
.x55{left:504.647079px;}
.x163{left:505.977518px;}
.x193{left:507.250833px;}
.x173{left:508.699931px;}
.x56{left:510.476425px;}
.x155{left:511.968363px;}
.xd3{left:513.691019px;}
.x141{left:515.119241px;}
.x85{left:516.844094px;}
.xca{left:518.920511px;}
.x19a{left:520.016946px;}
.x111{left:521.893411px;}
.xcb{left:523.350199px;}
.x194{left:524.546609px;}
.x1f{left:525.827278px;}
.xd4{left:527.811746px;}
.x57{left:529.987044px;}
.xbe{left:531.809670px;}
.x133{left:533.209329px;}
.xf6{left:534.605691px;}
.x190{left:535.913063px;}
.xbf{left:540.776711px;}
.xcc{left:541.837991px;}
.x86{left:544.245094px;}
.xcd{left:546.267678px;}
.x87{left:548.674782px;}
.x134{left:551.697121px;}
.x14c{left:553.439553px;}
.x42{left:555.058937px;}
.x135{left:556.126808px;}
.x2d{left:557.960358px;}
.x43{left:559.596290px;}
.x175{left:560.894874px;}
.x2e{left:561.928619px;}
.x1ab{left:563.191016px;}
.x176{left:565.324562px;}
.x58{left:566.808820px;}
.x11d{left:569.331275px;}
.x6f{left:571.653785px;}
.x11e{left:573.760963px;}
.xa3{left:577.444678px;}
.x2f{left:581.070098px;}
.x186{left:583.709082px;}
.x30{left:585.038360px;}
.x145{left:588.851788px;}
.x152{left:590.453589px;}
.x44{left:591.834570px;}
.x156{left:593.394629px;}
.x11f{left:596.340063px;}
.x45{left:597.510107px;}
.x195{left:598.920751px;}
.x59{left:600.308330px;}
.xaf{left:602.384741px;}
.x127{left:604.507299px;}
.xb0{left:606.814428px;}
.x197{left:608.295385px;}
.xc0{left:609.306127px;}
.x5a{left:610.452006px;}
.xd5{left:612.485576px;}
.xc1{left:613.735814px;}
.x1a7{left:614.786107px;}
.xf7{left:617.408544px;}
.x142{left:618.908183px;}
.x177{left:619.995824px;}
.xf8{left:621.838231px;}
.x11{left:623.911999px;}
.x146{left:625.089092px;}
.xce{left:626.271215px;}
.x10{left:630.438504px;}
.x136{left:632.208226px;}
.x198{left:633.496921px;}
.x70{left:635.622777px;}
.x137{left:636.637913px;}
.x157{left:637.952977px;}
.x71{left:640.052464px;}
.x12{left:642.509014px;}
.x138{left:645.820286px;}
.x17a{left:647.066136px;}
.xdf{left:648.993137px;}
.xef{left:651.115696px;}
.x5b{left:652.495584px;}
.xe0{left:654.055637px;}
.x112{left:655.845310px;}
.x88{left:657.071384px;}
.x72{left:658.878635px;}
.x107{left:660.436496px;}
.x46{left:661.617526px;}
.x73{left:663.308323px;}
.x89{left:665.915377px;}
.x5c{left:667.291970px;}
.xe1{left:669.234347px;}
.x8a{left:670.345065px;}
.x17f{left:671.856784px;}
.x113{left:673.556368px;}
.xcf{left:675.305393px;}
.x1a1{left:676.532565px;}
.x17b{left:677.774020px;}
.xb1{left:678.819919px;}
.xf9{left:680.554659px;}
.xb2{left:683.249606px;}
.x114{left:686.553194px;}
.xe2{left:689.150362px;}
.xc2{left:690.155611px;}
.x1a4{left:691.267427px;}
.x31{left:693.433451px;}
.xc3{left:694.585298px;}
.x120{left:695.608126px;}
.x32{left:697.401713px;}
.xfa{left:699.042451px;}
.x128{left:700.937593px;}
.x8b{left:702.298799px;}
.xc4{left:703.767671px;}
.x33{left:706.668680px;}
.xc5{left:708.197358px;}
.x15a{left:709.489351px;}
.x34{left:710.636942px;}
.x108{left:712.539155px;}
.x15b{left:713.919038px;}
.xfb{left:716.130585px;}
.x187{left:718.007050px;}
.x1a8{left:719.275971px;}
.xfc{left:720.560273px;}
.xd0{left:722.939912px;}
.x35{left:724.072122px;}
.xf0{left:725.828217px;}
.x17c{left:726.846650px;}
.x36{left:728.040383px;}
.x14d{left:730.142549px;}
.x139{left:732.860566px;}
.x74{left:734.637055px;}
.x147{left:736.874969px;}
.x75{left:739.066742px;}
.x15c{left:741.666108px;}
.x121{left:744.596161px;}
.x15d{left:746.095795px;}
.x1a2{left:749.730072px;}
.x1a3{left:754.159759px;}
.x15e{left:758.754242px;}
.xa4{left:760.830657px;}
.x15f{left:763.183929px;}
.x8c{left:764.229826px;}
.xa5{left:765.260344px;}
.x1a5{left:767.541106px;}
.x8d{left:768.659514px;}
.x129{left:771.081999px;}
.x180{left:772.255339px;}
.xa6{left:774.442717px;}
.x12a{left:775.511686px;}
.xb3{left:777.388152px;}
.xa7{left:778.872404px;}
.x1ac{left:780.145719px;}
.xb4{left:781.817839px;}
.xd1{left:782.902190px;}
.x14e{left:784.398528px;}
.x76{left:788.893034px;}
.xfd{left:793.642423px;}
.xf1{left:800.079313px;}
.xb5{left:815.232755px;}
.x109{left:817.513516px;}
.xb6{left:819.662442px;}
.x10a{left:821.943203px;}
.x181{left:827.080410px;}
.x8e{left:832.628505px;}
.x160{left:834.943325px;}
.x8f{left:837.058193px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.320003pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-39.710936pt;}
.ws5{word-spacing:-22.671999pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:298.337620pt;}
.ws2{word-spacing:555.352207pt;}
.ws3{word-spacing:806.385943pt;}
._26{margin-left:-104.304154pt;}
._2{margin-left:-99.623706pt;}
._23{margin-left:-96.094287pt;}
._2b{margin-left:-91.656388pt;}
._28{margin-left:-88.694478pt;}
._2d{margin-left:-86.804521pt;}
._20{margin-left:-80.479632pt;}
._22{margin-left:-78.594654pt;}
._29{margin-left:-77.654722pt;}
._25{margin-left:-67.154916pt;}
._24{margin-left:-53.970167pt;}
._21{margin-left:-52.625273pt;}
._2a{margin-left:-51.005291pt;}
._27{margin-left:-49.033859pt;}
._19{margin-left:-45.818253pt;}
._17{margin-left:-44.576619pt;}
._1e{margin-left:-43.199062pt;}
._18{margin-left:-41.629157pt;}
._1b{margin-left:-40.620231pt;}
._1c{margin-left:-39.377184pt;}
._2e{margin-left:-38.267774pt;}
._1a{margin-left:-36.725693pt;}
._2c{margin-left:-35.024277pt;}
._10{margin-left:-34.033988pt;}
._7{margin-left:-33.113355pt;}
._6{margin-left:-32.143397pt;}
._9{margin-left:-31.189044pt;}
._3{margin-left:-29.996155pt;}
._a{margin-left:-28.848322pt;}
._f{margin-left:-27.076738pt;}
._1{margin-left:-25.288874pt;}
._15{margin-left:-24.216467pt;}
._14{margin-left:-22.873269pt;}
._d{margin-left:-21.963333pt;}
._5{margin-left:-20.520964pt;}
._0{margin-left:-18.793739pt;}
._4{margin-left:-17.430906pt;}
._8{margin-left:-15.913648pt;}
._e{margin-left:-14.700827pt;}
._12{margin-left:-13.674502pt;}
._1d{margin-left:-12.463071pt;}
._16{margin-left:-11.106319pt;}
._11{margin-left:-9.882267pt;}
._30{margin-left:-8.870328pt;}
._1f{margin-left:-7.757583pt;}
._2f{margin-left:-6.485327pt;}
._c{margin-left:-5.359589pt;}
._b{margin-left:-3.922676pt;}
._13{margin-left:-2.717742pt;}
._3e{margin-left:-1.791340pt;}
._31{margin-left:-0.891704pt;}
._3d{width:0.896973pt;}
._3f{width:1.955402pt;}
._32{width:3.935159pt;}
._33{width:7.905028pt;}
._36{width:11.921241pt;}
._3a{width:15.305327pt;}
._35{width:19.942075pt;}
._34{width:23.826290pt;}
._3c{width:27.108231pt;}
._3b{width:28.136661pt;}
._38{width:31.608597pt;}
._39{width:32.660062pt;}
._37{width:35.942075pt;}
.fs5{font-size:39.712032pt;}
.fs3{font-size:42.306381pt;}
.fs0{font-size:48.439345pt;}
.fs9{font-size:51.392041pt;}
.fs11{font-size:51.999998pt;}
.fsc{font-size:55.999998pt;}
.fs4{font-size:57.818713pt;}
.fs6{font-size:58.400047pt;}
.fsa{font-size:58.666668pt;}
.fs10{font-size:63.999997pt;}
.fse{font-size:67.999997pt;}
.fs1{font-size:99.911013pt;}
.fsf{font-size:103.999996pt;}
.fs2{font-size:121.098230pt;}
.fs8{font-size:127.994769pt;}
.fsd{font-size:127.999995pt;}
.fs7{font-size:134.583574pt;}
.fsb{font-size:159.999993pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.747501pt;}
.y80{bottom:13.999999pt;}
.y99{bottom:17.560019pt;}
.y75{bottom:23.560019pt;}
.y7f{bottom:37.999998pt;}
.y74{bottom:44.560018pt;}
.y98{bottom:45.560018pt;}
.y7e{bottom:58.999998pt;}
.y97{bottom:63.560017pt;}
.y73{bottom:65.560017pt;}
.y96{bottom:81.560017pt;}
.y95{bottom:99.560016pt;}
.y61{bottom:101.343586pt;}
.y94{bottom:117.560015pt;}
.y60{bottom:120.738606pt;}
.y6b{bottom:130.560015pt;}
.y5f{bottom:140.133626pt;}
.y93{bottom:145.560014pt;}
.y72{bottom:156.560014pt;}
.y5e{bottom:159.528646pt;}
.y92{bottom:173.560013pt;}
.y5d{bottom:178.923666pt;}
.y91{bottom:191.560012pt;}
.y71{bottom:192.560012pt;}
.y5c{bottom:198.318686pt;}
.y90{bottom:209.560011pt;}
.y70{bottom:217.560011pt;}
.y5b{bottom:217.713706pt;}
.y5a{bottom:237.108726pt;}
.y8f{bottom:237.560010pt;}
.y31{bottom:243.011628pt;}
.y20{bottom:244.666362pt;}
.y2b{bottom:246.254030pt;}
.y22{bottom:249.254033pt;}
.y6a{bottom:255.560009pt;}
.y59{bottom:256.503746pt;}
.y1f{bottom:257.357626pt;}
.y21{bottom:258.168706pt;}
.y8e{bottom:265.560009pt;}
.y2d{bottom:265.642446pt;}
.y2a{bottom:268.455381pt;}
.y1e{bottom:270.051383pt;}
.y58{bottom:275.898766pt;}
.y8d{bottom:283.560008pt;}
.y2f{bottom:286.246729pt;}
.y57{bottom:295.293786pt;}
.y8c{bottom:301.560008pt;}
.y6f{bottom:306.560007pt;}
.y56{bottom:314.688806pt;}
.yb8{bottom:319.560007pt;}
.y69{bottom:320.560007pt;}
.y6e{bottom:324.560007pt;}
.y8b{bottom:329.560006pt;}
.y30{bottom:331.876765pt;}
.y55{bottom:334.083826pt;}
.yb7{bottom:337.560006pt;}
.y26{bottom:340.921839pt;}
.y8a{bottom:347.560006pt;}
.y29{bottom:350.242113pt;}
.y54{bottom:353.478846pt;}
.y25{bottom:353.614356pt;}
.y2c{bottom:354.508783pt;}
.yb6{bottom:355.560005pt;}
.y27{bottom:362.156790pt;}
.y89{bottom:365.560005pt;}
.y24{bottom:366.305620pt;}
.y28{bottom:372.442131pt;}
.y53{bottom:372.873866pt;}
.yb5{bottom:373.560005pt;}
.y2e{bottom:375.116800pt;}
.y6d{bottom:377.560004pt;}
.y23{bottom:378.998136pt;}
.y88{bottom:383.560004pt;}
.yb4{bottom:391.560004pt;}
.y52{bottom:392.268886pt;}
.y87{bottom:401.560003pt;}
.y6c{bottom:408.560003pt;}
.y51{bottom:411.663896pt;}
.yb3{bottom:419.560003pt;}
.y86{bottom:429.560002pt;}
.y50{bottom:431.058916pt;}
.yb2{bottom:437.560002pt;}
.y4f{bottom:450.453936pt;}
.yb1{bottom:465.560001pt;}
.y4e{bottom:469.848956pt;}
.yb{bottom:482.614646pt;}
.y85{bottom:483.560000pt;}
.y4d{bottom:489.243976pt;}
.ya{bottom:495.305909pt;}
.y9{bottom:507.998426pt;}
.y4c{bottom:508.638996pt;}
.yb0{bottom:519.559998pt;}
.y4b{bottom:528.034016pt;}
.y8{bottom:533.383513pt;}
.y7{bottom:546.074777pt;}
.y4a{bottom:547.429036pt;}
.yaf{bottom:547.559997pt;}
.y6{bottom:558.767293pt;}
.y1c{bottom:564.166284pt;}
.yae{bottom:565.559997pt;}
.y49{bottom:566.824056pt;}
.y84{bottom:578.559996pt;}
.y5{bottom:584.151047pt;}
.y48{bottom:586.219076pt;}
.yad{bottom:593.559995pt;}
.y83{bottom:596.559995pt;}
.y4{bottom:596.842311pt;}
.y47{bottom:605.614096pt;}
.y82{bottom:614.559994pt;}
.y46{bottom:625.009116pt;}
.y3{bottom:625.181000pt;}
.y81{bottom:632.559994pt;}
.yc{bottom:635.366341pt;}
.y45{bottom:644.404135pt;}
.y7d{bottom:646.559993pt;}
.y2{bottom:647.382351pt;}
.yac{bottom:647.559993pt;}
.y44{bottom:663.799155pt;}
.y43{bottom:683.194174pt;}
.y16{bottom:702.293728pt;}
.y42{bottom:702.589194pt;}
.y15{bottom:714.984992pt;}
.y41{bottom:721.984213pt;}
.y14{bottom:727.677509pt;}
.yab{bottom:732.559990pt;}
.y67{bottom:741.379225pt;}
.y40{bottom:741.379233pt;}
.yaa{bottom:750.559989pt;}
.y13{bottom:753.062596pt;}
.y66{bottom:760.774246pt;}
.y3f{bottom:760.774252pt;}
.y12{bottom:765.753859pt;}
.ya9{bottom:768.559988pt;}
.y7c{bottom:771.559988pt;}
.y11{bottom:778.445123pt;}
.y3e{bottom:780.169265pt;}
.ya8{bottom:796.559987pt;}
.y3d{bottom:799.564292pt;}
.y10{bottom:803.828876pt;}
.ya7{bottom:814.559986pt;}
.yf{bottom:816.521393pt;}
.y3c{bottom:818.959305pt;}
.y65{bottom:818.959309pt;}
.ye{bottom:829.212657pt;}
.ya6{bottom:832.559985pt;}
.y64{bottom:838.354329pt;}
.y3b{bottom:838.354332pt;}
.yd{bottom:841.905173pt;}
.y3a{bottom:857.749345pt;}
.y63{bottom:857.749349pt;}
.ya5{bottom:860.559984pt;}
.y19{bottom:871.081197pt;}
.y62{bottom:877.144369pt;}
.y39{bottom:877.144372pt;}
.ya4{bottom:878.559983pt;}
.y17{bottom:880.430537pt;}
.y18{bottom:893.282548pt;}
.y38{bottom:896.539388pt;}
.ya3{bottom:896.559983pt;}
.y37{bottom:915.934408pt;}
.ya2{bottom:924.559982pt;}
.y1a{bottom:927.211908pt;}
.y36{bottom:935.329427pt;}
.ya1{bottom:942.559981pt;}
.y1b{bottom:948.954592pt;}
.y35{bottom:954.724448pt;}
.y68{bottom:958.559980pt;}
.y7b{bottom:959.559980pt;}
.ya0{bottom:960.559980pt;}
.y34{bottom:974.119467pt;}
.y7a{bottom:980.559979pt;}
.y9f{bottom:988.559979pt;}
.y33{bottom:993.514485pt;}
.y79{bottom:1001.559978pt;}
.y32{bottom:1012.909505pt;}
.y9e{bottom:1016.559978pt;}
.y9d{bottom:1034.559977pt;}
.y78{bottom:1043.559977pt;}
.yb9{bottom:1047.559976pt;}
.y9c{bottom:1062.559976pt;}
.y1d{bottom:1063.754684pt;}
.y77{bottom:1064.559976pt;}
.y76{bottom:1085.559975pt;}
.y9b{bottom:1090.559975pt;}
.y9a{bottom:1108.559974pt;}
.h6{height:37.726430pt;}
.h4{height:40.191061pt;}
.hc{height:42.710938pt;}
.ha{height:48.822439pt;}
.h16{height:49.399998pt;}
.h12{height:49.505857pt;}
.h11{height:51.333331pt;}
.hb{height:52.593751pt;}
.hf{height:53.199998pt;}
.h5{height:54.927777pt;}
.h7{height:55.480044pt;}
.h15{height:60.799997pt;}
.h13{height:80.287997pt;}
.h14{height:84.999996pt;}
.h2{height:94.915463pt;}
.h10{height:98.815996pt;}
.h3{height:115.043319pt;}
.h9{height:121.595031pt;}
.he{height:123.519995pt;}
.h8{height:127.854396pt;}
.h1{height:1121.281299pt;}
.hd{height:1122.559973pt;}
.h0{height:1122.666667pt;}
.w4{width:715.999970pt;}
.w3{width:793.279947pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.w2{width:794.666667pt;}
.x61{left:-6.181641pt;}
.x62{left:-2.400391pt;}
.x0{left:0.000000pt;}
.xe3{left:5.835937pt;}
.xd6{left:10.000000pt;}
.x5e{left:24.999999pt;}
.xe8{left:33.999999pt;}
.x191{left:39.106444pt;}
.x18b{left:41.868162pt;}
.xd7{left:43.999998pt;}
.x18c{left:45.805662pt;}
.x13a{left:47.596678pt;}
.xd8{left:50.617185pt;}
.x63{left:53.314451pt;}
.x1a6{left:54.671873pt;}
.x64{left:57.251951pt;}
.xe4{left:60.148435pt;}
.x14{left:61.453122pt;}
.x96{left:64.409177pt;}
.xd9{left:66.976560pt;}
.x97{left:68.346677pt;}
.x171{left:69.832074pt;}
.x182{left:71.071286pt;}
.xe6{left:72.725095pt;}
.x10b{left:73.785153pt;}
.x183{left:75.008786pt;}
.x98{left:76.208005pt;}
.x10c{left:77.722653pt;}
.xe9{left:79.253903pt;}
.x99{left:80.145504pt;}
.xea{left:83.191403pt;}
.x77{left:85.005856pt;}
.x148{left:86.281246pt;}
.x1ad{left:87.217770pt;}
.x78{left:88.943355pt;}
.xfe{left:90.075191pt;}
.x90{left:92.340816pt;}
.x188{left:93.848629pt;}
.x5f{left:94.883785pt;}
.x13{left:96.000000pt;}
.xe5{left:97.234371pt;}
.x60{left:98.821285pt;}
.xda{left:100.664058pt;}
.x20{left:102.156246pt;}
.xb7{left:103.510738pt;}
.x79{left:105.677730pt;}
.x65{left:107.803706pt;}
.x7a{left:109.615230pt;}
.x66{left:111.741206pt;}
.x143{left:113.706493pt;}
.xe7{left:115.413081pt;}
.x18a{left:118.068354pt;}
.xc6{left:119.028316pt;}
.xb8{left:119.944331pt;}
.x91{left:122.042964pt;}
.xc7{left:122.965815pt;}
.xb9{left:123.881831pt;}
.x189{left:124.800395pt;}
.xb{left:125.703834pt;}
.xa8{left:126.882807pt;}
.x165{left:127.928706pt;}
.x12b{left:128.878901pt;}
.x9a{left:130.177729pt;}
.x19e{left:131.207026pt;}
.x115{left:132.266596pt;}
.x92{left:134.374994pt;}
.x116{left:135.582026pt;}
.x18d{left:136.997065pt;}
.x93{left:138.312494pt;}
.x164{left:139.672846pt;}
.x12f{left:142.790033pt;}
.x161{left:145.585931pt;}
.x21{left:147.251565pt;}
.x7b{left:148.395502pt;}
.x118{left:150.371088pt;}
.x7c{left:152.333001pt;}
.x119{left:154.308587pt;}
.x10d{left:157.135736pt;}
.x169{left:158.471673pt;}
.x22{left:160.820901pt;}
.x19b{left:162.153314pt;}
.xc{left:163.072130pt;}
.x158{left:164.466790pt;}
.x122{left:167.194329pt;}
.x16d{left:168.253899pt;}
.xd2{left:169.203123pt;}
.x14a{left:170.623040pt;}
.x184{left:171.634758pt;}
.x12c{left:172.697258pt;}
.x1{left:174.776140pt;}
.x2{left:176.012141pt;}
.x7{left:177.846809pt;}
.x8{left:179.085477pt;}
.xff{left:180.439445pt;}
.x67{left:182.206047pt;}
.x192{left:183.707023pt;}
.x9b{left:184.742180pt;}
.x14b{left:185.812492pt;}
.x23{left:186.787895pt;}
.x9c{left:188.679680pt;}
.x24{left:190.315239pt;}
.x100{left:192.245109pt;}
.x68{left:194.004875pt;}
.x47{left:195.734372pt;}
.x7d{left:197.128898pt;}
.x5d{left:198.718742pt;}
.x9d{left:200.478507pt;}
.x13b{left:201.446281pt;}
.x196{left:203.933463pt;}
.x12d{left:205.400382pt;}
.x25{left:207.329886pt;}
.x12e{left:209.337882pt;}
.x26{left:210.857230pt;}
.x3{left:212.604170pt;}
.x5{left:215.674839pt;}
.xa{left:216.929507pt;}
.xdb{left:218.374991pt;}
.xe{left:220.018843pt;}
.x7e{left:221.184561pt;}
.xa9{left:222.620108pt;}
.x16f{left:223.686514pt;}
.x48{left:225.498042pt;}
.x9{left:226.936182pt;}
.x4{left:228.297516pt;}
.x6{left:231.368185pt;}
.x17d{left:233.117178pt;}
.x49{left:234.070308pt;}
.x185{left:236.917959pt;}
.xaa{left:238.889639pt;}
.x13c{left:240.322255pt;}
.x19c{left:241.224599pt;}
.x153{left:242.355459pt;}
.x13d{left:244.259755pt;}
.x101{left:245.654286pt;}
.x14f{left:247.438466pt;}
.x10e{left:250.302724pt;}
.x7f{left:252.335927pt;}
.x102{left:253.624989pt;}
.x1a9{left:254.862294pt;}
.x94{left:256.375966pt;}
.x4a{left:258.160150pt;}
.x149{left:259.575154pt;}
.x117{left:260.686513pt;}
.x16e{left:262.104481pt;}
.xba{left:263.006825pt;}
.x178{left:264.209950pt;}
.xeb{left:265.820302pt;}
.x4b{left:266.732416pt;}
.x179{left:268.147450pt;}
.x3d{left:269.286122pt;}
.x18e{left:271.781239pt;}
.x3e{left:273.223621pt;}
.xbb{left:274.832996pt;}
.x123{left:276.582997pt;}
.xec{left:277.625965pt;}
.xbc{left:278.770496pt;}
.x69{left:280.616199pt;}
.xed{left:281.563465pt;}
.x103{left:282.575183pt;}
.x1ae{left:283.491199pt;}
.x6a{left:284.553699pt;}
.x80{left:285.558582pt;}
.xab{left:287.479480pt;}
.x4c{left:288.655266pt;}
.x19f{left:289.732410pt;}
.xac{left:291.416980pt;}
.x9e{left:292.654285pt;}
.x81{left:293.720691pt;}
.x27{left:295.677539pt;}
.x4d{left:296.653313pt;}
.x28{left:299.204883pt;}
.x10f{left:300.916003pt;}
.xbd{left:303.133776pt;}
.xdc{left:304.773425pt;}
.x11a{left:306.326159pt;}
.x166{left:307.802722pt;}
.x1aa{left:308.770495pt;}
.x1a{left:309.859367pt;}
.x167{left:311.740222pt;}
.x144{left:314.080070pt;}
.x170{left:315.828112pt;}
.x37{left:316.921867pt;}
.x3f{left:319.062487pt;}
.x199{left:320.432604pt;}
.x6b{left:321.604479pt;}
.xdd{left:322.765612pt;}
.x40{left:324.168932pt;}
.x6c{left:325.541979pt;}
.x4e{left:326.704093pt;}
.x174{left:328.802721pt;}
.x82{left:330.573228pt;}
.x9f{left:332.261705pt;}
.x95{left:333.355455pt;}
.x15{left:335.874986pt;}
.xf2{left:337.570299pt;}
.x16a{left:339.391588pt;}
.x13e{left:341.104478pt;}
.x172{left:342.132799pt;}
.x16b{left:343.329087pt;}
.xad{left:344.511705pt;}
.x124{left:345.913072pt;}
.x104{left:346.915024pt;}
.xf3{left:349.123032pt;}
.x105{left:350.852524pt;}
.x130{left:351.860337pt;}
.xa0{left:353.166001pt;}
.x1b{left:354.703115pt;}
.x131{left:355.797837pt;}
.xf{left:357.868286pt;}
.x38{left:359.231405pt;}
.xd{left:360.212288pt;}
.x13f{left:361.530258pt;}
.x39{left:362.758748pt;}
.x19d{left:364.045883pt;}
.x140{left:365.468735pt;}
.x125{left:366.523422pt;}
.x154{left:367.521469pt;}
.x150{left:368.803696pt;}
.x126{left:370.460922pt;}
.x41{left:371.692367pt;}
.x29{left:373.006760pt;}
.x1c{left:375.320302pt;}
.x2a{left:376.534103pt;}
.x16{left:378.914047pt;}
.x151{left:380.055648pt;}
.x1a0{left:381.156234pt;}
.x17{left:382.441390pt;}
.x3a{left:383.656234pt;}
.x2b{left:384.771408pt;}
.xee{left:385.674789pt;}
.x2c{left:388.298751pt;}
.x4f{left:390.032215pt;}
.x162{left:391.249007pt;}
.x83{left:392.999007pt;}
.x168{left:395.268539pt;}
.x84{left:396.936507pt;}
.x50{left:398.194324pt;}
.x1d{left:400.004871pt;}
.xa1{left:401.858382pt;}
.x6d{left:403.581038pt;}
.x17e{left:404.979476pt;}
.x51{left:406.855457pt;}
.x18f{left:408.301741pt;}
.xa2{left:409.829085pt;}
.x110{left:411.603498pt;}
.x3b{left:412.813459pt;}
.x159{left:415.085921pt;}
.x1af{left:416.005847pt;}
.x16c{left:417.669905pt;}
.x6e{left:419.713850pt;}
.x1e{left:420.916003pt;}
.x52{left:422.851550pt;}
.xc8{left:425.114241pt;}
.xf4{left:427.114240pt;}
.xc9{left:429.051741pt;}
.x106{left:430.245099pt;}
.x53{left:431.895495pt;}
.x3c{left:433.724591pt;}
.x11b{left:435.429670pt;}
.xae{left:436.755842pt;}
.x132{left:437.815412pt;}
.x54{left:439.893541pt;}
.x18{left:441.248227pt;}
.xf5{left:442.918927pt;}
.x19{left:444.775570pt;}
.xde{left:446.249981pt;}
.x11c{left:447.529279pt;}
.x55{left:448.575181pt;}
.x163{left:449.757794pt;}
.x193{left:450.889629pt;}
.x173{left:452.177716pt;}
.x56{left:453.756822pt;}
.x155{left:455.082989pt;}
.xd3{left:456.614239pt;}
.x141{left:457.883770pt;}
.x85{left:459.416973pt;}
.xca{left:461.262677pt;}
.x19a{left:462.237285pt;}
.x111{left:463.905254pt;}
.xcb{left:465.200177pt;}
.x194{left:466.263652pt;}
.x1f{left:467.402025pt;}
.xd4{left:469.165996pt;}
.x57{left:471.099594pt;}
.xbe{left:472.719707pt;}
.x133{left:473.963848pt;}
.xf6{left:475.205058pt;}
.x190{left:476.367168pt;}
.xbf{left:480.690410pt;}
.xcc{left:481.633770pt;}
.x86{left:483.773417pt;}
.xcd{left:485.571270pt;}
.x87{left:487.710917pt;}
.x134{left:490.397441pt;}
.x14c{left:491.946269pt;}
.x42{left:493.385722pt;}
.x135{left:494.334941pt;}
.x2d{left:495.964763pt;}
.x43{left:497.418925pt;}
.x175{left:498.573222pt;}
.x2e{left:499.492106pt;}
.x1ab{left:500.614237pt;}
.x176{left:502.510721pt;}
.x58{left:503.830062pt;}
.x11d{left:506.072245pt;}
.x6f{left:508.136698pt;}
.x11e{left:510.009745pt;}
.xa3{left:513.284159pt;}
.x2f{left:516.506754pt;}
.x186{left:518.852517pt;}
.x30{left:520.034098pt;}
.x145{left:523.423812pt;}
.x152{left:524.847634pt;}
.x44{left:526.075173pt;}
.x156{left:527.461892pt;}
.x11f{left:530.080056pt;}
.x45{left:531.120095pt;}
.x195{left:532.374001pt;}
.x59{left:533.607404pt;}
.xaf{left:535.453103pt;}
.x127{left:537.339822pt;}
.xb0{left:539.390603pt;}
.x197{left:540.707008pt;}
.xc0{left:541.605446pt;}
.x5a{left:542.624006pt;}
.xd5{left:544.431623pt;}
.xc1{left:545.542946pt;}
.x1a7{left:546.476540pt;}
.xf7{left:548.807594pt;}
.x142{left:550.140607pt;}
.x177{left:551.107399pt;}
.xf8{left:552.745094pt;}
.x11{left:554.588444pt;}
.x146{left:555.634748pt;}
.xce{left:556.685524pt;}
.x10{left:560.389782pt;}
.x136{left:561.962867pt;}
.x198{left:563.108375pt;}
.x70{left:564.998024pt;}
.x137{left:565.900367pt;}
.x157{left:567.069313pt;}
.x71{left:568.935524pt;}
.x12{left:571.119124pt;}
.x138{left:574.062476pt;}
.x17a{left:575.169898pt;}
.xdf{left:576.882788pt;}
.xef{left:578.769507pt;}
.x5b{left:579.996074pt;}
.xe0{left:581.382788pt;}
.x112{left:582.973609pt;}
.x88{left:584.063452pt;}
.x72{left:585.669898pt;}
.x107{left:587.054663pt;}
.x46{left:588.104468pt;}
.x73{left:589.607398pt;}
.x89{left:591.924780pt;}
.x5c{left:593.148417pt;}
.xe1{left:594.874975pt;}
.x8a{left:595.862280pt;}
.x17f{left:597.206030pt;}
.x113{left:598.716772pt;}
.xcf{left:600.271460pt;}
.x1a1{left:601.362280pt;}
.x17b{left:602.465796pt;}
.xb1{left:603.395483pt;}
.xf9{left:604.937475pt;}
.xb2{left:607.332983pt;}
.x114{left:610.269506pt;}
.xe2{left:612.578099pt;}
.xc2{left:613.471654pt;}
.x1a4{left:614.459935pt;}
.x31{left:616.385290pt;}
.xc3{left:617.409154pt;}
.x120{left:618.318334pt;}
.x32{left:619.912633pt;}
.xfa{left:621.371068pt;}
.x128{left:623.055638pt;}
.x8b{left:624.265599pt;}
.xc4{left:625.571263pt;}
.x33{left:628.149938pt;}
.xc5{left:629.508763pt;}
.x15a{left:630.657201pt;}
.x34{left:631.677281pt;}
.x108{left:633.368138pt;}
.x15b{left:634.594701pt;}
.xfb{left:636.560520pt;}
.x187{left:638.228489pt;}
.x1a8{left:639.356419pt;}
.xfc{left:640.498020pt;}
.xd0{left:642.613255pt;}
.x35{left:643.619664pt;}
.xf0{left:645.180638pt;}
.x17c{left:646.085911pt;}
.x36{left:647.147007pt;}
.x14d{left:649.015599pt;}
.x139{left:651.431614pt;}
.x74{left:653.010715pt;}
.x147{left:654.999973pt;}
.x75{left:656.948215pt;}
.x15c{left:659.258762pt;}
.x121{left:661.863254pt;}
.x15d{left:663.196262pt;}
.x1a2{left:666.426731pt;}
.x1a3{left:670.364230pt;}
.x15e{left:674.448215pt;}
.xa4{left:676.293917pt;}
.x15f{left:678.385715pt;}
.x8c{left:679.315401pt;}
.xa5{left:680.231417pt;}
.x1a5{left:682.258761pt;}
.x8d{left:683.252901pt;}
.x129{left:685.406221pt;}
.x180{left:686.449191pt;}
.xa6{left:688.393526pt;}
.x12a{left:689.343721pt;}
.xb3{left:691.011691pt;}
.xa7{left:692.331026pt;}
.x1ac{left:693.462862pt;}
.xb4{left:694.949190pt;}
.xd1{left:695.913058pt;}
.x14e{left:697.243136pt;}
.x76{left:701.238253pt;}
.xfd{left:705.459932pt;}
.xf1{left:711.181611pt;}
.xb5{left:724.651338pt;}
.x109{left:726.678681pt;}
.xb6{left:728.588837pt;}
.x10a{left:730.616181pt;}
.x181{left:735.182587pt;}
.x8e{left:740.114227pt;}
.x160{left:742.171845pt;}
.x8f{left:744.051727pt;}
}




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