
    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_34e5950ab2e141b96a013528.woff')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_314fbcae1fa740ac58fbd09a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.141000;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_068afc88af1541b168e9f6eb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_5881b830b3675676b70d7adc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_98558dcebc821876c6b3d060.woff')format("woff");}.ff5{font-family:ff5;line-height:0.977000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b1e666ca1461c053d83156a3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.157000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0a6fd9891db1174e753cbcb8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-60.479976px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.019787px;}
.ls2{letter-spacing:0.019831px;}
.ls4{letter-spacing:0.021238px;}
.ls1{letter-spacing:0.021282px;}
.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:-17.999993px;}
.ws0{word-spacing:-16.559993px;}
.ws3{word-spacing:-15.011994px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-10.137997px;}
._0{margin-left:-1.435851px;}
._1{width:1.133279px;}
._e{width:2.219555px;}
._b{width:3.385961px;}
._a{width:4.469489px;}
._2{width:6.381060px;}
._4{width:7.407633px;}
._3{width:8.854163px;}
._f{width:10.004436px;}
._10{width:11.117857px;}
._11{width:12.907401px;}
._6{width:14.012765px;}
._7{width:15.071239px;}
._5{width:16.353638px;}
._14{width:19.189254px;}
._13{width:20.334888px;}
._8{width:22.000186px;}
._9{width:23.444800px;}
._19{width:24.970241px;}
._c{width:26.078095px;}
._d{width:27.447094px;}
._17{width:28.714278px;}
._18{width:30.213006px;}
._1a{width:32.292664px;}
._1b{width:33.608615px;}
._1c{width:35.131771px;}
._15{width:36.359033px;}
._16{width:38.065297px;}
._1e{width:41.334619px;}
._1f{width:42.558253px;}
._2a{width:44.560065px;}
._2b{width:48.052273px;}
._20{width:267.733399px;}
._21{width:271.394921px;}
._25{width:285.834523px;}
._29{width:303.350543px;}
._27{width:458.827135px;}
._23{width:499.346198px;}
._26{width:502.241947px;}
._22{width:550.880841px;}
._28{width:580.225156px;}
._24{width:594.719794px;}
._1d{width:1925.837230px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs4{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs7{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y128{bottom:2.519202px;}
.yac{bottom:3.239097px;}
.y11c{bottom:3.959168px;}
.y11f{bottom:3.959177px;}
.y122{bottom:3.959187px;}
.y125{bottom:3.959196px;}
.y12a{bottom:3.959205px;}
.y12d{bottom:3.959215px;}
.y130{bottom:3.959224px;}
.y133{bottom:3.959233px;}
.y136{bottom:3.959242px;}
.y139{bottom:3.959252px;}
.y13c{bottom:3.959261px;}
.y13f{bottom:3.959270px;}
.y4{bottom:34.140286px;}
.y3{bottom:57.360277px;}
.y2{bottom:79.140268px;}
.y1{bottom:101.460259px;}
.y36{bottom:131.700247px;}
.y1ba{bottom:136.559945px;}
.y5e{bottom:136.920245px;}
.y64{bottom:137.099945px;}
.y117{bottom:138.179945px;}
.y81{bottom:139.800244px;}
.ya6{bottom:140.519944px;}
.y157{bottom:148.619941px;}
.y35{bottom:150.779940px;}
.y80{bottom:154.379938px;}
.ydf{bottom:154.920238px;}
.yaa{bottom:155.820238px;}
.y1b9{bottom:157.259937px;}
.y34{bottom:158.339937px;}
.y195{bottom:161.399935px;}
.y171{bottom:168.059933px;}
.y5d{bottom:168.060233px;}
.y63{bottom:168.239933px;}
.y116{bottom:169.139932px;}
.y33{bottom:171.119932px;}
.ya5{bottom:171.659931px;}
.yfd{bottom:172.919931px;}
.y156{bottom:179.579928px;}
.y194{bottom:180.299928px;}
.y7f{bottom:185.519926px;}
.yde{bottom:186.060226px;}
.y1b8{bottom:186.959925px;}
.ya9{bottom:186.960225px;}
.y32{bottom:190.199924px;}
.y31{bottom:197.759921px;}
.y170{bottom:199.019920px;}
.y5c{bottom:199.020220px;}
.y62{bottom:199.199920px;}
.y193{bottom:199.379920px;}
.y115{bottom:200.279920px;}
.yfc{bottom:200.999920px;}
.ya4{bottom:202.619919px;}
.y30{bottom:210.719916px;}
.y7e{bottom:216.479913px;}
.ydd{bottom:217.020213px;}
.ya8{bottom:217.920213px;}
.y192{bottom:218.819912px;}
.yfb{bottom:218.999912px;}
.y1b7{bottom:219.719912px;}
.y191{bottom:227.099909px;}
.y2f{bottom:229.619908px;}
.y16f{bottom:230.159908px;}
.y5b{bottom:230.160208px;}
.y114{bottom:231.239908px;}
.ya3{bottom:233.759906px;}
.y141{bottom:235.379906px;}
.y2e{bottom:237.179905px;}
.yfa{bottom:239.699904px;}
.y61{bottom:239.879904px;}
.y1b6{bottom:240.419904px;}
.y155{bottom:241.679903px;}
.y7d{bottom:247.619901px;}
.ydc{bottom:248.160201px;}
.y2d{bottom:250.139900px;}
.y60{bottom:257.879897px;}
.yf9{bottom:260.399896px;}
.y16e{bottom:261.119896px;}
.y5a{bottom:261.120196px;}
.y190{bottom:261.659895px;}
.y113{bottom:262.379895px;}
.ya2{bottom:264.719894px;}
.yc9{bottom:267.599893px;}
.y2c{bottom:269.039892px;}
.y154{bottom:272.819891px;}
.y1b5{bottom:272.999891px;}
.y2b{bottom:276.599889px;}
.y7c{bottom:278.579889px;}
.ydb{bottom:279.120188px;}
.y140{bottom:281.999887px;}
.yc8{bottom:283.439887px;}
.y5f{bottom:286.319885px;}
.y2a{bottom:288.659885px;}
.y16d{bottom:292.259883px;}
.y59{bottom:292.260183px;}
.y18f{bottom:292.619883px;}
.y112{bottom:293.339883px;}
.y1b4{bottom:293.699883px;}
.ya1{bottom:295.679882px;}
.yc7{bottom:298.559881px;}
.y153{bottom:303.779878px;}
.y7b{bottom:309.719876px;}
.yda{bottom:310.260176px;}
.yc6{bottom:314.219874px;}
.y13e{bottom:320.160600px;}
.y16c{bottom:323.219871px;}
.y58{bottom:323.220171px;}
.y13d{bottom:324.119870px;}
.y111{bottom:324.479870px;}
.y29{bottom:324.659870px;}
.y1b3{bottom:326.459869px;}
.ya0{bottom:326.819869px;}
.yc5{bottom:330.059868px;}
.y151{bottom:334.919866px;}
.y18e{bottom:335.819866px;}
.y7a{bottom:340.679864px;}
.yd9{bottom:341.220164px;}
.y152{bottom:343.199863px;}
.y13b{bottom:343.560600px;}
.yc4{bottom:345.539862px;}
.y1b2{bottom:347.159861px;}
.y13a{bottom:347.519861px;}
.y16b{bottom:354.359858px;}
.y57{bottom:354.360158px;}
.y110{bottom:355.439858px;}
.y28{bottom:355.619858px;}
.y9f{bottom:357.779857px;}
.yc3{bottom:360.659856px;}
.y150{bottom:365.879854px;}
.y138{bottom:366.780600px;}
.y137{bottom:370.739852px;}
.y79{bottom:371.819851px;}
.yd8{bottom:372.360151px;}
.yc2{bottom:376.319849px;}
.y27{bottom:376.499849px;}
.y18d{bottom:378.839848px;}
.y1b1{bottom:379.919848px;}
.y16a{bottom:385.319846px;}
.y56{bottom:385.320146px;}
.y10f{bottom:386.399845px;}
.y9e{bottom:388.919844px;}
.y135{bottom:390.000600px;}
.yc1{bottom:392.159843px;}
.y134{bottom:393.959842px;}
.y14f{bottom:397.019841px;}
.y26{bottom:397.199841px;}
.y18c{bottom:399.719840px;}
.y1b0{bottom:400.619840px;}
.y78{bottom:402.779839px;}
.yd7{bottom:403.320139px;}
.yc0{bottom:407.639837px;}
.y132{bottom:413.220600px;}
.yf1{bottom:416.100134px;}
.y169{bottom:416.459833px;}
.y55{bottom:416.460133px;}
.y131{bottom:417.179833px;}
.y10e{bottom:417.539833px;}
.y25{bottom:417.899833px;}
.y9d{bottom:419.519832px;}
.ybf{bottom:423.119831px;}
.y14e{bottom:427.979829px;}
.y18b{bottom:432.299827px;}
.y1af{bottom:433.199827px;}
.y77{bottom:433.919826px;}
.yd6{bottom:434.460126px;}
.y12f{bottom:436.440600px;}
.y24{bottom:438.599825px;}
.y12e{bottom:440.399824px;}
.y168{bottom:447.419821px;}
.y54{bottom:447.420121px;}
.y10d{bottom:448.499821px;}
.y9c{bottom:451.019820px;}
.y1ae{bottom:453.899818px;}
.ybe{bottom:454.259818px;}
.y14d{bottom:459.119816px;}
.y23{bottom:459.299816px;}
.y12c{bottom:459.660600px;}
.y18a{bottom:462.899815px;}
.y12b{bottom:463.619815px;}
.y76{bottom:464.879814px;}
.yd5{bottom:465.420114px;}
.ybd{bottom:469.379812px;}
.y167{bottom:478.559809px;}
.y53{bottom:478.560109px;}
.y10c{bottom:479.639808px;}
.y22{bottom:479.999808px;}
.y9b{bottom:481.979807px;}
.y129{bottom:483.060600px;}
.y189{bottom:484.139806px;}
.ybc{bottom:484.859806px;}
.y1ad{bottom:486.659805px;}
.y126{bottom:487.019805px;}
.y14c{bottom:490.079804px;}
.y127{bottom:492.060600px;}
.y75{bottom:496.019802px;}
.yd4{bottom:496.560101px;}
.ybb{bottom:500.339800px;}
.y21{bottom:500.699800px;}
.y188{bottom:504.839798px;}
.y124{bottom:506.280600px;}
.y1ac{bottom:507.359797px;}
.y166{bottom:509.519796px;}
.y52{bottom:509.520096px;}
.y123{bottom:510.239796px;}
.y10b{bottom:510.599796px;}
.y9a{bottom:513.119795px;}
.yba{bottom:515.999794px;}
.y14b{bottom:521.219792px;}
.y20{bottom:521.399791px;}
.y187{bottom:525.539790px;}
.y74{bottom:526.979789px;}
.yd3{bottom:527.520089px;}
.y121{bottom:529.500600px;}
.yb9{bottom:531.839787px;}
.y120{bottom:533.459787px;}
.y1ab{bottom:540.119784px;}
.y165{bottom:540.659784px;}
.y51{bottom:540.660084px;}
.y10a{bottom:541.739783px;}
.y1f{bottom:542.099783px;}
.y99{bottom:544.079782px;}
.y186{bottom:546.239782px;}
.yb8{bottom:547.319781px;}
.y14a{bottom:552.179779px;}
.y11e{bottom:552.720600px;}
.y11d{bottom:556.679777px;}
.y73{bottom:558.119777px;}
.yd2{bottom:558.660077px;}
.y1aa{bottom:560.819776px;}
.yb7{bottom:562.439775px;}
.y1e{bottom:562.799775px;}
.y185{bottom:566.939773px;}
.y164{bottom:571.619771px;}
.y50{bottom:571.620071px;}
.y109{bottom:572.699771px;}
.y98{bottom:575.219770px;}
.y11b{bottom:577.020600px;}
.yb6{bottom:578.099769px;}
.y11a{bottom:580.979768px;}
.y149{bottom:583.319767px;}
.y1d{bottom:583.499767px;}
.y184{bottom:587.639765px;}
.y72{bottom:589.079764px;}
.yd1{bottom:589.620064px;}
.y1a9{bottom:593.399763px;}
.yb5{bottom:593.579763px;}
.y163{bottom:602.759759px;}
.y4f{bottom:602.760059px;}
.y108{bottom:603.839758px;}
.y1c{bottom:604.199758px;}
.y97{bottom:606.179758px;}
.y183{bottom:608.339757px;}
.yf8{bottom:608.699757px;}
.yb4{bottom:609.419756px;}
.y71{bottom:609.959756px;}
.y119{bottom:613.200055px;}
.y1a8{bottom:614.099754px;}
.y148{bottom:614.279754px;}
.yd0{bottom:620.760052px;}
.y1b{bottom:624.899750px;}
.yf7{bottom:625.439750px;}
.y182{bottom:629.039748px;}
.y70{bottom:630.119748px;}
.y162{bottom:633.719747px;}
.y4e{bottom:633.720047px;}
.y118{bottom:633.900046px;}
.y107{bottom:634.799746px;}
.y96{bottom:637.319745px;}
.yb3{bottom:640.559744px;}
.y147{bottom:645.419742px;}
.y1a{bottom:645.599742px;}
.y6f{bottom:649.199740px;}
.y181{bottom:649.739740px;}
.ycf{bottom:651.720039px;}
.yf6{bottom:653.339739px;}
.yb2{bottom:656.039738px;}
.y161{bottom:664.859734px;}
.y4d{bottom:664.860034px;}
.y106{bottom:665.939734px;}
.y19{bottom:666.299733px;}
.y1a7{bottom:667.559733px;}
.y6e{bottom:668.099733px;}
.y95{bottom:668.279733px;}
.y180{bottom:670.439732px;}
.yf5{bottom:671.339731px;}
.yb1{bottom:671.519731px;}
.y146{bottom:676.379729px;}
.yce{bottom:682.860027px;}
.yb0{bottom:686.639725px;}
.y18{bottom:686.999725px;}
.y6d{bottom:687.179725px;}
.y1a6{bottom:688.259725px;}
.y17f{bottom:691.139724px;}
.yf4{bottom:692.039723px;}
.y160{bottom:695.819722px;}
.y4c{bottom:695.820022px;}
.y105{bottom:696.899721px;}
.y94{bottom:699.419720px;}
.yaf{bottom:702.299719px;}
.y6c{bottom:706.079718px;}
.y145{bottom:707.519717px;}
.y17{bottom:707.699717px;}
.y17e{bottom:711.839715px;}
.yf3{bottom:712.739715px;}
.ycd{bottom:713.820014px;}
.y1a5{bottom:720.839712px;}
.y6b{bottom:724.979710px;}
.y15f{bottom:726.959709px;}
.y4b{bottom:726.960009px;}
.y104{bottom:728.039709px;}
.y16{bottom:728.399709px;}
.yae{bottom:730.019708px;}
.y93{bottom:730.379708px;}
.y17d{bottom:732.539707px;}
.y144{bottom:738.479705px;}
.yf2{bottom:741.179704px;}
.ycc{bottom:744.600002px;}
.y15{bottom:749.099700px;}
.y17c{bottom:753.239699px;}
.y1a4{bottom:753.599699px;}
.yab{bottom:754.500600px;}
.y6a{bottom:754.679998px;}
.yad{bottom:757.739697px;}
.y15e{bottom:757.919697px;}
.y4a{bottom:757.919997px;}
.y103{bottom:758.639697px;}
.y143{bottom:759.359696px;}
.y92{bottom:761.519695px;}
.y17b{bottom:773.939690px;}
.y1a3{bottom:774.299690px;}
.ycb{bottom:775.919990px;}
.y102{bottom:779.879688px;}
.y14{bottom:780.059688px;}
.y69{bottom:785.639986px;}
.y15d{bottom:789.059684px;}
.y49{bottom:789.059984px;}
.y91{bottom:792.479683px;}
.y17a{bottom:794.639682px;}
.y13{bottom:800.939680px;}
.y1a2{bottom:805.259678px;}
.y142{bottom:808.499677px;}
.yca{bottom:808.859976px;}
.y101{bottom:812.639675px;}
.y179{bottom:815.339674px;}
.y68{bottom:816.779973px;}
.y15c{bottom:820.019672px;}
.y48{bottom:820.019972px;}
.y11{bottom:821.639671px;}
.y90{bottom:823.619671px;}
.y12{bottom:829.919668px;}
.y100{bottom:833.339667px;}
.y1a1{bottom:835.859666px;}
.y178{bottom:836.039666px;}
.yf{bottom:842.339663px;}
.y67{bottom:847.739961px;}
.y10{bottom:850.619660px;}
.y15b{bottom:851.159660px;}
.y47{bottom:851.159960px;}
.yff{bottom:854.039658px;}
.y8f{bottom:854.579658px;}
.yd{bottom:863.039655px;}
.y177{bottom:866.819653px;}
.y1a0{bottom:867.359653px;}
.ye{bottom:871.319651px;}
.yef{bottom:878.339649px;}
.y66{bottom:878.879948px;}
.y15a{bottom:882.119647px;}
.y46{bottom:882.119947px;}
.yfe{bottom:882.479647px;}
.yc{bottom:883.739647px;}
.y8e{bottom:885.719646px;}
.yee{bottom:893.639643px;}
.y19f{bottom:898.319641px;}
.ya{bottom:904.619638px;}
.yed{bottom:909.299636px;}
.y176{bottom:909.839636px;}
.y159{bottom:913.259635px;}
.y45{bottom:913.259935px;}
.y65{bottom:913.439935px;}
.yb{bottom:914.339634px;}
.y8d{bottom:916.679633px;}
.y158{bottom:921.539631px;}
.yec{bottom:924.779630px;}
.y9{bottom:928.739629px;}
.y19e{bottom:930.719628px;}
.y175{bottom:930.899628px;}
.yeb{bottom:939.899624px;}
.yf0{bottom:943.859922px;}
.y44{bottom:944.219922px;}
.y8c{bottom:947.819621px;}
.y8{bottom:952.859619px;}
.y174{bottom:955.199618px;}
.yea{bottom:955.559618px;}
.y19d{bottom:961.679615px;}
.ye9{bottom:971.039612px;}
.y43{bottom:975.359910px;}
.y7{bottom:976.979609px;}
.y8b{bottom:978.779608px;}
.y173{bottom:979.319608px;}
.y19c{bottom:980.759608px;}
.ye8{bottom:986.879605px;}
.ye7{bottom:1002.359599px;}
.y6{bottom:1002.719599px;}
.y42{bottom:1006.319897px;}
.y8a{bottom:1011.179596px;}
.y19b{bottom:1011.719595px;}
.ye6{bottom:1017.659593px;}
.y172{bottom:1025.399890px;}
.y5{bottom:1026.299589px;}
.y89{bottom:1030.259588px;}
.y19a{bottom:1030.619588px;}
.ye5{bottom:1033.139587px;}
.y41{bottom:1037.459885px;}
.ye4{bottom:1048.979580px;}
.y88{bottom:1049.159580px;}
.y3c{bottom:1059.419576px;}
.y199{bottom:1061.579575px;}
.ye3{bottom:1064.459574px;}
.y87{bottom:1068.059573px;}
.y40{bottom:1068.419873px;}
.y3b{bottom:1076.699569px;}
.ye2{bottom:1079.759568px;}
.y198{bottom:1080.659568px;}
.y86{bottom:1087.139565px;}
.y3a{bottom:1093.979562px;}
.ye1{bottom:1095.599562px;}
.y3f{bottom:1099.559860px;}
.y85{bottom:1106.039558px;}
.ye0{bottom:1110.719556px;}
.y39{bottom:1111.259555px;}
.y197{bottom:1113.059555px;}
.y196{bottom:1120.619552px;}
.y84{bottom:1125.119550px;}
.y38{bottom:1128.539549px;}
.y3e{bottom:1130.519848px;}
.y83{bottom:1144.019542px;}
.y37{bottom:1147.979541px;}
.ya7{bottom:1161.299835px;}
.y3d{bottom:1161.659835px;}
.y82{bottom:1163.099535px;}
.h13{height:9.900000px;}
.hd{height:15.300000px;}
.h12{height:18.720000px;}
.ha{height:37.166385px;}
.h11{height:40.816064px;}
.he{height:40.877984px;}
.h8{height:42.933583px;}
.h9{height:44.149201px;}
.hb{height:47.988262px;}
.hf{height:48.059981px;}
.h7{height:49.841980px;}
.h10{height:50.705980px;}
.h1{height:53.186379px;}
.h3{height:58.953576px;}
.h2{height:61.139496px;}
.h4{height:64.079974px;}
.h6{height:66.455973px;}
.h5{height:77.753489px;}
.hc{height:99.683960px;}
.h0{height:1263.000000px;}
.w3{width:4.680000px;}
.w4{width:5.040000px;}
.w2{width:5.220000px;}
.w1{width:261.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x11{left:132.839947px;}
.x24{left:134.819946px;}
.x20{left:136.799945px;}
.x12{left:138.239474px;}
.x26{left:140.040275px;}
.x21{left:145.980522px;}
.x2e{left:154.439938px;}
.x8{left:158.039102px;}
.x34{left:163.259870px;}
.x1c{left:174.779930px;}
.x2{left:176.399929px;}
.x7{left:179.459155px;}
.x1a{left:180.719477px;}
.x33{left:195.839922px;}
.x1f{left:202.679554px;}
.x2c{left:247.859901px;}
.x17{left:254.879898px;}
.x3{left:258.120499px;}
.x14{left:288.359885px;}
.x1d{left:297.719881px;}
.x31{left:319.139872px;}
.x32{left:325.259870px;}
.x19{left:338.039865px;}
.x27{left:342.359838px;}
.x9{left:344.518793px;}
.x16{left:355.319858px;}
.x28{left:359.459856px;}
.x25{left:377.279364px;}
.x18{left:387.719845px;}
.x1e{left:399.599840px;}
.x2f{left:410.579374px;}
.x15{left:418.319833px;}
.x6{left:431.279827px;}
.x2a{left:442.439823px;}
.x22{left:447.480761px;}
.x5{left:467.819813px;}
.x13{left:494.819802px;}
.x2b{left:571.500000px;}
.x29{left:576.000000px;}
.xa{left:584.279766px;}
.xb{left:591.119764px;}
.xc{left:595.439722px;}
.x10{left:596.519761px;}
.x35{left:622.618677px;}
.xf{left:633.419322px;}
.x36{left:642.598723px;}
.x30{left:692.279723px;}
.x2d{left:698.399721px;}
.x1b{left:743.399703px;}
.x23{left:764.999694px;}
.x4{left:790.019684px;}
.xd{left:801.899679px;}
.xe{left:808.019677px;}
@media print{
.v1{vertical-align:-53.759978pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017589pt;}
.ls2{letter-spacing:0.017628pt;}
.ls4{letter-spacing:0.018878pt;}
.ls1{letter-spacing:0.018917pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.719994pt;}
.ws3{word-spacing:-13.343995pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-9.011553pt;}
._0{margin-left:-1.276312pt;}
._1{width:1.007359pt;}
._e{width:1.972938pt;}
._b{width:3.009743pt;}
._a{width:3.972879pt;}
._2{width:5.672053pt;}
._4{width:6.584563pt;}
._3{width:7.870367pt;}
._f{width:8.892832pt;}
._10{width:9.882540pt;}
._11{width:11.473246pt;}
._6{width:12.455791pt;}
._7{width:13.396657pt;}
._5{width:14.536567pt;}
._14{width:17.057115pt;}
._13{width:18.075456pt;}
._8{width:19.555721pt;}
._9{width:20.839822pt;}
._19{width:22.195769pt;}
._c{width:23.180529pt;}
._d{width:24.397417pt;}
._17{width:25.523803pt;}
._18{width:26.856005pt;}
._1a{width:28.704591pt;}
._1b{width:29.874325pt;}
._1c{width:31.228241pt;}
._15{width:32.319141pt;}
._16{width:33.835820pt;}
._1e{width:36.741884pt;}
._1f{width:37.829558pt;}
._2a{width:39.608947pt;}
._2b{width:42.713132pt;}
._20{width:237.985244pt;}
._21{width:241.239930pt;}
._25{width:254.075132pt;}
._29{width:269.644927pt;}
._27{width:407.846343pt;}
._23{width:443.863287pt;}
._26{width:446.437286pt;}
._22{width:489.671859pt;}
._28{width:515.755694pt;}
._24{width:528.639817pt;}
._1d{width:1711.855315pt;}
.fs6{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs4{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs7{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y128{bottom:2.239291pt;}
.yac{bottom:2.879197pt;}
.y11c{bottom:3.519260pt;}
.y11f{bottom:3.519269pt;}
.y122{bottom:3.519277pt;}
.y125{bottom:3.519285pt;}
.y12a{bottom:3.519294pt;}
.y12d{bottom:3.519302pt;}
.y130{bottom:3.519310pt;}
.y133{bottom:3.519318pt;}
.y136{bottom:3.519327pt;}
.y139{bottom:3.519335pt;}
.y13c{bottom:3.519343pt;}
.y13f{bottom:3.519351pt;}
.y4{bottom:30.346921pt;}
.y3{bottom:50.986913pt;}
.y2{bottom:70.346905pt;}
.y1{bottom:90.186897pt;}
.y36{bottom:117.066887pt;}
.y1ba{bottom:121.386618pt;}
.y5e{bottom:121.706885pt;}
.y64{bottom:121.866618pt;}
.y117{bottom:122.826618pt;}
.y81{bottom:124.266884pt;}
.ya6{bottom:124.906617pt;}
.y157{bottom:132.106614pt;}
.y35{bottom:134.026613pt;}
.y80{bottom:137.226612pt;}
.ydf{bottom:137.706878pt;}
.yaa{bottom:138.506878pt;}
.y1b9{bottom:139.786611pt;}
.y34{bottom:140.746610pt;}
.y195{bottom:143.466609pt;}
.y171{bottom:149.386607pt;}
.y5d{bottom:149.386874pt;}
.y63{bottom:149.546607pt;}
.y116{bottom:150.346607pt;}
.y33{bottom:152.106606pt;}
.ya5{bottom:152.586606pt;}
.yfd{bottom:153.706605pt;}
.y156{bottom:159.626603pt;}
.y194{bottom:160.266603pt;}
.y7f{bottom:164.906601pt;}
.yde{bottom:165.386867pt;}
.y1b8{bottom:166.186600pt;}
.ya9{bottom:166.186867pt;}
.y32{bottom:169.066599pt;}
.y31{bottom:175.786596pt;}
.y170{bottom:176.906596pt;}
.y5c{bottom:176.906863pt;}
.y62{bottom:177.066596pt;}
.y193{bottom:177.226596pt;}
.y115{bottom:178.026595pt;}
.yfc{bottom:178.666595pt;}
.ya4{bottom:180.106595pt;}
.y30{bottom:187.306592pt;}
.y7e{bottom:192.426590pt;}
.ydd{bottom:192.906856pt;}
.ya8{bottom:193.706856pt;}
.y192{bottom:194.506589pt;}
.yfb{bottom:194.666589pt;}
.y1b7{bottom:195.306589pt;}
.y191{bottom:201.866586pt;}
.y2f{bottom:204.106585pt;}
.y16f{bottom:204.586585pt;}
.y5b{bottom:204.586851pt;}
.y114{bottom:205.546584pt;}
.ya3{bottom:207.786584pt;}
.y141{bottom:209.226583pt;}
.y2e{bottom:210.826582pt;}
.yfa{bottom:213.066581pt;}
.y61{bottom:213.226581pt;}
.y1b6{bottom:213.706581pt;}
.y155{bottom:214.826581pt;}
.y7d{bottom:220.106579pt;}
.ydc{bottom:220.586845pt;}
.y2d{bottom:222.346578pt;}
.y60{bottom:229.226575pt;}
.yf9{bottom:231.466574pt;}
.y16e{bottom:232.106574pt;}
.y5a{bottom:232.106840pt;}
.y190{bottom:232.586574pt;}
.y113{bottom:233.226573pt;}
.ya2{bottom:235.306573pt;}
.yc9{bottom:237.866572pt;}
.y2c{bottom:239.146571pt;}
.y154{bottom:242.506570pt;}
.y1b5{bottom:242.666570pt;}
.y2b{bottom:245.866568pt;}
.y7c{bottom:247.626568pt;}
.ydb{bottom:248.106834pt;}
.y140{bottom:250.666566pt;}
.yc8{bottom:251.946566pt;}
.y5f{bottom:254.506565pt;}
.y2a{bottom:256.586564pt;}
.y16d{bottom:259.786563pt;}
.y59{bottom:259.786829pt;}
.y18f{bottom:260.106563pt;}
.y112{bottom:260.746562pt;}
.y1b4{bottom:261.066562pt;}
.ya1{bottom:262.826562pt;}
.yc7{bottom:265.386561pt;}
.y153{bottom:270.026559pt;}
.y7b{bottom:275.306557pt;}
.yda{bottom:275.786823pt;}
.yc6{bottom:279.306555pt;}
.y13e{bottom:284.587200pt;}
.y16c{bottom:287.306552pt;}
.y58{bottom:287.306818pt;}
.y13d{bottom:288.106551pt;}
.y111{bottom:288.426551pt;}
.y29{bottom:288.586551pt;}
.y1b3{bottom:290.186551pt;}
.ya0{bottom:290.506550pt;}
.yc5{bottom:293.386549pt;}
.y151{bottom:297.706548pt;}
.y18e{bottom:298.506547pt;}
.y7a{bottom:302.826546pt;}
.yd9{bottom:303.306812pt;}
.y152{bottom:305.066545pt;}
.y13b{bottom:305.387200pt;}
.yc4{bottom:307.146544pt;}
.y1b2{bottom:308.586543pt;}
.y13a{bottom:308.906543pt;}
.y16b{bottom:314.986541pt;}
.y57{bottom:314.986807pt;}
.y110{bottom:315.946540pt;}
.y28{bottom:316.106540pt;}
.y9f{bottom:318.026539pt;}
.yc3{bottom:320.586538pt;}
.y150{bottom:325.226537pt;}
.y138{bottom:326.027200pt;}
.y137{bottom:329.546535pt;}
.y79{bottom:330.506534pt;}
.yd8{bottom:330.986801pt;}
.yc2{bottom:334.506533pt;}
.y27{bottom:334.666533pt;}
.y18d{bottom:336.746532pt;}
.y1b1{bottom:337.706532pt;}
.y16a{bottom:342.506530pt;}
.y56{bottom:342.506796pt;}
.y10f{bottom:343.466529pt;}
.y9e{bottom:345.706528pt;}
.y135{bottom:346.667200pt;}
.yc1{bottom:348.586527pt;}
.y134{bottom:350.186527pt;}
.y14f{bottom:352.906526pt;}
.y26{bottom:353.066525pt;}
.y18c{bottom:355.306525pt;}
.y1b0{bottom:356.106524pt;}
.y78{bottom:358.026523pt;}
.yd7{bottom:358.506790pt;}
.yc0{bottom:362.346522pt;}
.y132{bottom:367.307200pt;}
.yf1{bottom:369.866785pt;}
.y169{bottom:370.186519pt;}
.y55{bottom:370.186785pt;}
.y131{bottom:370.826518pt;}
.y10e{bottom:371.146518pt;}
.y25{bottom:371.466518pt;}
.y9d{bottom:372.906518pt;}
.ybf{bottom:376.106516pt;}
.y14e{bottom:380.426514pt;}
.y18b{bottom:384.266513pt;}
.y1af{bottom:385.066513pt;}
.y77{bottom:385.706512pt;}
.yd6{bottom:386.186779pt;}
.y12f{bottom:387.947200pt;}
.y24{bottom:389.866511pt;}
.y12e{bottom:391.466510pt;}
.y168{bottom:397.706508pt;}
.y54{bottom:397.706774pt;}
.y10d{bottom:398.666507pt;}
.y9c{bottom:400.906506pt;}
.y1ae{bottom:403.466505pt;}
.ybe{bottom:403.786505pt;}
.y14d{bottom:408.106503pt;}
.y23{bottom:408.266503pt;}
.y12c{bottom:408.587200pt;}
.y18a{bottom:411.466502pt;}
.y12b{bottom:412.106502pt;}
.y76{bottom:413.226501pt;}
.yd5{bottom:413.706768pt;}
.ybd{bottom:417.226500pt;}
.y167{bottom:425.386497pt;}
.y53{bottom:425.386763pt;}
.y10c{bottom:426.346496pt;}
.y22{bottom:426.666496pt;}
.y9b{bottom:428.426495pt;}
.y129{bottom:429.387200pt;}
.y189{bottom:430.346495pt;}
.ybc{bottom:430.986494pt;}
.y1ad{bottom:432.586494pt;}
.y126{bottom:432.906494pt;}
.y14c{bottom:435.626492pt;}
.y127{bottom:437.387200pt;}
.y75{bottom:440.906490pt;}
.yd4{bottom:441.386757pt;}
.ybb{bottom:444.746489pt;}
.y21{bottom:445.066489pt;}
.y188{bottom:448.746487pt;}
.y124{bottom:450.027200pt;}
.y1ac{bottom:450.986486pt;}
.y166{bottom:452.906486pt;}
.y52{bottom:452.906752pt;}
.y123{bottom:453.546485pt;}
.y10b{bottom:453.866485pt;}
.y9a{bottom:456.106484pt;}
.yba{bottom:458.666483pt;}
.y14b{bottom:463.306481pt;}
.y20{bottom:463.466481pt;}
.y187{bottom:467.146480pt;}
.y74{bottom:468.426479pt;}
.yd3{bottom:468.906746pt;}
.y121{bottom:470.667200pt;}
.yb9{bottom:472.746478pt;}
.y120{bottom:474.186477pt;}
.y1ab{bottom:480.106475pt;}
.y165{bottom:480.586474pt;}
.y51{bottom:480.586741pt;}
.y10a{bottom:481.546474pt;}
.y1f{bottom:481.866474pt;}
.y99{bottom:483.626473pt;}
.y186{bottom:485.546472pt;}
.yb8{bottom:486.506472pt;}
.y14a{bottom:490.826470pt;}
.y11e{bottom:491.307200pt;}
.y11d{bottom:494.826469pt;}
.y73{bottom:496.106468pt;}
.yd2{bottom:496.586735pt;}
.y1aa{bottom:498.506467pt;}
.yb7{bottom:499.946467pt;}
.y1e{bottom:500.266467pt;}
.y185{bottom:503.946465pt;}
.y164{bottom:508.106463pt;}
.y50{bottom:508.106730pt;}
.y109{bottom:509.066463pt;}
.y98{bottom:511.306462pt;}
.y11b{bottom:512.907200pt;}
.yb6{bottom:513.866461pt;}
.y11a{bottom:516.426460pt;}
.y149{bottom:518.506459pt;}
.y1d{bottom:518.666459pt;}
.y184{bottom:522.346458pt;}
.y72{bottom:523.626457pt;}
.yd1{bottom:524.106724pt;}
.y1a9{bottom:527.466456pt;}
.yb5{bottom:527.626456pt;}
.y163{bottom:535.786452pt;}
.y4f{bottom:535.786719pt;}
.y108{bottom:536.746452pt;}
.y1c{bottom:537.066452pt;}
.y97{bottom:538.826451pt;}
.y183{bottom:540.746450pt;}
.yf8{bottom:541.066450pt;}
.yb4{bottom:541.706450pt;}
.y71{bottom:542.186450pt;}
.y119{bottom:545.066715pt;}
.y1a8{bottom:545.866448pt;}
.y148{bottom:546.026448pt;}
.yd0{bottom:551.786713pt;}
.y1b{bottom:555.466444pt;}
.yf7{bottom:555.946444pt;}
.y182{bottom:559.146443pt;}
.y70{bottom:560.106443pt;}
.y162{bottom:563.306441pt;}
.y4e{bottom:563.306708pt;}
.y118{bottom:563.466708pt;}
.y107{bottom:564.266441pt;}
.y96{bottom:566.506440pt;}
.yb3{bottom:569.386439pt;}
.y147{bottom:573.706437pt;}
.y1a{bottom:573.866437pt;}
.y6f{bottom:577.066436pt;}
.y181{bottom:577.546436pt;}
.ycf{bottom:579.306702pt;}
.yf6{bottom:580.746434pt;}
.yb2{bottom:583.146433pt;}
.y161{bottom:590.986430pt;}
.y4d{bottom:590.986697pt;}
.y106{bottom:591.946430pt;}
.y19{bottom:592.266430pt;}
.y1a7{bottom:593.386429pt;}
.y6e{bottom:593.866429pt;}
.y95{bottom:594.026429pt;}
.y180{bottom:595.946428pt;}
.yf5{bottom:596.746428pt;}
.yb1{bottom:596.906428pt;}
.y146{bottom:601.226426pt;}
.yce{bottom:606.986691pt;}
.yb0{bottom:610.346423pt;}
.y18{bottom:610.666422pt;}
.y6d{bottom:610.826422pt;}
.y1a6{bottom:611.786422pt;}
.y17f{bottom:614.346421pt;}
.yf4{bottom:615.146421pt;}
.y160{bottom:618.506419pt;}
.y4c{bottom:618.506686pt;}
.y105{bottom:619.466419pt;}
.y94{bottom:621.706418pt;}
.yaf{bottom:624.266417pt;}
.y6c{bottom:627.626416pt;}
.y145{bottom:628.906415pt;}
.y17{bottom:629.066415pt;}
.y17e{bottom:632.746414pt;}
.yf3{bottom:633.546413pt;}
.ycd{bottom:634.506680pt;}
.y1a5{bottom:640.746410pt;}
.y6b{bottom:644.426409pt;}
.y15f{bottom:646.186408pt;}
.y4b{bottom:646.186675pt;}
.y104{bottom:647.146408pt;}
.y16{bottom:647.466408pt;}
.yae{bottom:648.906407pt;}
.y93{bottom:649.226407pt;}
.y17d{bottom:651.146406pt;}
.y144{bottom:656.426404pt;}
.yf2{bottom:658.826403pt;}
.ycc{bottom:661.866669pt;}
.y15{bottom:665.866400pt;}
.y17c{bottom:669.546399pt;}
.y1a4{bottom:669.866399pt;}
.yab{bottom:670.667200pt;}
.y6a{bottom:670.826665pt;}
.yad{bottom:673.546397pt;}
.y15e{bottom:673.706397pt;}
.y4a{bottom:673.706664pt;}
.y103{bottom:674.346397pt;}
.y143{bottom:674.986397pt;}
.y92{bottom:676.906396pt;}
.y17b{bottom:687.946391pt;}
.y1a3{bottom:688.266391pt;}
.ycb{bottom:689.706657pt;}
.y102{bottom:693.226389pt;}
.y14{bottom:693.386389pt;}
.y69{bottom:698.346654pt;}
.y15d{bottom:701.386386pt;}
.y49{bottom:701.386653pt;}
.y91{bottom:704.426385pt;}
.y17a{bottom:706.346384pt;}
.y13{bottom:711.946382pt;}
.y1a2{bottom:715.786380pt;}
.y142{bottom:718.666379pt;}
.yca{bottom:718.986646pt;}
.y101{bottom:722.346378pt;}
.y179{bottom:724.746377pt;}
.y68{bottom:726.026643pt;}
.y15c{bottom:728.906375pt;}
.y48{bottom:728.906642pt;}
.y11{bottom:730.346375pt;}
.y90{bottom:732.106374pt;}
.y12{bottom:737.706372pt;}
.y100{bottom:740.746370pt;}
.y1a1{bottom:742.986369pt;}
.y178{bottom:743.146369pt;}
.yf{bottom:748.746367pt;}
.y67{bottom:753.546632pt;}
.y10{bottom:756.106364pt;}
.y15b{bottom:756.586364pt;}
.y47{bottom:756.586631pt;}
.yff{bottom:759.146363pt;}
.y8f{bottom:759.626363pt;}
.yd{bottom:767.146360pt;}
.y177{bottom:770.506358pt;}
.y1a0{bottom:770.986358pt;}
.ye{bottom:774.506357pt;}
.yef{bottom:780.746354pt;}
.y66{bottom:781.226621pt;}
.y15a{bottom:784.106353pt;}
.y46{bottom:784.106620pt;}
.yfe{bottom:784.426353pt;}
.yc{bottom:785.546352pt;}
.y8e{bottom:787.306352pt;}
.yee{bottom:794.346349pt;}
.y19f{bottom:798.506347pt;}
.ya{bottom:804.106345pt;}
.yed{bottom:808.266343pt;}
.y176{bottom:808.746343pt;}
.y159{bottom:811.786342pt;}
.y45{bottom:811.786609pt;}
.y65{bottom:811.946609pt;}
.yb{bottom:812.746342pt;}
.y8d{bottom:814.826341pt;}
.y158{bottom:819.146339pt;}
.yec{bottom:822.026338pt;}
.y9{bottom:825.546336pt;}
.y19e{bottom:827.306336pt;}
.y175{bottom:827.466336pt;}
.yeb{bottom:835.466332pt;}
.yf0{bottom:838.986598pt;}
.y44{bottom:839.306598pt;}
.y8c{bottom:842.506330pt;}
.y8{bottom:846.986328pt;}
.y174{bottom:849.066327pt;}
.yea{bottom:849.386327pt;}
.y19d{bottom:854.826325pt;}
.ye9{bottom:863.146321pt;}
.y43{bottom:866.986587pt;}
.y7{bottom:868.426319pt;}
.y8b{bottom:870.026319pt;}
.y173{bottom:870.506318pt;}
.y19c{bottom:871.786318pt;}
.ye8{bottom:877.226316pt;}
.ye7{bottom:890.986310pt;}
.y6{bottom:891.306310pt;}
.y42{bottom:894.506576pt;}
.y8a{bottom:898.826307pt;}
.y19b{bottom:899.306307pt;}
.ye6{bottom:904.586305pt;}
.y172{bottom:911.466569pt;}
.y5{bottom:912.266302pt;}
.y89{bottom:915.786300pt;}
.y19a{bottom:916.106300pt;}
.ye5{bottom:918.346299pt;}
.y41{bottom:922.186564pt;}
.ye4{bottom:932.426294pt;}
.y88{bottom:932.586294pt;}
.y3c{bottom:941.706290pt;}
.y199{bottom:943.626289pt;}
.ye3{bottom:946.186288pt;}
.y87{bottom:949.386287pt;}
.y40{bottom:949.706553pt;}
.y3b{bottom:957.066284pt;}
.ye2{bottom:959.786283pt;}
.y198{bottom:960.586282pt;}
.y86{bottom:966.346280pt;}
.y3a{bottom:972.426278pt;}
.ye1{bottom:973.866277pt;}
.y3f{bottom:977.386542pt;}
.y85{bottom:983.146273pt;}
.ye0{bottom:987.306272pt;}
.y39{bottom:987.786272pt;}
.y197{bottom:989.386271pt;}
.y196{bottom:996.106268pt;}
.y84{bottom:1000.106267pt;}
.y38{bottom:1003.146265pt;}
.y3e{bottom:1004.906531pt;}
.y83{bottom:1016.906260pt;}
.y37{bottom:1020.426258pt;}
.ya7{bottom:1032.266520pt;}
.y3d{bottom:1032.586520pt;}
.y82{bottom:1033.866253pt;}
.h13{height:8.800000pt;}
.hd{height:13.600000pt;}
.h12{height:16.640000pt;}
.ha{height:33.036787pt;}
.h11{height:36.280945pt;}
.he{height:36.335985pt;}
.h8{height:38.163185pt;}
.h9{height:39.243734pt;}
.hb{height:42.656233pt;}
.hf{height:42.719983pt;}
.h7{height:44.303982pt;}
.h10{height:45.071982pt;}
.h1{height:47.276781pt;}
.h3{height:52.403179pt;}
.h2{height:54.346218pt;}
.h4{height:56.959977pt;}
.h6{height:59.071976pt;}
.h5{height:69.114212pt;}
.hc{height:88.607965pt;}
.h0{height:1122.666667pt;}
.w3{width:4.160000pt;}
.w4{width:4.480000pt;}
.w2{width:4.640000pt;}
.w1{width:232.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x11{left:118.079953pt;}
.x24{left:119.839952pt;}
.x20{left:121.599951pt;}
.x12{left:122.879533pt;}
.x26{left:124.480244pt;}
.x21{left:129.760464pt;}
.x2e{left:137.279945pt;}
.x8{left:140.479202pt;}
.x34{left:145.119885pt;}
.x1c{left:155.359938pt;}
.x2{left:156.799937pt;}
.x7{left:159.519249pt;}
.x1a{left:160.639535pt;}
.x33{left:174.079930pt;}
.x1f{left:180.159604pt;}
.x2c{left:220.319912pt;}
.x17{left:226.559909pt;}
.x3{left:229.440443pt;}
.x14{left:256.319897pt;}
.x1d{left:264.639894pt;}
.x31{left:283.679887pt;}
.x32{left:289.119884pt;}
.x19{left:300.479880pt;}
.x27{left:304.319856pt;}
.x9{left:306.238927pt;}
.x16{left:315.839874pt;}
.x28{left:319.519872pt;}
.x25{left:335.359434pt;}
.x18{left:344.639862pt;}
.x1e{left:355.199858pt;}
.x2f{left:364.959444pt;}
.x15{left:371.839851pt;}
.x6{left:383.359847pt;}
.x2a{left:393.279843pt;}
.x22{left:397.760676pt;}
.x5{left:415.839834pt;}
.x13{left:439.839824pt;}
.x2b{left:508.000000pt;}
.x29{left:512.000000pt;}
.xa{left:519.359792pt;}
.xb{left:525.439790pt;}
.xc{left:529.279753pt;}
.x10{left:530.239788pt;}
.x35{left:553.438824pt;}
.xf{left:563.039397pt;}
.x36{left:571.198865pt;}
.x30{left:615.359754pt;}
.x2d{left:620.799752pt;}
.x1b{left:660.799736pt;}
.x23{left:679.999728pt;}
.x4{left:702.239719pt;}
.xd{left:712.799715pt;}
.xe{left:718.239713pt;}
}




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