
    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_f1a2bccc6096160ec1c5b212.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121000;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_f5a8645b708f92772704c350.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112000;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_fc0ddba7a41d8df18bf31d5f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ab511314432e2e53fd957fd9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_cda4187e5a38d6daeebe52d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.615000;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_239312044013743dfb89d523.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.615000;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_9ef10b61ec476ad9678c4b68.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.259075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259075,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-46.798800px;}
.v2{vertical-align:-33.747000px;}
.v4{vertical-align:-3.056400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.453800px;}
.v3{vertical-align:45.775200px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:21.338400px;}
.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;}
}
.ws2{word-spacing:-16.416000px;}
.ws0{word-spacing:-13.740000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:155.480400px;}
._19{margin-left:-9.231600px;}
._22{margin-left:-7.755000px;}
._6{margin-left:-6.568200px;}
._8{margin-left:-5.316000px;}
._2{margin-left:-4.305000px;}
._3{margin-left:-2.830200px;}
._d{margin-left:-1.397400px;}
._5{width:1.333800px;}
._9{width:3.251400px;}
._a{width:4.253400px;}
._e{width:5.343600px;}
._14{width:6.366600px;}
._13{width:7.371000px;}
._c{width:8.715600px;}
._0{width:10.679400px;}
._1{width:12.232200px;}
._7{width:13.364400px;}
._4{width:14.368200px;}
._b{width:15.410400px;}
._16{width:17.585400px;}
._12{width:19.011000px;}
._f{width:20.340000px;}
._1a{width:21.631800px;}
._1b{width:22.746000px;}
._18{width:24.004800px;}
._15{width:25.290600px;}
._1e{width:26.750400px;}
._1d{width:27.824400px;}
._1c{width:29.383800px;}
._17{width:31.092600px;}
._11{width:32.737200px;}
._10{width:33.808800px;}
._21{width:67.681200px;}
._20{width:80.512200px;}
._1f{width:238.627800px;}
.fc4{color:rgb(79,76,77);}
.fc3{color:rgb(101,98,99);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,60,61);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:33.750000px;}
.fs3{font-size:36.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:64.513800px;}
.y47{bottom:65.016900px;}
.y18a{bottom:91.143450px;}
.y136{bottom:103.567650px;}
.y115{bottom:105.662250px;}
.yd2{bottom:106.585200px;}
.yb0{bottom:106.716450px;}
.yfb{bottom:107.169900px;}
.y46{bottom:107.771400px;}
.y8d{bottom:107.810550px;}
.y23{bottom:109.758600px;}
.y189{bottom:111.525300px;}
.y135{bottom:123.949500px;}
.y114{bottom:126.044100px;}
.yd1{bottom:126.966600px;}
.yaf{bottom:127.097850px;}
.yfa{bottom:127.551750px;}
.y45{bottom:128.152800px;}
.y69{bottom:128.183400px;}
.y8c{bottom:128.191950px;}
.y22{bottom:128.815500px;}
.y24{bottom:129.379350px;}
.y188{bottom:131.906700px;}
.y134{bottom:144.331350px;}
.yd0{bottom:147.348000px;}
.yae{bottom:147.479250px;}
.y44{bottom:148.534650px;}
.y187{bottom:152.288100px;}
.y133{bottom:164.712750px;}
.y113{bottom:166.510500px;}
.ye0{bottom:167.524650px;}
.yad{bottom:167.861100px;}
.yf9{bottom:168.018600px;}
.y68{bottom:168.814800px;}
.y8b{bottom:169.225500px;}
.y186{bottom:172.669950px;}
.y20{bottom:182.943450px;}
.y132{bottom:185.094150px;}
.y112{bottom:186.891900px;}
.ycf{bottom:187.814850px;}
.ydf{bottom:187.906500px;}
.yac{bottom:188.242950px;}
.yf8{bottom:188.400000px;}
.y67{bottom:189.196650px;}
.y43{bottom:189.297900px;}
.y8a{bottom:189.606900px;}
.y185{bottom:193.051800px;}
.y1f{bottom:203.324850px;}
.y131{bottom:205.476000px;}
.y111{bottom:207.273750px;}
.yce{bottom:208.196700px;}
.yde{bottom:208.287900px;}
.yf7{bottom:208.781400px;}
.y66{bottom:209.578050px;}
.y42{bottom:209.679750px;}
.y89{bottom:209.988750px;}
.y184{bottom:213.433200px;}
.y1e{bottom:223.706250px;}
.y130{bottom:225.857850px;}
.y110{bottom:227.655600px;}
.ycd{bottom:228.578100px;}
.ydd{bottom:228.669300px;}
.yab{bottom:229.006200px;}
.yf6{bottom:229.163250px;}
.y41{bottom:230.061600px;}
.y88{bottom:230.370600px;}
.y183{bottom:233.814600px;}
.y1d{bottom:244.088100px;}
.y12f{bottom:246.239250px;}
.ycc{bottom:248.959500px;}
.ydc{bottom:249.051150px;}
.yaa{bottom:249.388050px;}
.yf5{bottom:249.545100px;}
.y40{bottom:250.443000px;}
.y65{bottom:250.536450px;}
.y182{bottom:254.196450px;}
.y11b{bottom:263.691750px;}
.y11e{bottom:264.067200px;}
.y118{bottom:264.442650px;}
.y1c{bottom:264.469950px;}
.ycb{bottom:269.341350px;}
.ydb{bottom:269.433000px;}
.ya9{bottom:269.769900px;}
.yf4{bottom:269.926500px;}
.y149{bottom:269.989500px;}
.y3f{bottom:270.824400px;}
.y87{bottom:271.133850px;}
.y181{bottom:274.578300px;}
.y11a{bottom:284.073150px;}
.y11d{bottom:284.448600px;}
.y117{bottom:284.824500px;}
.y1b{bottom:284.851350px;}
.yca{bottom:289.723200px;}
.yda{bottom:289.814400px;}
.ya8{bottom:290.151300px;}
.yf3{bottom:290.307900px;}
.y148{bottom:290.370900px;}
.y3e{bottom:291.206250px;}
.y64{bottom:291.495300px;}
.y180{bottom:294.959700px;}
.y119{bottom:304.454550px;}
.y11c{bottom:304.830450px;}
.y116{bottom:305.206350px;}
.y1a{bottom:305.232750px;}
.yc9{bottom:310.104600px;}
.yd9{bottom:310.195800px;}
.ya7{bottom:310.532700px;}
.yf2{bottom:310.689750px;}
.y147{bottom:310.752750px;}
.y63{bottom:311.876700px;}
.y86{bottom:311.897400px;}
.y17f{bottom:315.341100px;}
.yc8{bottom:330.486000px;}
.yd8{bottom:330.577650px;}
.ya6{bottom:330.914550px;}
.yf1{bottom:331.071150px;}
.y146{bottom:331.134600px;}
.y3d{bottom:331.969500px;}
.y62{bottom:332.258100px;}
.y85{bottom:332.278800px;}
.y120{bottom:332.699550px;}
.y17e{bottom:335.722950px;}
.y164{bottom:337.538400px;}
.y19{bottom:345.996300px;}
.y11f{bottom:346.231050px;}
.yd7{bottom:350.959500px;}
.ya5{bottom:351.296400px;}
.yf0{bottom:351.452550px;}
.y145{bottom:351.516000px;}
.y3c{bottom:352.350900px;}
.y61{bottom:352.639950px;}
.y84{bottom:352.660200px;}
.y17d{bottom:356.104800px;}
.yc7{bottom:370.952400px;}
.ya4{bottom:371.677800px;}
.yef{bottom:371.834400px;}
.y144{bottom:371.897850px;}
.y3b{bottom:372.732750px;}
.y60{bottom:373.021800px;}
.y83{bottom:373.042050px;}
.y17c{bottom:376.354800px;}
.y163{bottom:378.301650px;}
.y16{bottom:387.149850px;}
.y10f{bottom:390.710100px;}
.yc6{bottom:391.334250px;}
.ya3{bottom:392.059200px;}
.yee{bottom:392.216250px;}
.y143{bottom:392.279700px;}
.y3a{bottom:393.114600px;}
.y5f{bottom:393.403200px;}
.y82{bottom:393.423900px;}
.y17b{bottom:396.736200px;}
.y162{bottom:398.683500px;}
.y15{bottom:407.399400px;}
.y18{bottom:407.399850px;}
.y10e{bottom:411.091500px;}
.yc5{bottom:411.716100px;}
.ya2{bottom:412.441050px;}
.yed{bottom:412.597650px;}
.y142{bottom:412.661100px;}
.y39{bottom:413.496000px;}
.y81{bottom:413.805300px;}
.y17a{bottom:417.117600px;}
.y161{bottom:419.065350px;}
.yc4{bottom:432.097500px;}
.ya1{bottom:432.822900px;}
.yec{bottom:432.979050px;}
.y38{bottom:433.877400px;}
.y5e{bottom:434.166750px;}
.y80{bottom:434.186700px;}
.y179{bottom:437.499450px;}
.y160{bottom:439.446750px;}
.y14{bottom:448.162950px;}
.y141{bottom:453.424650px;}
.y37{bottom:454.259250px;}
.y5d{bottom:454.548600px;}
.y7f{bottom:454.568550px;}
.y178{bottom:457.881300px;}
.y15f{bottom:459.828150px;}
.y13{bottom:468.544350px;}
.yc3{bottom:473.056350px;}
.ya0{bottom:473.586150px;}
.yeb{bottom:473.742600px;}
.y140{bottom:473.806500px;}
.y36{bottom:474.641100px;}
.y5c{bottom:474.930000px;}
.y7e{bottom:474.950400px;}
.y177{bottom:478.262700px;}
.y15e{bottom:480.210000px;}
.y12{bottom:488.925750px;}
.yea{bottom:494.124000px;}
.y13f{bottom:494.187900px;}
.y35{bottom:495.022500px;}
.y5b{bottom:495.311400px;}
.y176{bottom:498.644100px;}
.y11{bottom:509.307600px;}
.yc2{bottom:514.210350px;}
.ye9{bottom:514.505400px;}
.y34{bottom:515.403900px;}
.y5a{bottom:515.693250px;}
.y7d{bottom:515.713650px;}
.y15d{bottom:520.973250px;}
.y10{bottom:529.689450px;}
.yc1{bottom:534.591750px;}
.y199{bottom:534.591900px;}
.y9f{bottom:534.731100px;}
.ye8{bottom:534.887250px;}
.y13e{bottom:534.951450px;}
.y33{bottom:535.785750px;}
.y59{bottom:536.075100px;}
.y7c{bottom:536.095500px;}
.y175{bottom:539.602950px;}
.y15c{bottom:541.354650px;}
.yf{bottom:550.070850px;}
.yc0{bottom:554.973150px;}
.y198{bottom:554.973300px;}
.y9e{bottom:555.112950px;}
.ye7{bottom:555.269100px;}
.y13d{bottom:555.333300px;}
.y32{bottom:556.167600px;}
.y58{bottom:556.456500px;}
.y7b{bottom:556.477350px;}
.y15b{bottom:561.736500px;}
.ybf{bottom:575.355000px;}
.y197{bottom:575.355150px;}
.y9d{bottom:575.494800px;}
.ye6{bottom:575.650500px;}
.y13c{bottom:575.714700px;}
.y57{bottom:576.837900px;}
.y7a{bottom:576.858750px;}
.y174{bottom:580.756500px;}
.y15a{bottom:582.118350px;}
.ye{bottom:590.834400px;}
.y12e{bottom:592.730100px;}
.ybe{bottom:595.736850px;}
.y196{bottom:595.737000px;}
.y9c{bottom:595.876200px;}
.ye5{bottom:596.031900px;}
.y13b{bottom:596.096100px;}
.y31{bottom:596.930850px;}
.y56{bottom:597.219750px;}
.y79{bottom:597.240600px;}
.y173{bottom:601.137900px;}
.yd{bottom:611.216250px;}
.ybd{bottom:616.118250px;}
.y195{bottom:616.118400px;}
.y9b{bottom:616.257600px;}
.ye4{bottom:616.413750px;}
.y13a{bottom:616.477950px;}
.y30{bottom:617.312700px;}
.y55{bottom:617.601150px;}
.y78{bottom:617.622450px;}
.y172{bottom:621.519750px;}
.yc{bottom:631.597650px;}
.y12d{bottom:633.493350px;}
.y194{bottom:636.499800px;}
.y2f{bottom:637.694550px;}
.y54{bottom:637.982550px;}
.y77{bottom:638.003850px;}
.y171{bottom:641.901600px;}
.yb{bottom:651.979050px;}
.y12c{bottom:653.874750px;}
.ye3{bottom:656.880600px;}
.y193{bottom:656.881650px;}
.ybc{bottom:656.881800px;}
.y9a{bottom:657.021150px;}
.y139{bottom:657.436350px;}
.y2e{bottom:658.075950px;}
.y53{bottom:658.364400px;}
.y76{bottom:658.385250px;}
.y170{bottom:662.283000px;}
.ya{bottom:672.360900px;}
.y12b{bottom:674.256600px;}
.ye2{bottom:677.262000px;}
.ybb{bottom:677.263200px;}
.y192{bottom:677.263500px;}
.y99{bottom:677.402550px;}
.y2d{bottom:678.457350px;}
.y52{bottom:678.746250px;}
.y16f{bottom:682.664850px;}
.y9{bottom:692.742750px;}
.y12a{bottom:694.638450px;}
.ye1{bottom:697.643400px;}
.yba{bottom:697.644600px;}
.y191{bottom:697.644900px;}
.y98{bottom:697.783950px;}
.y2c{bottom:698.839200px;}
.y75{bottom:699.148800px;}
.y16e{bottom:703.046700px;}
.y8{bottom:713.124150px;}
.y154{bottom:714.594300px;}
.y14e{bottom:714.969300px;}
.y155{bottom:714.969750px;}
.y129{bottom:715.019850px;}
.y151{bottom:715.345200px;}
.y190{bottom:718.026300px;}
.yb9{bottom:718.026450px;}
.yd6{bottom:718.026750px;}
.y97{bottom:718.165800px;}
.y2b{bottom:719.220600px;}
.y51{bottom:719.509500px;}
.y74{bottom:719.530200px;}
.y16d{bottom:723.428100px;}
.y153{bottom:734.975700px;}
.y14d{bottom:735.351150px;}
.y128{bottom:735.401250px;}
.y150{bottom:735.727050px;}
.y18f{bottom:738.408150px;}
.yb8{bottom:738.408300px;}
.yd5{bottom:738.408600px;}
.y96{bottom:738.547650px;}
.y50{bottom:739.891350px;}
.y73{bottom:739.911600px;}
.y101{bottom:752.494650px;}
.y104{bottom:752.871300px;}
.yfe{bottom:753.247200px;}
.y17{bottom:754.085850px;}
.y152{bottom:755.357100px;}
.y14c{bottom:755.733000px;}
.y127{bottom:755.783100px;}
.y14f{bottom:756.108900px;}
.y10d{bottom:757.582350px;}
.yb7{bottom:758.789700px;}
.yd4{bottom:758.790000px;}
.y95{bottom:758.929050px;}
.y2a{bottom:760.179000px;}
.y4f{bottom:760.273200px;}
.y72{bottom:760.293450px;}
.y16c{bottom:764.191650px;}
.y100{bottom:772.876500px;}
.y103{bottom:773.252700px;}
.yfd{bottom:773.628600px;}
.y126{bottom:776.164950px;}
.yd3{bottom:779.171400px;}
.y94{bottom:779.310450px;}
.y4e{bottom:780.654600px;}
.y71{bottom:780.675300px;}
.y158{bottom:783.602550px;}
.y14b{bottom:784.166250px;}
.y16b{bottom:784.573500px;}
.yff{bottom:793.258350px;}
.y102{bottom:793.634100px;}
.yfc{bottom:794.010000px;}
.y7{bottom:795.359700px;}
.y125{bottom:796.546350px;}
.y10c{bottom:798.049200px;}
.y18e{bottom:799.552800px;}
.yb6{bottom:799.553250px;}
.y93{bottom:799.692300px;}
.y70{bottom:801.056700px;}
.y29{bottom:801.333000px;}
.y6{bottom:803.796900px;}
.y16a{bottom:804.954900px;}
.y156{bottom:808.034250px;}
.y14a{bottom:808.577700px;}
.y5{bottom:816.059550px;}
.y10b{bottom:818.431050px;}
.y18d{bottom:819.934650px;}
.yb5{bottom:819.935100px;}
.y92{bottom:820.074150px;}
.y4d{bottom:821.418150px;}
.y6f{bottom:821.438100px;}
.y106{bottom:821.503650px;}
.y4{bottom:824.496750px;}
.y169{bottom:825.336300px;}
.y157{bottom:831.358500px;}
.y105{bottom:835.035150px;}
.y124{bottom:837.309900px;}
.y10a{bottom:838.812450px;}
.yb4{bottom:840.316500px;}
.y91{bottom:840.455550px;}
.y4c{bottom:841.800000px;}
.y6e{bottom:841.819950px;}
.y28{bottom:842.096250px;}
.y168{bottom:845.718150px;}
.y3{bottom:857.459250px;}
.y123{bottom:857.691750px;}
.y109{bottom:859.194300px;}
.yb3{bottom:860.697900px;}
.y90{bottom:860.836950px;}
.y4b{bottom:862.181400px;}
.y6d{bottom:862.201800px;}
.y27{bottom:862.478100px;}
.y167{bottom:866.100000px;}
.y122{bottom:878.073150px;}
.y2{bottom:878.158650px;}
.y108{bottom:879.576150px;}
.y18c{bottom:881.079300px;}
.yb2{bottom:881.079750px;}
.y8f{bottom:881.218800px;}
.y138{bottom:881.831400px;}
.y4a{bottom:882.562800px;}
.y6c{bottom:882.583200px;}
.y26{bottom:882.859950px;}
.y166{bottom:886.481400px;}
.y121{bottom:898.454550px;}
.y1{bottom:898.858050px;}
.y107{bottom:899.957550px;}
.y18b{bottom:901.461150px;}
.yb1{bottom:901.461600px;}
.y8e{bottom:901.600650px;}
.y137{bottom:902.212800px;}
.y49{bottom:902.944650px;}
.y6b{bottom:902.964600px;}
.y25{bottom:903.241350px;}
.y165{bottom:906.862800px;}
.y159{bottom:908.227350px;}
.y48{bottom:955.815300px;}
.y6a{bottom:957.897000px;}
.h3{height:30.408750px;}
.h8{height:32.436000px;}
.h9{height:37.206000px;}
.h7{height:42.960000px;}
.hb{height:60.060000px;}
.hd{height:61.513800px;}
.h5{height:64.584000px;}
.h4{height:64.872000px;}
.h6{height:65.520000px;}
.h2{height:76.440000px;}
.hc{height:105.834600px;}
.ha{height:105.835200px;}
.h0{height:1015.200000px;}
.h1{height:1015.500000px;}
.w0{width:702.000000px;}
.x0{left:0.000000px;}
.xc{left:73.946850px;}
.x32{left:75.108900px;}
.x12{left:76.147800px;}
.xd{left:79.383900px;}
.x10{left:91.201500px;}
.x18{left:92.366550px;}
.x7{left:93.493050px;}
.xa{left:94.565550px;}
.x14{left:96.431100px;}
.xb{left:98.410950px;}
.x33{left:110.400600px;}
.x13{left:111.472650px;}
.x11{left:113.751300px;}
.xf{left:115.288950px;}
.x16{left:117.486750px;}
.x2{left:118.725600px;}
.x17{left:126.976650px;}
.x15{left:130.327950px;}
.x1{left:138.326700px;}
.xe{left:141.254250px;}
.x1b{left:154.555200px;}
.x2c{left:155.778900px;}
.x26{left:157.047000px;}
.x20{left:163.200300px;}
.x2f{left:177.220800px;}
.x1d{left:183.043800px;}
.x24{left:191.688900px;}
.x8{left:200.109150px;}
.x31{left:270.433350px;}
.x30{left:278.273550px;}
.x6{left:295.464600px;}
.x2e{left:297.388950px;}
.x2d{left:299.845800px;}
.x25{left:304.810050px;}
.x27{left:307.213650px;}
.x3{left:323.038650px;}
.x1c{left:326.487450px;}
.x23{left:328.572150px;}
.x22{left:332.675700px;}
.x21{left:335.132550px;}
.x29{left:361.005750px;}
.x28{left:409.793250px;}
.x2b{left:434.583000px;}
.x1a{left:437.940000px;}
.x19{left:442.043550px;}
.x1e{left:446.584650px;}
.x1f{left:450.688650px;}
.x2a{left:500.079150px;}
.x5{left:501.390450px;}
.x9{left:604.422000px;}
.x4{left:625.300050px;}
@media print{
.v1{vertical-align:-41.598933pt;}
.v2{vertical-align:-29.997333pt;}
.v4{vertical-align:-2.716800pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.292267pt;}
.v3{vertical-align:40.689067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:18.967467pt;}
.ws2{word-spacing:-14.592000pt;}
.ws0{word-spacing:-12.213333pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:138.204800pt;}
._19{margin-left:-8.205867pt;}
._22{margin-left:-6.893333pt;}
._6{margin-left:-5.838400pt;}
._8{margin-left:-4.725333pt;}
._2{margin-left:-3.826667pt;}
._3{margin-left:-2.515733pt;}
._d{margin-left:-1.242133pt;}
._5{width:1.185600pt;}
._9{width:2.890133pt;}
._a{width:3.780800pt;}
._e{width:4.749867pt;}
._14{width:5.659200pt;}
._13{width:6.552000pt;}
._c{width:7.747200pt;}
._0{width:9.492800pt;}
._1{width:10.873067pt;}
._7{width:11.879467pt;}
._4{width:12.771733pt;}
._b{width:13.698133pt;}
._16{width:15.631467pt;}
._12{width:16.898667pt;}
._f{width:18.080000pt;}
._1a{width:19.228267pt;}
._1b{width:20.218667pt;}
._18{width:21.337600pt;}
._15{width:22.480533pt;}
._1e{width:23.778133pt;}
._1d{width:24.732800pt;}
._1c{width:26.118933pt;}
._17{width:27.637867pt;}
._11{width:29.099733pt;}
._10{width:30.052267pt;}
._21{width:60.161067pt;}
._20{width:71.566400pt;}
._1f{width:212.113600pt;}
.fs1{font-size:30.000000pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:57.345600pt;}
.y47{bottom:57.792800pt;}
.y18a{bottom:81.016400pt;}
.y136{bottom:92.060133pt;}
.y115{bottom:93.922000pt;}
.yd2{bottom:94.742400pt;}
.yb0{bottom:94.859067pt;}
.yfb{bottom:95.262133pt;}
.y46{bottom:95.796800pt;}
.y8d{bottom:95.831600pt;}
.y23{bottom:97.563200pt;}
.y189{bottom:99.133600pt;}
.y135{bottom:110.177333pt;}
.y114{bottom:112.039200pt;}
.yd1{bottom:112.859200pt;}
.yaf{bottom:112.975867pt;}
.yfa{bottom:113.379333pt;}
.y45{bottom:113.913600pt;}
.y69{bottom:113.940800pt;}
.y8c{bottom:113.948400pt;}
.y22{bottom:114.502667pt;}
.y24{bottom:115.003867pt;}
.y188{bottom:117.250400pt;}
.y134{bottom:128.294533pt;}
.yd0{bottom:130.976000pt;}
.yae{bottom:131.092667pt;}
.y44{bottom:132.030800pt;}
.y187{bottom:135.367200pt;}
.y133{bottom:146.411333pt;}
.y113{bottom:148.009333pt;}
.ye0{bottom:148.910800pt;}
.yad{bottom:149.209867pt;}
.yf9{bottom:149.349867pt;}
.y68{bottom:150.057600pt;}
.y8b{bottom:150.422667pt;}
.y186{bottom:153.484400pt;}
.y20{bottom:162.616400pt;}
.y132{bottom:164.528133pt;}
.y112{bottom:166.126133pt;}
.ycf{bottom:166.946533pt;}
.ydf{bottom:167.028000pt;}
.yac{bottom:167.327067pt;}
.yf8{bottom:167.466667pt;}
.y67{bottom:168.174800pt;}
.y43{bottom:168.264800pt;}
.y8a{bottom:168.539467pt;}
.y185{bottom:171.601600pt;}
.y1f{bottom:180.733200pt;}
.y131{bottom:182.645333pt;}
.y111{bottom:184.243333pt;}
.yce{bottom:185.063733pt;}
.yde{bottom:185.144800pt;}
.yf7{bottom:185.583467pt;}
.y66{bottom:186.291600pt;}
.y42{bottom:186.382000pt;}
.y89{bottom:186.656667pt;}
.y184{bottom:189.718400pt;}
.y1e{bottom:198.850000pt;}
.y130{bottom:200.762533pt;}
.y110{bottom:202.360533pt;}
.ycd{bottom:203.180533pt;}
.ydd{bottom:203.261600pt;}
.yab{bottom:203.561067pt;}
.yf6{bottom:203.700667pt;}
.y41{bottom:204.499200pt;}
.y88{bottom:204.773867pt;}
.y183{bottom:207.835200pt;}
.y1d{bottom:216.967200pt;}
.y12f{bottom:218.879333pt;}
.ycc{bottom:221.297333pt;}
.ydc{bottom:221.378800pt;}
.yaa{bottom:221.678267pt;}
.yf5{bottom:221.817867pt;}
.y40{bottom:222.616000pt;}
.y65{bottom:222.699067pt;}
.y182{bottom:225.952400pt;}
.y11b{bottom:234.392667pt;}
.y11e{bottom:234.726400pt;}
.y118{bottom:235.060133pt;}
.y1c{bottom:235.084400pt;}
.ycb{bottom:239.414533pt;}
.ydb{bottom:239.496000pt;}
.ya9{bottom:239.795467pt;}
.yf4{bottom:239.934667pt;}
.y149{bottom:239.990667pt;}
.y3f{bottom:240.732800pt;}
.y87{bottom:241.007867pt;}
.y181{bottom:244.069600pt;}
.y11a{bottom:252.509467pt;}
.y11d{bottom:252.843200pt;}
.y117{bottom:253.177333pt;}
.y1b{bottom:253.201200pt;}
.yca{bottom:257.531733pt;}
.yda{bottom:257.612800pt;}
.ya8{bottom:257.912267pt;}
.yf3{bottom:258.051467pt;}
.y148{bottom:258.107467pt;}
.y3e{bottom:258.850000pt;}
.y64{bottom:259.106933pt;}
.y180{bottom:262.186400pt;}
.y119{bottom:270.626267pt;}
.y11c{bottom:270.960400pt;}
.y116{bottom:271.294533pt;}
.y1a{bottom:271.318000pt;}
.yc9{bottom:275.648533pt;}
.yd9{bottom:275.729600pt;}
.ya7{bottom:276.029067pt;}
.yf2{bottom:276.168667pt;}
.y147{bottom:276.224667pt;}
.y63{bottom:277.223733pt;}
.y86{bottom:277.242133pt;}
.y17f{bottom:280.303200pt;}
.yc8{bottom:293.765333pt;}
.yd8{bottom:293.846800pt;}
.ya6{bottom:294.146267pt;}
.yf1{bottom:294.285467pt;}
.y146{bottom:294.341867pt;}
.y3d{bottom:295.084000pt;}
.y62{bottom:295.340533pt;}
.y85{bottom:295.358933pt;}
.y120{bottom:295.732933pt;}
.y17e{bottom:298.420400pt;}
.y164{bottom:300.034133pt;}
.y19{bottom:307.552267pt;}
.y11f{bottom:307.760933pt;}
.yd7{bottom:311.964000pt;}
.ya5{bottom:312.263467pt;}
.yf0{bottom:312.402267pt;}
.y145{bottom:312.458667pt;}
.y3c{bottom:313.200800pt;}
.y61{bottom:313.457733pt;}
.y84{bottom:313.475733pt;}
.y17d{bottom:316.537600pt;}
.yc7{bottom:329.735467pt;}
.ya4{bottom:330.380267pt;}
.yef{bottom:330.519467pt;}
.y144{bottom:330.575867pt;}
.y3b{bottom:331.318000pt;}
.y60{bottom:331.574933pt;}
.y83{bottom:331.592933pt;}
.y17c{bottom:334.537600pt;}
.y163{bottom:336.268133pt;}
.y16{bottom:344.133200pt;}
.y10f{bottom:347.297867pt;}
.yc6{bottom:347.852667pt;}
.ya3{bottom:348.497067pt;}
.yee{bottom:348.636667pt;}
.y143{bottom:348.693067pt;}
.y3a{bottom:349.435200pt;}
.y5f{bottom:349.691733pt;}
.y82{bottom:349.710133pt;}
.y17b{bottom:352.654400pt;}
.y162{bottom:354.385333pt;}
.y15{bottom:362.132800pt;}
.y18{bottom:362.133200pt;}
.y10e{bottom:365.414667pt;}
.yc5{bottom:365.969867pt;}
.ya2{bottom:366.614267pt;}
.yed{bottom:366.753467pt;}
.y142{bottom:366.809867pt;}
.y39{bottom:367.552000pt;}
.y81{bottom:367.826933pt;}
.y17a{bottom:370.771200pt;}
.y161{bottom:372.502533pt;}
.yc4{bottom:384.086667pt;}
.ya1{bottom:384.731467pt;}
.yec{bottom:384.870267pt;}
.y38{bottom:385.668800pt;}
.y5e{bottom:385.926000pt;}
.y80{bottom:385.943733pt;}
.y179{bottom:388.888400pt;}
.y160{bottom:390.619333pt;}
.y14{bottom:398.367067pt;}
.y141{bottom:403.044133pt;}
.y37{bottom:403.786000pt;}
.y5d{bottom:404.043200pt;}
.y7f{bottom:404.060933pt;}
.y178{bottom:407.005600pt;}
.y15f{bottom:408.736133pt;}
.y13{bottom:416.483867pt;}
.yc3{bottom:420.494533pt;}
.ya0{bottom:420.965467pt;}
.yeb{bottom:421.104533pt;}
.y140{bottom:421.161333pt;}
.y36{bottom:421.903200pt;}
.y5c{bottom:422.160000pt;}
.y7e{bottom:422.178133pt;}
.y177{bottom:425.122400pt;}
.y15e{bottom:426.853333pt;}
.y12{bottom:434.600667pt;}
.yea{bottom:439.221333pt;}
.y13f{bottom:439.278133pt;}
.y35{bottom:440.020000pt;}
.y5b{bottom:440.276800pt;}
.y176{bottom:443.239200pt;}
.y11{bottom:452.717867pt;}
.yc2{bottom:457.075867pt;}
.ye9{bottom:457.338133pt;}
.y34{bottom:458.136800pt;}
.y5a{bottom:458.394000pt;}
.y7d{bottom:458.412133pt;}
.y15d{bottom:463.087333pt;}
.y10{bottom:470.835067pt;}
.yc1{bottom:475.192667pt;}
.y199{bottom:475.192800pt;}
.y9f{bottom:475.316533pt;}
.ye8{bottom:475.455333pt;}
.y13e{bottom:475.512400pt;}
.y33{bottom:476.254000pt;}
.y59{bottom:476.511200pt;}
.y7c{bottom:476.529333pt;}
.y175{bottom:479.647067pt;}
.y15c{bottom:481.204133pt;}
.yf{bottom:488.951867pt;}
.yc0{bottom:493.309467pt;}
.y198{bottom:493.309600pt;}
.y9e{bottom:493.433733pt;}
.ye7{bottom:493.572533pt;}
.y13d{bottom:493.629600pt;}
.y32{bottom:494.371200pt;}
.y58{bottom:494.628000pt;}
.y7b{bottom:494.646533pt;}
.y15b{bottom:499.321333pt;}
.ybf{bottom:511.426667pt;}
.y197{bottom:511.426800pt;}
.y9d{bottom:511.550933pt;}
.ye6{bottom:511.689333pt;}
.y13c{bottom:511.746400pt;}
.y57{bottom:512.744800pt;}
.y7a{bottom:512.763333pt;}
.y174{bottom:516.228000pt;}
.y15a{bottom:517.438533pt;}
.ye{bottom:525.186133pt;}
.y12e{bottom:526.871200pt;}
.ybe{bottom:529.543867pt;}
.y196{bottom:529.544000pt;}
.y9c{bottom:529.667733pt;}
.ye5{bottom:529.806133pt;}
.y13b{bottom:529.863200pt;}
.y31{bottom:530.605200pt;}
.y56{bottom:530.862000pt;}
.y79{bottom:530.880533pt;}
.y173{bottom:534.344800pt;}
.yd{bottom:543.303333pt;}
.ybd{bottom:547.660667pt;}
.y195{bottom:547.660800pt;}
.y9b{bottom:547.784533pt;}
.ye4{bottom:547.923333pt;}
.y13a{bottom:547.980400pt;}
.y30{bottom:548.722400pt;}
.y55{bottom:548.978800pt;}
.y78{bottom:548.997733pt;}
.y172{bottom:552.462000pt;}
.yc{bottom:561.420133pt;}
.y12d{bottom:563.105200pt;}
.y194{bottom:565.777600pt;}
.y2f{bottom:566.839600pt;}
.y54{bottom:567.095600pt;}
.y77{bottom:567.114533pt;}
.y171{bottom:570.579200pt;}
.yb{bottom:579.536933pt;}
.y12c{bottom:581.222000pt;}
.ye3{bottom:583.893867pt;}
.y193{bottom:583.894800pt;}
.ybc{bottom:583.894933pt;}
.y9a{bottom:584.018800pt;}
.y139{bottom:584.387867pt;}
.y2e{bottom:584.956400pt;}
.y53{bottom:585.212800pt;}
.y76{bottom:585.231333pt;}
.y170{bottom:588.696000pt;}
.ya{bottom:597.654133pt;}
.y12b{bottom:599.339200pt;}
.ye2{bottom:602.010667pt;}
.ybb{bottom:602.011733pt;}
.y192{bottom:602.012000pt;}
.y99{bottom:602.135600pt;}
.y2d{bottom:603.073200pt;}
.y52{bottom:603.330000pt;}
.y16f{bottom:606.813200pt;}
.y9{bottom:615.771333pt;}
.y12a{bottom:617.456400pt;}
.ye1{bottom:620.127467pt;}
.yba{bottom:620.128533pt;}
.y191{bottom:620.128800pt;}
.y98{bottom:620.252400pt;}
.y2c{bottom:621.190400pt;}
.y75{bottom:621.465600pt;}
.y16e{bottom:624.930400pt;}
.y8{bottom:633.888133pt;}
.y154{bottom:635.194933pt;}
.y14e{bottom:635.528267pt;}
.y155{bottom:635.528667pt;}
.y129{bottom:635.573200pt;}
.y151{bottom:635.862400pt;}
.y190{bottom:638.245600pt;}
.yb9{bottom:638.245733pt;}
.yd6{bottom:638.246000pt;}
.y97{bottom:638.369600pt;}
.y2b{bottom:639.307200pt;}
.y51{bottom:639.564000pt;}
.y74{bottom:639.582400pt;}
.y16d{bottom:643.047200pt;}
.y153{bottom:653.311733pt;}
.y14d{bottom:653.645467pt;}
.y128{bottom:653.690000pt;}
.y150{bottom:653.979600pt;}
.y18f{bottom:656.362800pt;}
.yb8{bottom:656.362933pt;}
.yd5{bottom:656.363200pt;}
.y96{bottom:656.486800pt;}
.y50{bottom:657.681200pt;}
.y73{bottom:657.699200pt;}
.y101{bottom:668.884133pt;}
.y104{bottom:669.218933pt;}
.yfe{bottom:669.553067pt;}
.y17{bottom:670.298533pt;}
.y152{bottom:671.428533pt;}
.y14c{bottom:671.762667pt;}
.y127{bottom:671.807200pt;}
.y14f{bottom:672.096800pt;}
.y10d{bottom:673.406533pt;}
.yb7{bottom:674.479733pt;}
.yd4{bottom:674.480000pt;}
.y95{bottom:674.603600pt;}
.y2a{bottom:675.714667pt;}
.y4f{bottom:675.798400pt;}
.y72{bottom:675.816400pt;}
.y16c{bottom:679.281467pt;}
.y100{bottom:687.001333pt;}
.y103{bottom:687.335733pt;}
.yfd{bottom:687.669867pt;}
.y126{bottom:689.924400pt;}
.yd3{bottom:692.596800pt;}
.y94{bottom:692.720400pt;}
.y4e{bottom:693.915200pt;}
.y71{bottom:693.933600pt;}
.y158{bottom:696.535600pt;}
.y14b{bottom:697.036667pt;}
.y16b{bottom:697.398667pt;}
.yff{bottom:705.118533pt;}
.y102{bottom:705.452533pt;}
.yfc{bottom:705.786667pt;}
.y7{bottom:706.986400pt;}
.y125{bottom:708.041200pt;}
.y10c{bottom:709.377067pt;}
.y18e{bottom:710.713600pt;}
.yb6{bottom:710.714000pt;}
.y93{bottom:710.837600pt;}
.y70{bottom:712.050400pt;}
.y29{bottom:712.296000pt;}
.y6{bottom:714.486133pt;}
.y16a{bottom:715.515467pt;}
.y156{bottom:718.252667pt;}
.y14a{bottom:718.735733pt;}
.y5{bottom:725.386267pt;}
.y10b{bottom:727.494267pt;}
.y18d{bottom:728.830800pt;}
.yb5{bottom:728.831200pt;}
.y92{bottom:728.954800pt;}
.y4d{bottom:730.149467pt;}
.y6f{bottom:730.167200pt;}
.y106{bottom:730.225467pt;}
.y4{bottom:732.886000pt;}
.y169{bottom:733.632267pt;}
.y157{bottom:738.985333pt;}
.y105{bottom:742.253467pt;}
.y124{bottom:744.275467pt;}
.y10a{bottom:745.611067pt;}
.yb4{bottom:746.948000pt;}
.y91{bottom:747.071600pt;}
.y4c{bottom:748.266667pt;}
.y6e{bottom:748.284400pt;}
.y28{bottom:748.530000pt;}
.y168{bottom:751.749467pt;}
.y3{bottom:762.186000pt;}
.y123{bottom:762.392667pt;}
.y109{bottom:763.728267pt;}
.yb3{bottom:765.064800pt;}
.y90{bottom:765.188400pt;}
.y4b{bottom:766.383467pt;}
.y6d{bottom:766.401600pt;}
.y27{bottom:766.647200pt;}
.y167{bottom:769.866667pt;}
.y122{bottom:780.509467pt;}
.y2{bottom:780.585467pt;}
.y108{bottom:781.845467pt;}
.y18c{bottom:783.181600pt;}
.yb2{bottom:783.182000pt;}
.y8f{bottom:783.305600pt;}
.y138{bottom:783.850133pt;}
.y4a{bottom:784.500267pt;}
.y6c{bottom:784.518400pt;}
.y26{bottom:784.764400pt;}
.y166{bottom:787.983467pt;}
.y121{bottom:798.626267pt;}
.y1{bottom:798.984933pt;}
.y107{bottom:799.962267pt;}
.y18b{bottom:801.298800pt;}
.yb1{bottom:801.299200pt;}
.y8e{bottom:801.422800pt;}
.y137{bottom:801.966933pt;}
.y49{bottom:802.617467pt;}
.y6b{bottom:802.635200pt;}
.y25{bottom:802.881200pt;}
.y165{bottom:806.100267pt;}
.y159{bottom:807.313200pt;}
.y48{bottom:849.613600pt;}
.y6a{bottom:851.464000pt;}
.h3{height:27.030000pt;}
.h8{height:28.832000pt;}
.h9{height:33.072000pt;}
.h7{height:38.186667pt;}
.hb{height:53.386667pt;}
.hd{height:54.678933pt;}
.h5{height:57.408000pt;}
.h4{height:57.664000pt;}
.h6{height:58.240000pt;}
.h2{height:67.946667pt;}
.hc{height:94.075200pt;}
.ha{height:94.075733pt;}
.h0{height:902.400000pt;}
.h1{height:902.666667pt;}
.w0{width:624.000000pt;}
.x0{left:0.000000pt;}
.xc{left:65.730533pt;}
.x32{left:66.763467pt;}
.x12{left:67.686933pt;}
.xd{left:70.563467pt;}
.x10{left:81.068000pt;}
.x18{left:82.103600pt;}
.x7{left:83.104933pt;}
.xa{left:84.058267pt;}
.x14{left:85.716533pt;}
.xb{left:87.476400pt;}
.x33{left:98.133867pt;}
.x13{left:99.086800pt;}
.x11{left:101.112267pt;}
.xf{left:102.479067pt;}
.x16{left:104.432667pt;}
.x2{left:105.533867pt;}
.x17{left:112.868133pt;}
.x15{left:115.847067pt;}
.x1{left:122.957067pt;}
.xe{left:125.559333pt;}
.x1b{left:137.382400pt;}
.x2c{left:138.470133pt;}
.x26{left:139.597333pt;}
.x20{left:145.066933pt;}
.x2f{left:157.529600pt;}
.x1d{left:162.705600pt;}
.x24{left:170.390133pt;}
.x8{left:177.874800pt;}
.x31{left:240.385200pt;}
.x30{left:247.354267pt;}
.x6{left:262.635200pt;}
.x2e{left:264.345733pt;}
.x2d{left:266.529600pt;}
.x25{left:270.942267pt;}
.x27{left:273.078800pt;}
.x3{left:287.145467pt;}
.x1c{left:290.211067pt;}
.x23{left:292.064133pt;}
.x22{left:295.711733pt;}
.x21{left:297.895600pt;}
.x29{left:320.894000pt;}
.x28{left:364.260667pt;}
.x2b{left:386.296000pt;}
.x1a{left:389.280000pt;}
.x19{left:392.927600pt;}
.x1e{left:396.964133pt;}
.x1f{left:400.612133pt;}
.x2a{left:444.514800pt;}
.x5{left:445.680400pt;}
.x9{left:537.264000pt;}
.x4{left:555.822267pt;}
}




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