
    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_04a82dd115c5df1466896609.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693359;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_391ddca0bde104271bd6afa2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_245a88dfe7b925f03a338553.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_a57ce98e68ef50b54266b02c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_c36f5a13c63a6a74b810a419.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.882324;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_501cdc176a2c16739eb8aa28.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-0.702031px;}
.lse{letter-spacing:-0.540024px;}
.ls4{letter-spacing:-0.007200px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.007200px;}
.ls8{letter-spacing:0.023905px;}
.lsa{letter-spacing:0.035857px;}
.lsb{letter-spacing:0.179400px;}
.ls0{letter-spacing:0.359100px;}
.ls7{letter-spacing:0.418337px;}
.ls6{letter-spacing:0.429352px;}
.ls2{letter-spacing:0.475224px;}
.ls5{letter-spacing:0.482418px;}
.lsd{letter-spacing:0.540024px;}
.ls9{letter-spacing:92.631720px;}
.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;}
}
.ws2d{word-spacing:-59.762400px;}
.ws2e{word-spacing:-28.945080px;}
.ws30{word-spacing:-13.500600px;}
.ws2f{word-spacing:-12.798569px;}
.ws28{word-spacing:-5.040210px;}
.ws9{word-spacing:-3.585744px;}
.ws43{word-spacing:-3.240144px;}
.wsc{word-spacing:-2.988120px;}
.ws45{word-spacing:-2.705520px;}
.ws42{word-spacing:-2.700120px;}
.ws11{word-spacing:-2.390496px;}
.ws46{word-spacing:-2.160096px;}
.ws1b{word-spacing:-2.138508px;}
.ws7{word-spacing:-1.792872px;}
.ws3e{word-spacing:-1.625472px;}
.ws6{word-spacing:-1.195248px;}
.ws3b{word-spacing:-1.080048px;}
.ws0{word-spacing:-0.842430px;}
.ws27{word-spacing:-0.621529px;}
.ws1a{word-spacing:-0.597624px;}
.ws35{word-spacing:-0.540024px;}
.ws1f{word-spacing:-0.482418px;}
.ws20{word-spacing:-0.143430px;}
.ws2c{word-spacing:-0.035857px;}
.ws2{word-spacing:-0.007200px;}
.ws1{word-spacing:0.000000px;}
.ws37{word-spacing:0.540024px;}
.ws13{word-spacing:0.597624px;}
.ws3c{word-spacing:1.080048px;}
.ws4{word-spacing:1.195248px;}
.ws1c{word-spacing:1.447254px;}
.wsa{word-spacing:1.792872px;}
.ws41{word-spacing:2.160096px;}
.ws12{word-spacing:2.390496px;}
.ws8{word-spacing:2.988120px;}
.ws14{word-spacing:3.585744px;}
.ws3a{word-spacing:3.780168px;}
.ws26{word-spacing:4.183368px;}
.ws3{word-spacing:4.780992px;}
.ws15{word-spacing:5.378616px;}
.wsf{word-spacing:5.976240px;}
.ws34{word-spacing:6.474888px;}
.ws31{word-spacing:6.480288px;}
.ws29{word-spacing:6.573864px;}
.ws36{word-spacing:7.020312px;}
.ws38{word-spacing:7.025712px;}
.wsb{word-spacing:7.171488px;}
.ws1e{word-spacing:7.236270px;}
.ws32{word-spacing:7.560336px;}
.ws21{word-spacing:7.769112px;}
.ws1d{word-spacing:7.771754px;}
.ws39{word-spacing:8.100360px;}
.wse{word-spacing:8.366736px;}
.ws10{word-spacing:8.964360px;}
.wsd{word-spacing:9.561984px;}
.ws25{word-spacing:10.159608px;}
.ws33{word-spacing:10.260456px;}
.ws2b{word-spacing:10.757232px;}
.ws3f{word-spacing:10.800480px;}
.ws23{word-spacing:11.354856px;}
.ws5{word-spacing:11.952480px;}
.ws40{word-spacing:12.420552px;}
.ws18{word-spacing:12.550104px;}
.ws17{word-spacing:13.147728px;}
.ws44{word-spacing:13.500600px;}
.ws2a{word-spacing:13.745352px;}
.ws3d{word-spacing:17.280768px;}
.ws24{word-spacing:17.928720px;}
.ws16{word-spacing:20.916840px;}
.ws19{word-spacing:22.709712px;}
.ws22{word-spacing:49.005168px;}
._e{margin-left:-104.584206px;}
._f{margin-left:-92.422914px;}
._16{margin-left:-15.795702px;}
._15{margin-left:-14.548261px;}
._14{margin-left:-13.122584px;}
._c{margin-left:-11.701732px;}
._12{margin-left:-10.678128px;}
._13{margin-left:-9.441181px;}
._4{margin-left:-8.353796px;}
._5{margin-left:-6.301710px;}
._1{margin-left:-5.097812px;}
._3{margin-left:-3.905458px;}
._6{margin-left:-2.599308px;}
._0{margin-left:-1.179402px;}
._2{width:1.601887px;}
._11{width:3.618161px;}
._d{width:5.202397px;}
._10{width:312.557352px;}
._9{width:495.249000px;}
._7{width:500.015880px;}
._8{width:801.009000px;}
._a{width:1347.666480px;}
._b{width:1987.368240px;}
.fc3{color:rgb(59,76,167);}
.fc2{color:transparent;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:23.761200px;}
.fs6{font-size:30.241200px;}
.fs5{font-size:42.000000px;}
.fs2{font-size:48.241800px;}
.fs7{font-size:54.002400px;}
.fs3{font-size:59.762400px;}
.fs1{font-size:72.003000px;}
.fs0{font-size:84.243000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:2.879250px;}
.y58{bottom:2.879550px;}
.y5f{bottom:6.600001px;}
.y61{bottom:22.500000px;}
.y62{bottom:42.000000px;}
.yee{bottom:92.154661px;}
.yc6{bottom:92.513587px;}
.y5d{bottom:92.697582px;}
.y54{bottom:93.234685px;}
.y93{bottom:94.316783px;}
.y5c{bottom:106.377750px;}
.yed{bottom:109.434959px;}
.yc5{bottom:109.613104px;}
.y53{bottom:110.514983px;}
.y92{bottom:111.597081px;}
.y5a{bottom:117.358500px;}
.yec{bottom:126.715257px;}
.yc4{bottom:126.893402px;}
.y52{bottom:127.614500px;}
.y91{bottom:128.877379px;}
.y63{bottom:130.500000px;}
.y59{bottom:131.218500px;}
.yeb{bottom:143.814774px;}
.yc3{bottom:144.173700px;}
.y51{bottom:144.894798px;}
.y57{bottom:144.898500px;}
.y90{bottom:145.976896px;}
.y56{bottom:147.778050px;}
.y55{bottom:160.377900px;}
.yea{bottom:161.095072px;}
.yc2{bottom:161.453998px;}
.y50{bottom:162.175096px;}
.y8f{bottom:163.257194px;}
.y124{bottom:177.657828px;}
.ye9{bottom:178.375370px;}
.yc1{bottom:178.734296px;}
.y4f{bottom:179.455394px;}
.y8e{bottom:180.537491px;}
.ye8{bottom:195.655668px;}
.y123{bottom:195.658050px;}
.yc0{bottom:196.014594px;}
.y4e{bottom:196.735692px;}
.y8d{bottom:197.817789px;}
.y2f{bottom:208.255333px;}
.y122{bottom:208.798624px;}
.ye7{bottom:212.935966px;}
.ybf{bottom:213.114111px;}
.y4d{bottom:213.835208px;}
.y8c{bottom:215.098087px;}
.y121{bottom:224.278412px;}
.y2e{bottom:225.535630px;}
.ye6{bottom:230.035483px;}
.ybe{bottom:230.394409px;}
.y4c{bottom:231.115506px;}
.y8b{bottom:232.378385px;}
.y120{bottom:239.758200px;}
.y2d{bottom:242.815928px;}
.ye5{bottom:247.315780px;}
.ybd{bottom:247.674707px;}
.y4b{bottom:248.395804px;}
.y8a{bottom:249.477902px;}
.y2c{bottom:259.915445px;}
.y11f{bottom:259.918200px;}
.ye4{bottom:264.596078px;}
.ybc{bottom:264.955005px;}
.y4a{bottom:265.676102px;}
.y89{bottom:266.758200px;}
.y11e{bottom:275.577482px;}
.y2b{bottom:277.195743px;}
.ye3{bottom:281.876376px;}
.ybb{bottom:282.235302px;}
.y49{bottom:282.956400px;}
.y88{bottom:289.257488px;}
.y11d{bottom:291.057270px;}
.y2a{bottom:294.476041px;}
.ye2{bottom:299.156674px;}
.yba{bottom:299.334819px;}
.y48{bottom:300.236698px;}
.y11c{bottom:306.717966px;}
.y87{bottom:309.958350px;}
.y29{bottom:311.756339px;}
.ye1{bottom:316.436972px;}
.yb9{bottom:316.615117px;}
.y47{bottom:317.336215px;}
.y11b{bottom:322.378662px;}
.y28{bottom:329.036637px;}
.ye0{bottom:333.536489px;}
.yb8{bottom:333.895415px;}
.y46{bottom:334.616513px;}
.y11a{bottom:342.358200px;}
.y86{bottom:343.437549px;}
.y27{bottom:346.316935px;}
.ydf{bottom:350.816787px;}
.yb7{bottom:351.175713px;}
.y45{bottom:351.896811px;}
.y119{bottom:358.018016px;}
.y85{bottom:360.717847px;}
.y26{bottom:363.416452px;}
.yde{bottom:368.097085px;}
.yb6{bottom:368.456011px;}
.y44{bottom:369.177109px;}
.y118{bottom:373.678712px;}
.y84{bottom:379.078350px;}
.y25{bottom:380.696750px;}
.ydd{bottom:385.377383px;}
.yb5{bottom:385.736309px;}
.y43{bottom:386.457407px;}
.y117{bottom:389.158500px;}
.y24{bottom:397.977048px;}
.ydc{bottom:402.657681px;}
.yb4{bottom:402.835826px;}
.y42{bottom:403.737705px;}
.y116{bottom:409.318500px;}
.y23{bottom:415.257346px;}
.ydb{bottom:419.937979px;}
.yb3{bottom:420.116124px;}
.y41{bottom:420.837221px;}
.y115{bottom:424.978016px;}
.y22{bottom:432.537644px;}
.yda{bottom:437.037496px;}
.yb2{bottom:437.396422px;}
.y40{bottom:438.117519px;}
.y114{bottom:440.457804px;}
.y21{bottom:449.637160px;}
.yd9{bottom:454.317793px;}
.yb1{bottom:454.676720px;}
.y3f{bottom:455.397817px;}
.y113{bottom:456.118500px;}
.y20{bottom:466.917458px;}
.yd8{bottom:471.598091px;}
.yb0{bottom:471.957018px;}
.y3e{bottom:472.678115px;}
.y112{bottom:476.098500px;}
.y1f{bottom:484.197756px;}
.yd7{bottom:488.878389px;}
.yaf{bottom:489.237315px;}
.y3d{bottom:489.958413px;}
.y111{bottom:491.757870px;}
.y1e{bottom:501.478054px;}
.yd6{bottom:506.158687px;}
.yae{bottom:506.336832px;}
.y110{bottom:507.418566px;}
.y3c{bottom:516.058147px;}
.y1d{bottom:518.758352px;}
.y10f{bottom:523.079262px;}
.yd5{bottom:523.438985px;}
.yad{bottom:523.617130px;}
.y3b{bottom:533.338445px;}
.y1c{bottom:536.038650px;}
.yd4{bottom:540.538502px;}
.yac{bottom:540.897428px;}
.y10e{bottom:543.058800px;}
.y3a{bottom:551.878236px;}
.yd3{bottom:557.818800px;}
.yab{bottom:558.177726px;}
.y1b{bottom:558.358650px;}
.y10d{bottom:558.717870px;}
.y83{bottom:563.758800px;}
.y82{bottom:574.014817px;}
.y10c{bottom:574.378566px;}
.yaa{bottom:575.458024px;}
.yd2{bottom:580.318800px;}
.y10b{bottom:589.858354px;}
.y81{bottom:591.295115px;}
.y1a{bottom:591.836343px;}
.ya9{bottom:592.738322px;}
.y80{bottom:608.575413px;}
.y19{bottom:609.116641px;}
.ya8{bottom:609.837839px;}
.y10a{bottom:610.018800px;}
.yd1{bottom:613.797153px;}
.y109{bottom:625.678716px;}
.y7f{bottom:625.855711px;}
.y18{bottom:626.396939px;}
.ya7{bottom:627.118137px;}
.yd0{bottom:631.077451px;}
.y108{bottom:641.158504px;}
.y7e{bottom:643.136009px;}
.y17{bottom:643.677237px;}
.ycf{bottom:648.357749px;}
.ya6{bottom:653.398652px;}
.y7d{bottom:660.235526px;}
.y16{bottom:660.957535px;}
.y107{bottom:661.318456px;}
.yce{bottom:665.457266px;}
.ya5{bottom:670.678950px;}
.y106{bottom:676.978716px;}
.y7c{bottom:677.515824px;}
.y15{bottom:678.237833px;}
.ycd{bottom:682.737564px;}
.ya4{bottom:690.479100px;}
.y105{bottom:692.458504px;}
.y7b{bottom:694.796122px;}
.y14{bottom:695.337350px;}
.y39{bottom:695.697946px;}
.ycc{bottom:700.017862px;}
.ya3{bottom:700.376246px;}
.y7a{bottom:712.076420px;}
.y13{bottom:712.617648px;}
.y104{bottom:712.618950px;}
.y38{bottom:712.978243px;}
.ycb{bottom:717.298160px;}
.y103{bottom:728.279312px;}
.y79{bottom:729.356718px;}
.y12{bottom:729.897946px;}
.y37{bottom:730.258541px;}
.yca{bottom:734.578458px;}
.y102{bottom:743.759100px;}
.y78{bottom:746.637016px;}
.y11{bottom:747.178244px;}
.y36{bottom:747.358058px;}
.yc9{bottom:760.678192px;}
.y77{bottom:763.736533px;}
.y10{bottom:764.458541px;}
.y35{bottom:764.638356px;}
.y101{bottom:764.819250px;}
.yc8{bottom:777.958490px;}
.y76{bottom:781.016830px;}
.yf{bottom:781.558058px;}
.y34{bottom:781.918654px;}
.yc7{bottom:796.498280px;}
.y100{bottom:798.295227px;}
.y75{bottom:798.297128px;}
.ye{bottom:798.838356px;}
.y33{bottom:799.198952px;}
.yff{bottom:815.575525px;}
.y74{bottom:815.577426px;}
.yd{bottom:816.118654px;}
.y32{bottom:816.479250px;}
.yfe{bottom:832.855823px;}
.y73{bottom:832.857724px;}
.yc{bottom:833.398952px;}
.y31{bottom:838.978538px;}
.yfd{bottom:849.955340px;}
.ya2{bottom:849.957051px;}
.y72{bottom:849.957241px;}
.yb{bottom:850.679250px;}
.y30{bottom:859.679400px;}
.yfc{bottom:867.235638px;}
.ya1{bottom:867.237349px;}
.y71{bottom:867.237539px;}
.ya{bottom:873.178313px;}
.yfb{bottom:884.515936px;}
.ya0{bottom:884.517647px;}
.y70{bottom:884.517837px;}
.yfa{bottom:901.796234px;}
.y9f{bottom:901.797945px;}
.y6f{bottom:901.798135px;}
.y9{bottom:911.878125px;}
.yf9{bottom:919.076532px;}
.y9e{bottom:919.078243px;}
.y6e{bottom:919.078433px;}
.y8{bottom:932.578988px;}
.yf8{bottom:936.356830px;}
.y9d{bottom:936.358541px;}
.y6d{bottom:936.358731px;}
.y7{bottom:953.278050px;}
.yf7{bottom:953.456346px;}
.y9c{bottom:953.458057px;}
.y6c{bottom:953.458248px;}
.yf6{bottom:970.736644px;}
.y9b{bottom:970.738355px;}
.y6b{bottom:970.738546px;}
.y6{bottom:973.978913px;}
.yf5{bottom:988.016942px;}
.y9a{bottom:988.018653px;}
.y6a{bottom:988.018844px;}
.y5{bottom:994.679775px;}
.yf4{bottom:1005.297240px;}
.y99{bottom:1005.298951px;}
.y69{bottom:1005.299141px;}
.y4{bottom:1015.378838px;}
.yf3{bottom:1022.577538px;}
.y98{bottom:1022.579249px;}
.y68{bottom:1022.579439px;}
.y3{bottom:1036.079700px;}
.yf2{bottom:1039.857836px;}
.y97{bottom:1039.859547px;}
.y67{bottom:1039.859737px;}
.yf1{bottom:1056.957353px;}
.y96{bottom:1056.959064px;}
.y66{bottom:1056.959254px;}
.y2{bottom:1061.818823px;}
.yf0{bottom:1074.237651px;}
.y95{bottom:1074.239362px;}
.y65{bottom:1074.239552px;}
.y1{bottom:1085.939700px;}
.yef{bottom:1091.517949px;}
.y94{bottom:1091.519660px;}
.y64{bottom:1091.519850px;}
.y60{bottom:1131.000000px;}
.y5e{bottom:1150.500000px;}
.h9{height:13.680000px;}
.ha{height:15.000000px;}
.h7{height:16.509857px;}
.hd{height:21.012318px;}
.h8{height:33.519571px;}
.h10{height:34.956461px;}
.he{height:37.522175px;}
.hf{height:37.524153px;}
.h5{height:41.524363px;}
.hb{height:43.804688px;}
.h6{height:48.798908px;}
.h4{height:49.994271px;}
.h3{height:50.029428px;}
.h1{height:57.094377px;}
.h2{height:60.879571px;}
.hc{height:951.000000px;}
.h0{height:1188.000000px;}
.w4{width:13.500000px;}
.w1{width:341.460000px;}
.w2{width:351.000000px;}
.w3{width:721.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x15{left:8.399999px;}
.x14{left:44.250000px;}
.xa{left:84.975413px;}
.x19{left:90.194918px;}
.x12{left:94.155000px;}
.x18{left:95.775150px;}
.xb{left:99.015150px;}
.x16{left:111.795021px;}
.x1{left:132.675300px;}
.x2{left:141.495542px;}
.x5{left:149.416298px;}
.x3{left:183.075300px;}
.xc{left:188.295300px;}
.x1c{left:194.235300px;}
.x13{left:211.944030px;}
.x4{left:261.375563px;}
.x6{left:267.135803px;}
.x7{left:297.555270px;}
.x8{left:311.595855px;}
.x9{left:321.496267px;}
.x17{left:435.075900px;}
.x10{left:457.216218px;}
.x1e{left:463.695900px;}
.xd{left:467.295900px;}
.xf{left:471.255900px;}
.x20{left:484.036616px;}
.x1f{left:485.295510px;}
.x21{left:486.375846px;}
.xe{left:558.376095px;}
.x1a{left:563.596095px;}
.x1d{left:572.056050px;}
.x11{left:585.555972px;}
.x1b{left:836.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-0.624028pt;}
.lse{letter-spacing:-0.480021pt;}
.ls4{letter-spacing:-0.006400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006400pt;}
.ls8{letter-spacing:0.021249pt;}
.lsa{letter-spacing:0.031873pt;}
.lsb{letter-spacing:0.159467pt;}
.ls0{letter-spacing:0.319200pt;}
.ls7{letter-spacing:0.371855pt;}
.ls6{letter-spacing:0.381646pt;}
.ls2{letter-spacing:0.422421pt;}
.ls5{letter-spacing:0.428816pt;}
.lsd{letter-spacing:0.480021pt;}
.ls9{letter-spacing:82.339307pt;}
.ws2d{word-spacing:-53.122133pt;}
.ws2e{word-spacing:-25.728960pt;}
.ws30{word-spacing:-12.000533pt;}
.ws2f{word-spacing:-11.376506pt;}
.ws28{word-spacing:-4.480187pt;}
.ws9{word-spacing:-3.187328pt;}
.ws43{word-spacing:-2.880128pt;}
.wsc{word-spacing:-2.656107pt;}
.ws45{word-spacing:-2.404907pt;}
.ws42{word-spacing:-2.400107pt;}
.ws11{word-spacing:-2.124885pt;}
.ws46{word-spacing:-1.920085pt;}
.ws1b{word-spacing:-1.900896pt;}
.ws7{word-spacing:-1.593664pt;}
.ws3e{word-spacing:-1.444864pt;}
.ws6{word-spacing:-1.062443pt;}
.ws3b{word-spacing:-0.960043pt;}
.ws0{word-spacing:-0.748827pt;}
.ws27{word-spacing:-0.552470pt;}
.ws1a{word-spacing:-0.531221pt;}
.ws35{word-spacing:-0.480021pt;}
.ws1f{word-spacing:-0.428816pt;}
.ws20{word-spacing:-0.127493pt;}
.ws2c{word-spacing:-0.031873pt;}
.ws2{word-spacing:-0.006400pt;}
.ws1{word-spacing:0.000000pt;}
.ws37{word-spacing:0.480021pt;}
.ws13{word-spacing:0.531221pt;}
.ws3c{word-spacing:0.960043pt;}
.ws4{word-spacing:1.062443pt;}
.ws1c{word-spacing:1.286448pt;}
.wsa{word-spacing:1.593664pt;}
.ws41{word-spacing:1.920085pt;}
.ws12{word-spacing:2.124885pt;}
.ws8{word-spacing:2.656107pt;}
.ws14{word-spacing:3.187328pt;}
.ws3a{word-spacing:3.360149pt;}
.ws26{word-spacing:3.718549pt;}
.ws3{word-spacing:4.249771pt;}
.ws15{word-spacing:4.780992pt;}
.wsf{word-spacing:5.312213pt;}
.ws34{word-spacing:5.755456pt;}
.ws31{word-spacing:5.760256pt;}
.ws29{word-spacing:5.843435pt;}
.ws36{word-spacing:6.240277pt;}
.ws38{word-spacing:6.245078pt;}
.wsb{word-spacing:6.374656pt;}
.ws1e{word-spacing:6.432240pt;}
.ws32{word-spacing:6.720299pt;}
.ws21{word-spacing:6.905877pt;}
.ws1d{word-spacing:6.908226pt;}
.ws39{word-spacing:7.200320pt;}
.wse{word-spacing:7.437099pt;}
.ws10{word-spacing:7.968320pt;}
.wsd{word-spacing:8.499541pt;}
.ws25{word-spacing:9.030763pt;}
.ws33{word-spacing:9.120405pt;}
.ws2b{word-spacing:9.561984pt;}
.ws3f{word-spacing:9.600427pt;}
.ws23{word-spacing:10.093205pt;}
.ws5{word-spacing:10.624427pt;}
.ws40{word-spacing:11.040491pt;}
.ws18{word-spacing:11.155648pt;}
.ws17{word-spacing:11.686869pt;}
.ws44{word-spacing:12.000533pt;}
.ws2a{word-spacing:12.218091pt;}
.ws3d{word-spacing:15.360683pt;}
.ws24{word-spacing:15.936640pt;}
.ws16{word-spacing:18.592747pt;}
.ws19{word-spacing:20.186411pt;}
.ws22{word-spacing:43.560149pt;}
._e{margin-left:-92.963739pt;}
._f{margin-left:-82.153701pt;}
._16{margin-left:-14.040624pt;}
._15{margin-left:-12.931787pt;}
._14{margin-left:-11.664519pt;}
._c{margin-left:-10.401540pt;}
._12{margin-left:-9.491670pt;}
._13{margin-left:-8.392161pt;}
._4{margin-left:-7.425596pt;}
._5{margin-left:-5.601520pt;}
._1{margin-left:-4.531389pt;}
._3{margin-left:-3.471518pt;}
._6{margin-left:-2.310496pt;}
._0{margin-left:-1.048357pt;}
._2{width:1.423899pt;}
._11{width:3.216143pt;}
._d{width:4.624353pt;}
._10{width:277.828757pt;}
._9{width:440.221333pt;}
._7{width:444.458560pt;}
._8{width:712.008000pt;}
._a{width:1197.925760pt;}
._b{width:1766.549547pt;}
.fs4{font-size:21.121067pt;}
.fs6{font-size:26.881067pt;}
.fs5{font-size:37.333333pt;}
.fs2{font-size:42.881600pt;}
.fs7{font-size:48.002133pt;}
.fs3{font-size:53.122133pt;}
.fs1{font-size:64.002667pt;}
.fs0{font-size:74.882667pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:2.559333pt;}
.y58{bottom:2.559600pt;}
.y5f{bottom:5.866668pt;}
.y61{bottom:20.000000pt;}
.y62{bottom:37.333333pt;}
.yee{bottom:81.915255pt;}
.yc6{bottom:82.234300pt;}
.y5d{bottom:82.397850pt;}
.y54{bottom:82.875276pt;}
.y93{bottom:83.837140pt;}
.y5c{bottom:94.558000pt;}
.yed{bottom:97.275519pt;}
.yc5{bottom:97.433870pt;}
.y53{bottom:98.235541pt;}
.y92{bottom:99.197405pt;}
.y5a{bottom:104.318667pt;}
.yec{bottom:112.635784pt;}
.yc4{bottom:112.794135pt;}
.y52{bottom:113.435111pt;}
.y91{bottom:114.557670pt;}
.y63{bottom:116.000000pt;}
.y59{bottom:116.638667pt;}
.yeb{bottom:127.835355pt;}
.yc3{bottom:128.154400pt;}
.y51{bottom:128.795376pt;}
.y57{bottom:128.798667pt;}
.y90{bottom:129.757240pt;}
.y56{bottom:131.358267pt;}
.y55{bottom:142.558133pt;}
.yea{bottom:143.195620pt;}
.yc2{bottom:143.514665pt;}
.y50{bottom:144.155641pt;}
.y8f{bottom:145.117505pt;}
.y124{bottom:157.918070pt;}
.ye9{bottom:158.555884pt;}
.yc1{bottom:158.874930pt;}
.y4f{bottom:159.515906pt;}
.y8e{bottom:160.477770pt;}
.ye8{bottom:173.916149pt;}
.y123{bottom:173.918267pt;}
.yc0{bottom:174.235195pt;}
.y4e{bottom:174.876170pt;}
.y8d{bottom:175.838035pt;}
.y2f{bottom:185.115851pt;}
.y122{bottom:185.598777pt;}
.ye7{bottom:189.276414pt;}
.ybf{bottom:189.434765pt;}
.y4d{bottom:190.075741pt;}
.y8c{bottom:191.198300pt;}
.y121{bottom:199.358588pt;}
.y2e{bottom:200.476116pt;}
.ye6{bottom:204.475984pt;}
.ybe{bottom:204.795030pt;}
.y4c{bottom:205.436006pt;}
.y8b{bottom:206.558565pt;}
.y120{bottom:213.118400pt;}
.y2d{bottom:215.836381pt;}
.ye5{bottom:219.836249pt;}
.ybd{bottom:220.155295pt;}
.y4b{bottom:220.796271pt;}
.y8a{bottom:221.758135pt;}
.y2c{bottom:231.035951pt;}
.y11f{bottom:231.038400pt;}
.ye4{bottom:235.196514pt;}
.ybc{bottom:235.515560pt;}
.y4a{bottom:236.156535pt;}
.y89{bottom:237.118400pt;}
.y11e{bottom:244.957762pt;}
.y2b{bottom:246.396216pt;}
.ye3{bottom:250.556779pt;}
.ybb{bottom:250.875824pt;}
.y49{bottom:251.516800pt;}
.y88{bottom:257.117767pt;}
.y11d{bottom:258.717573pt;}
.y2a{bottom:261.756481pt;}
.ye2{bottom:265.917044pt;}
.yba{bottom:266.075395pt;}
.y48{bottom:266.877065pt;}
.y11c{bottom:272.638192pt;}
.y87{bottom:275.518533pt;}
.y29{bottom:277.116746pt;}
.ye1{bottom:281.277309pt;}
.yb9{bottom:281.435660pt;}
.y47{bottom:282.076635pt;}
.y11b{bottom:286.558811pt;}
.y28{bottom:292.477011pt;}
.ye0{bottom:296.476879pt;}
.yb8{bottom:296.795925pt;}
.y46{bottom:297.436900pt;}
.y11a{bottom:304.318400pt;}
.y86{bottom:305.277821pt;}
.y27{bottom:307.837276pt;}
.ydf{bottom:311.837144pt;}
.yb7{bottom:312.156189pt;}
.y45{bottom:312.797165pt;}
.y119{bottom:318.238236pt;}
.y85{bottom:320.638086pt;}
.y26{bottom:323.036846pt;}
.yde{bottom:327.197409pt;}
.yb6{bottom:327.516454pt;}
.y44{bottom:328.157430pt;}
.y118{bottom:332.158855pt;}
.y84{bottom:336.958533pt;}
.y25{bottom:338.397111pt;}
.ydd{bottom:342.557674pt;}
.yb5{bottom:342.876719pt;}
.y43{bottom:343.517695pt;}
.y117{bottom:345.918667pt;}
.y24{bottom:353.757376pt;}
.ydc{bottom:357.917939pt;}
.yb4{bottom:358.076289pt;}
.y42{bottom:358.877960pt;}
.y116{bottom:363.838667pt;}
.y23{bottom:369.117640pt;}
.ydb{bottom:373.278203pt;}
.yb3{bottom:373.436554pt;}
.y41{bottom:374.077530pt;}
.y115{bottom:377.758236pt;}
.y22{bottom:384.477905pt;}
.yda{bottom:388.477774pt;}
.yb2{bottom:388.796819pt;}
.y40{bottom:389.437795pt;}
.y114{bottom:391.518048pt;}
.y21{bottom:399.677476pt;}
.yd9{bottom:403.838039pt;}
.yb1{bottom:404.157084pt;}
.y3f{bottom:404.798060pt;}
.y113{bottom:405.438667pt;}
.y20{bottom:415.037741pt;}
.yd8{bottom:419.198304pt;}
.yb0{bottom:419.517349pt;}
.y3e{bottom:420.158325pt;}
.y112{bottom:423.198667pt;}
.y1f{bottom:430.398005pt;}
.yd7{bottom:434.558568pt;}
.yaf{bottom:434.877614pt;}
.y3d{bottom:435.518590pt;}
.y111{bottom:437.118107pt;}
.y1e{bottom:445.758270pt;}
.yd6{bottom:449.918833pt;}
.yae{bottom:450.077184pt;}
.y110{bottom:451.038725pt;}
.y3c{bottom:458.718353pt;}
.y1d{bottom:461.118535pt;}
.y10f{bottom:464.959344pt;}
.yd5{bottom:465.279098pt;}
.yad{bottom:465.437449pt;}
.y3b{bottom:474.078618pt;}
.y1c{bottom:476.478800pt;}
.yd4{bottom:480.478668pt;}
.yac{bottom:480.797714pt;}
.y10e{bottom:482.718933pt;}
.y3a{bottom:490.558432pt;}
.yd3{bottom:495.838933pt;}
.yab{bottom:496.157979pt;}
.y1b{bottom:496.318800pt;}
.y10d{bottom:496.638107pt;}
.y83{bottom:501.118933pt;}
.y82{bottom:510.235393pt;}
.y10c{bottom:510.558725pt;}
.yaa{bottom:511.518244pt;}
.yd2{bottom:515.838933pt;}
.y10b{bottom:524.318537pt;}
.y81{bottom:525.595658pt;}
.y1a{bottom:526.076749pt;}
.ya9{bottom:526.878508pt;}
.y80{bottom:540.955923pt;}
.y19{bottom:541.437014pt;}
.ya8{bottom:542.078079pt;}
.y10a{bottom:542.238933pt;}
.yd1{bottom:545.597469pt;}
.y109{bottom:556.158859pt;}
.y7f{bottom:556.316188pt;}
.y18{bottom:556.797279pt;}
.ya7{bottom:557.438344pt;}
.yd0{bottom:560.957734pt;}
.y108{bottom:569.918670pt;}
.y7e{bottom:571.676453pt;}
.y17{bottom:572.157544pt;}
.ycf{bottom:576.317999pt;}
.ya6{bottom:580.798802pt;}
.y7d{bottom:586.876023pt;}
.y16{bottom:587.517809pt;}
.y107{bottom:587.838627pt;}
.yce{bottom:591.517570pt;}
.ya5{bottom:596.159067pt;}
.y106{bottom:601.758859pt;}
.y7c{bottom:602.236288pt;}
.y15{bottom:602.878074pt;}
.ycd{bottom:606.877834pt;}
.ya4{bottom:613.759200pt;}
.y105{bottom:615.518670pt;}
.y7b{bottom:617.596553pt;}
.y14{bottom:618.077644pt;}
.y39{bottom:618.398174pt;}
.ycc{bottom:622.238099pt;}
.ya3{bottom:622.556663pt;}
.y7a{bottom:632.956818pt;}
.y13{bottom:633.437909pt;}
.y104{bottom:633.439067pt;}
.y38{bottom:633.758439pt;}
.ycb{bottom:637.598364pt;}
.y103{bottom:647.359388pt;}
.y79{bottom:648.317083pt;}
.y12{bottom:648.798174pt;}
.y37{bottom:649.118704pt;}
.yca{bottom:652.958629pt;}
.y102{bottom:661.119200pt;}
.y78{bottom:663.677347pt;}
.y11{bottom:664.158439pt;}
.y36{bottom:664.318274pt;}
.yc9{bottom:676.158393pt;}
.y77{bottom:678.876918pt;}
.y10{bottom:679.518704pt;}
.y35{bottom:679.678539pt;}
.y101{bottom:679.839333pt;}
.yc8{bottom:691.518657pt;}
.y76{bottom:694.237183pt;}
.yf{bottom:694.718274pt;}
.y34{bottom:695.038804pt;}
.yc7{bottom:707.998471pt;}
.y100{bottom:709.595758pt;}
.y75{bottom:709.597448pt;}
.ye{bottom:710.078539pt;}
.y33{bottom:710.399068pt;}
.yff{bottom:724.956022pt;}
.y74{bottom:724.957712pt;}
.yd{bottom:725.438804pt;}
.y32{bottom:725.759333pt;}
.yfe{bottom:740.316287pt;}
.y73{bottom:740.317977pt;}
.yc{bottom:740.799068pt;}
.y31{bottom:745.758700pt;}
.yfd{bottom:755.515858pt;}
.ya2{bottom:755.517378pt;}
.y72{bottom:755.517548pt;}
.yb{bottom:756.159333pt;}
.y30{bottom:764.159467pt;}
.yfc{bottom:770.876123pt;}
.ya1{bottom:770.877643pt;}
.y71{bottom:770.877812pt;}
.ya{bottom:776.158500pt;}
.yfb{bottom:786.236387pt;}
.ya0{bottom:786.237908pt;}
.y70{bottom:786.238077pt;}
.yfa{bottom:801.596652pt;}
.y9f{bottom:801.598173pt;}
.y6f{bottom:801.598342pt;}
.y9{bottom:810.558333pt;}
.yf9{bottom:816.956917pt;}
.y9e{bottom:816.958438pt;}
.y6e{bottom:816.958607pt;}
.y8{bottom:828.959100pt;}
.yf8{bottom:832.317182pt;}
.y9d{bottom:832.318703pt;}
.y6d{bottom:832.318872pt;}
.y7{bottom:847.358267pt;}
.yf7{bottom:847.516752pt;}
.y9c{bottom:847.518273pt;}
.y6c{bottom:847.518442pt;}
.yf6{bottom:862.877017pt;}
.y9b{bottom:862.878538pt;}
.y6b{bottom:862.878707pt;}
.y6{bottom:865.759033pt;}
.yf5{bottom:878.237282pt;}
.y9a{bottom:878.238803pt;}
.y6a{bottom:878.238972pt;}
.y5{bottom:884.159800pt;}
.yf4{bottom:893.597547pt;}
.y99{bottom:893.599068pt;}
.y69{bottom:893.599237pt;}
.y4{bottom:902.558967pt;}
.yf3{bottom:908.957812pt;}
.y98{bottom:908.959332pt;}
.y68{bottom:908.959502pt;}
.y3{bottom:920.959733pt;}
.yf2{bottom:924.318077pt;}
.y97{bottom:924.319597pt;}
.y67{bottom:924.319767pt;}
.yf1{bottom:939.517647pt;}
.y96{bottom:939.519168pt;}
.y66{bottom:939.519337pt;}
.y2{bottom:943.838954pt;}
.yf0{bottom:954.877912pt;}
.y95{bottom:954.879433pt;}
.y65{bottom:954.879602pt;}
.y1{bottom:965.279733pt;}
.yef{bottom:970.238177pt;}
.y94{bottom:970.239697pt;}
.y64{bottom:970.239867pt;}
.y60{bottom:1005.333333pt;}
.y5e{bottom:1022.666667pt;}
.h9{height:12.160000pt;}
.ha{height:13.333333pt;}
.h7{height:14.675429pt;}
.hd{height:18.677616pt;}
.h8{height:29.795174pt;}
.h10{height:31.072409pt;}
.he{height:33.353045pt;}
.hf{height:33.354802pt;}
.h5{height:36.910545pt;}
.hb{height:38.937500pt;}
.h6{height:43.376807pt;}
.h4{height:44.439352pt;}
.h3{height:44.470603pt;}
.h1{height:50.750557pt;}
.h2{height:54.115174pt;}
.hc{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w4{width:12.000000pt;}
.w1{width:303.520000pt;}
.w2{width:312.000000pt;}
.w3{width:641.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x15{left:7.466666pt;}
.x14{left:39.333333pt;}
.xa{left:75.533700pt;}
.x19{left:80.173260pt;}
.x12{left:83.693333pt;}
.x18{left:85.133467pt;}
.xb{left:88.013467pt;}
.x16{left:99.373352pt;}
.x1{left:117.933600pt;}
.x2{left:125.773815pt;}
.x5{left:132.814487pt;}
.x3{left:162.733600pt;}
.xc{left:167.373600pt;}
.x1c{left:172.653600pt;}
.x13{left:188.394693pt;}
.x4{left:232.333833pt;}
.x6{left:237.454047pt;}
.x7{left:264.493573pt;}
.x8{left:276.974093pt;}
.x9{left:285.774460pt;}
.x17{left:386.734133pt;}
.x10{left:406.414416pt;}
.x1e{left:412.174133pt;}
.xd{left:415.374133pt;}
.xf{left:418.894133pt;}
.x20{left:430.254769pt;}
.x1f{left:431.373787pt;}
.x21{left:432.334085pt;}
.xe{left:496.334307pt;}
.x1a{left:500.974307pt;}
.x1d{left:508.494267pt;}
.x11{left:520.494197pt;}
.x1b{left:743.333333pt;}
}




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