
    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_b99352f2b4f5f953cab1e662.woff')format("woff");}.ff1{font-family:ff1;line-height:1.103000;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_8893bfdc03b0d754b134dbb0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.693000;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_a88ec4193ed01ceffd2f6f66.woff')format("woff");}.ff3{font-family:ff3;line-height:0.949000;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_0c19725c118a048ff2b34c94.woff')format("woff");}.ff4{font-family:ff4;line-height:0.879000;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_9d1854722793e9697308a73b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_177c26fef42a75444e4d5098.woff')format("woff");}.ff6{font-family:ff6;line-height:0.953000;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;}
.ls1{letter-spacing:-1.404000px;}
.ls3{letter-spacing:-0.114000px;}
.ls4{letter-spacing:-0.057000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.400000px;}
.ls2{letter-spacing:4.800000px;}
.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;}
}
.ws7{word-spacing:-30.900000px;}
.ws1{word-spacing:-10.680000px;}
.wsa{word-spacing:-10.368000px;}
.ws5{word-spacing:-4.800000px;}
.wsc{word-spacing:-2.400000px;}
.ws4{word-spacing:-2.340000px;}
.wsb{word-spacing:-1.620000px;}
.ws2{word-spacing:-1.440000px;}
.ws8{word-spacing:-1.080000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:1.404000px;}
.ws9{word-spacing:6673.056000px;}
.ws6{word-spacing:6737.952000px;}
._2a{margin-left:-1448.826000px;}
._2f{margin-left:-1278.282000px;}
._43{margin-left:-1247.901000px;}
._74{margin-left:-1221.225000px;}
._2c{margin-left:-1025.487000px;}
._84{margin-left:-899.118000px;}
._4f{margin-left:-877.173000px;}
._6d{margin-left:-836.760000px;}
._4a{margin-left:-826.728000px;}
._98{margin-left:-790.077000px;}
._73{margin-left:-781.185000px;}
._61{margin-left:-752.001000px;}
._5d{margin-left:-745.617000px;}
._8b{margin-left:-729.885000px;}
._83{margin-left:-727.263000px;}
._4e{margin-left:-714.495000px;}
._68{margin-left:-703.836000px;}
._26{margin-left:-672.714000px;}
._97{margin-left:-671.631000px;}
._4c{margin-left:-637.374000px;}
._53{margin-left:-621.761700px;}
._60{margin-left:-619.704000px;}
._36{margin-left:-614.118000px;}
._51{margin-left:-601.977000px;}
._5b{margin-left:-581.685000px;}
._42{margin-left:-576.213000px;}
._49{margin-left:-573.819000px;}
._50{margin-left:-555.351000px;}
._88{margin-left:-550.506000px;}
._3a{margin-left:-547.428000px;}
._13{margin-left:-544.806000px;}
._57{margin-left:-536.370000px;}
._59{margin-left:-530.955000px;}
._4d{margin-left:-518.358000px;}
._41{margin-left:-514.368000px;}
._96{margin-left:-509.922000px;}
._91{margin-left:-478.287000px;}
._1a{margin-left:-476.007000px;}
._19{margin-left:-458.850000px;}
._6f{margin-left:-451.554000px;}
._76{margin-left:-446.880000px;}
._7a{margin-left:-443.346000px;}
._65{margin-left:-439.589700px;}
._20{margin-left:-437.133000px;}
._5c{margin-left:-435.822000px;}
._25{margin-left:-431.718000px;}
._32{margin-left:-429.381000px;}
._7d{margin-left:-413.478000px;}
._3b{margin-left:-411.198000px;}
._46{margin-left:-409.431000px;}
._12{margin-left:-386.403000px;}
._93{margin-left:-379.734000px;}
._1e{margin-left:-377.511000px;}
._70{margin-left:-372.899700px;}
._29{margin-left:-370.614000px;}
._69{margin-left:-366.738000px;}
._5a{margin-left:-365.028000px;}
._6e{margin-left:-363.546000px;}
._48{margin-left:-358.022700px;}
._7b{margin-left:-356.421000px;}
._31{margin-left:-347.985000px;}
._64{margin-left:-339.269700px;}
._38{margin-left:-337.719300px;}
._27{margin-left:-329.574000px;}
._1c{margin-left:-327.465000px;}
._10{margin-left:-324.330000px;}
._56{margin-left:-322.278000px;}
._92{margin-left:-314.298000px;}
._81{margin-left:-300.618000px;}
._99{margin-left:-298.851000px;}
._80{margin-left:-293.607000px;}
._18{margin-left:-291.093300px;}
._3c{margin-left:-288.990000px;}
._5e{margin-left:-286.653000px;}
._77{margin-left:-285.456000px;}
._72{margin-left:-283.119000px;}
._33{margin-left:-280.611000px;}
._40{margin-left:-272.739300px;}
._21{margin-left:-267.273000px;}
._39{margin-left:-265.517400px;}
._58{margin-left:-262.428000px;}
._71{margin-left:-261.402000px;}
._94{margin-left:-258.666000px;}
._89{margin-left:-232.674000px;}
._8e{margin-left:-229.710000px;}
._85{margin-left:-223.953000px;}
._35{margin-left:-222.813000px;}
._9c{margin-left:-217.620000px;}
._1b{margin-left:-215.460000px;}
._37{margin-left:-214.149000px;}
._6a{margin-left:-210.444000px;}
._52{margin-left:-209.190000px;}
._9b{margin-left:-200.622000px;}
._24{margin-left:-190.095000px;}
._6c{margin-left:-186.447000px;}
._6b{margin-left:-180.120000px;}
._47{margin-left:-176.985000px;}
._62{margin-left:-175.223700px;}
._3f{margin-left:-171.570000px;}
._4b{margin-left:-165.699000px;}
._8a{margin-left:-161.880000px;}
._55{margin-left:-156.636000px;}
._9a{margin-left:-151.553700px;}
._67{margin-left:-150.081000px;}
._2d{margin-left:-146.490000px;}
._9d{margin-left:-143.370000px;}
._79{margin-left:-142.215000px;}
._7c{margin-left:-137.826000px;}
._7e{margin-left:-131.442000px;}
._45{margin-left:-125.001000px;}
._1f{margin-left:-122.436000px;}
._75{margin-left:-121.011000px;}
._8f{margin-left:-117.648000px;}
._2e{margin-left:-113.829000px;}
._2b{margin-left:-105.279000px;}
._14{margin-left:-103.398000px;}
._28{margin-left:-99.978000px;}
._95{margin-left:-96.957000px;}
._30{margin-left:-95.931000px;}
._54{margin-left:-85.842000px;}
._34{margin-left:-82.023000px;}
._3d{margin-left:-76.602300px;}
._63{margin-left:-75.126000px;}
._8d{margin-left:-73.245000px;}
._17{margin-left:-69.032700px;}
._86{margin-left:-67.659000px;}
._78{margin-left:-60.192000px;}
._15{margin-left:-57.342000px;}
._7f{margin-left:-56.093700px;}
._23{margin-left:-54.093000px;}
._5f{margin-left:-52.953000px;}
._66{margin-left:-48.336000px;}
._8c{margin-left:-47.082000px;}
._87{margin-left:-43.548000px;}
._82{margin-left:-39.900000px;}
._16{margin-left:-38.817000px;}
._44{margin-left:-37.392000px;}
._90{margin-left:-34.371000px;}
._22{margin-left:-32.775000px;}
._3e{margin-left:-31.532400px;}
._1d{margin-left:-27.873000px;}
._2{margin-left:-24.030000px;}
._8{margin-left:-19.800000px;}
._1{margin-left:-16.020000px;}
._a{margin-left:-14.850000px;}
._d{margin-left:-13.566000px;}
._7{margin-left:-9.180600px;}
._b{margin-left:-7.953000px;}
._9{margin-left:-6.600000px;}
._e{margin-left:-4.825200px;}
._4{margin-left:-2.688000px;}
._3{margin-left:-1.444800px;}
._5{width:1.435200px;}
._f{width:2.785800px;}
._11{width:3.876000px;}
._c{width:4.896000px;}
._6{width:6.130800px;}
._0{width:10.680000px;}
.fc6{color:transparent;}
.fc5{color:rgb(94,203,229);}
.fc7{color:rgb(134,130,132);}
.fc4{color:rgb(95,203,229);}
.fc2{color:rgb(123,121,121);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(58,59,62);}
.fc0{color:rgb(57,59,61);}
.fs3{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fsb{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:150.000000px;}
.fsa{font-size:192.000000px;}
.fs4{font-size:234.000000px;}
.fs5{font-size:330.000000px;}
.fs0{font-size:534.000000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:0.147150px;}
.ydd{bottom:0.147450px;}
.yd7{bottom:0.147600px;}
.ybe{bottom:0.148050px;}
.ya5{bottom:0.148500px;}
.ya0{bottom:0.148950px;}
.yd9{bottom:0.149100px;}
.y84{bottom:0.157200px;}
.ya3{bottom:0.202500px;}
.y9e{bottom:0.202950px;}
.yd5{bottom:0.203100px;}
.ybc{bottom:0.203550px;}
.ye1{bottom:0.642000px;}
.ydf{bottom:0.643500px;}
.y44{bottom:3.134100px;}
.y90{bottom:3.134700px;}
.y46{bottom:3.135600px;}
.y88{bottom:3.136200px;}
.y55{bottom:3.261600px;}
.y8c{bottom:3.262200px;}
.y4c{bottom:3.263100px;}
.y80{bottom:3.263700px;}
.y48{bottom:3.305100px;}
.y82{bottom:3.305700px;}
.y50{bottom:3.306600px;}
.y62{bottom:42.452700px;}
.yd{bottom:42.764400px;}
.yba{bottom:53.707650px;}
.y96{bottom:54.770550px;}
.yc{bottom:57.164400px;}
.yac{bottom:66.404100px;}
.ya6{bottom:69.499500px;}
.y9c{bottom:69.652500px;}
.y5f{bottom:70.909500px;}
.yc0{bottom:73.056000px;}
.yb9{bottom:73.201650px;}
.y2a{bottom:74.126850px;}
.y95{bottom:74.264550px;}
.ydc{bottom:84.382500px;}
.yd3{bottom:84.534450px;}
.ycd{bottom:84.550950px;}
.yab{bottom:85.898100px;}
.yb{bottom:85.964400px;}
.ya4{bottom:88.999500px;}
.y9b{bottom:89.146500px;}
.yc7{bottom:89.317800px;}
.y5e{bottom:91.911000px;}
.y29{bottom:95.131350px;}
.ye4{bottom:98.195400px;}
.ya{bottom:100.364400px;}
.ydb{bottom:103.881000px;}
.yd2{bottom:104.028450px;}
.ycc{bottom:104.044950px;}
.yc6{bottom:108.811800px;}
.yb8{bottom:112.203150px;}
.y5d{bottom:113.082000px;}
.y94{bottom:113.266050px;}
.y28{bottom:116.135850px;}
.ye3{bottom:117.689400px;}
.yaa{bottom:124.899600px;}
.ya2{bottom:127.945500px;}
.y9a{bottom:128.148000px;}
.y5c{bottom:133.911000px;}
.y27{bottom:137.140350px;}
.ye2{bottom:137.183400px;}
.yb4{bottom:140.872950px;}
.yda{bottom:142.827000px;}
.yd1{bottom:143.029950px;}
.ycb{bottom:143.046450px;}
.yc5{bottom:147.813300px;}
.ya9{bottom:149.317500px;}
.y5b{bottom:154.953000px;}
.y9{bottom:157.964400px;}
.y3d{bottom:158.059350px;}
.y26{bottom:158.144850px;}
.yb3{bottom:160.366950px;}
.ya8{bottom:168.811500px;}
.y8{bottom:172.364400px;}
.y5a{bottom:175.911000px;}
.y3c{bottom:179.063850px;}
.y25{bottom:179.149350px;}
.y70{bottom:186.547200px;}
.y59{bottom:197.080500px;}
.yb2{bottom:199.368450px;}
.y3b{bottom:200.068350px;}
.y24{bottom:200.153850px;}
.y7{bottom:201.164400px;}
.y6f{bottom:207.551700px;}
.ya7{bottom:207.813000px;}
.y6{bottom:215.564400px;}
.y58{bottom:217.953000px;}
.y3a{bottom:221.072850px;}
.y23{bottom:221.158350px;}
.y5{bottom:229.964400px;}
.y57{bottom:238.909500px;}
.y39{bottom:242.077350px;}
.y22{bottom:242.162850px;}
.y13{bottom:245.484150px;}
.y6e{bottom:249.546450px;}
.y56{bottom:259.909500px;}
.y38{bottom:263.081850px;}
.y21{bottom:263.167350px;}
.y8f{bottom:267.451500px;}
.y7c{bottom:270.493950px;}
.y6d{bottom:270.550950px;}
.y54{bottom:280.954500px;}
.y37{bottom:284.086350px;}
.y20{bottom:284.171850px;}
.y8e{bottom:288.280500px;}
.y7b{bottom:291.498450px;}
.y6c{bottom:291.555450px;}
.y53{bottom:301.953000px;}
.y36{bottom:305.090850px;}
.y1f{bottom:305.176350px;}
.y8d{bottom:309.322500px;}
.y7a{bottom:312.502950px;}
.y6b{bottom:312.559950px;}
.y8b{bottom:330.324000px;}
.y79{bottom:333.507450px;}
.y6a{bottom:333.564450px;}
.y52{bottom:344.080500px;}
.ye6{bottom:346.638450px;}
.y35{bottom:347.085600px;}
.y1e{bottom:347.171100px;}
.y8a{bottom:351.280500px;}
.y78{bottom:354.511950px;}
.y69{bottom:354.568950px;}
.y51{bottom:364.953000px;}
.y34{bottom:368.090100px;}
.y1d{bottom:368.175600px;}
.y89{bottom:372.322500px;}
.y77{bottom:375.516450px;}
.y68{bottom:375.573450px;}
.y11{bottom:383.382600px;}
.ye5{bottom:384.942450px;}
.y4f{bottom:385.909500px;}
.y33{bottom:389.094600px;}
.y1c{bottom:389.180100px;}
.y87{bottom:393.450000px;}
.y76{bottom:396.520950px;}
.y67{bottom:396.577950px;}
.ye0{bottom:397.390500px;}
.yf{bottom:398.053500px;}
.y4e{bottom:407.082000px;}
.y32{bottom:410.099100px;}
.y1b{bottom:410.184600px;}
.y86{bottom:414.322500px;}
.y93{bottom:416.187900px;}
.y75{bottom:417.525450px;}
.y66{bottom:417.582450px;}
.ybf{bottom:425.188500px;}
.yb7{bottom:425.341050px;}
.y4d{bottom:427.953000px;}
.y31{bottom:431.103600px;}
.y1a{bottom:431.189100px;}
.y85{bottom:435.280500px;}
.y92{bottom:435.681900px;}
.y74{bottom:438.529950px;}
.ybd{bottom:444.688500px;}
.yb6{bottom:444.835050px;}
.y4b{bottom:448.953000px;}
.y30{bottom:452.108100px;}
.y19{bottom:452.193600px;}
.yde{bottom:454.389000px;}
.ye{bottom:455.032500px;}
.y83{bottom:459.429000px;}
.y73{bottom:459.534450px;}
.y65{bottom:459.577200px;}
.y10{bottom:465.882600px;}
.y4a{bottom:469.911000px;}
.y2f{bottom:473.112600px;}
.y18{bottom:473.198100px;}
.y91{bottom:474.683400px;}
.y81{bottom:477.280500px;}
.y72{bottom:480.538950px;}
.y64{bottom:480.581700px;}
.ybb{bottom:483.633000px;}
.yb5{bottom:483.836550px;}
.y49{bottom:491.082000px;}
.y2e{bottom:494.117100px;}
.y17{bottom:494.202600px;}
.y7f{bottom:498.322500px;}
.y71{bottom:501.543450px;}
.y63{bottom:501.586200px;}
.y47{bottom:511.911000px;}
.y2d{bottom:515.121600px;}
.y16{bottom:515.207100px;}
.y45{bottom:533.080500px;}
.y2c{bottom:536.126100px;}
.y15{bottom:536.211600px;}
.y43{bottom:554.082000px;}
.y2b{bottom:557.130600px;}
.y14{bottom:557.216100px;}
.yd8{bottom:571.585500px;}
.yd0{bottom:571.738950px;}
.yca{bottom:571.739100px;}
.yaf{bottom:578.117100px;}
.y4{bottom:581.269950px;}
.yc4{bottom:585.558000px;}
.yd6{bottom:591.087000px;}
.ycf{bottom:591.232950px;}
.yc9{bottom:591.233100px;}
.yae{bottom:597.611100px;}
.y7e{bottom:600.667500px;}
.yc3{bottom:605.052000px;}
.ya1{bottom:615.831000px;}
.y99{bottom:615.984450px;}
.yd4{bottom:630.031500px;}
.yce{bottom:630.234450px;}
.yc8{bottom:630.234600px;}
.y2{bottom:635.283900px;}
.y9f{bottom:635.331000px;}
.y98{bottom:635.478450px;}
.yad{bottom:636.612600px;}
.y7d{bottom:639.667500px;}
.y12{bottom:639.945150px;}
.yc2{bottom:644.053500px;}
.y42{bottom:668.554950px;}
.y9d{bottom:674.277000px;}
.y97{bottom:674.479950px;}
.y61{bottom:690.003150px;}
.yb0{bottom:690.004650px;}
.y41{bottom:707.273850px;}
.y60{bottom:724.671150px;}
.yb1{bottom:724.672650px;}
.y40{bottom:746.273850px;}
.y1{bottom:756.768900px;}
.y3f{bottom:785.273850px;}
.y3e{bottom:824.273850px;}
.y3{bottom:839.131650px;}
.h1e{height:8.977500px;}
.h1c{height:9.585000px;}
.h21{height:9.586500px;}
.h1f{height:11.866500px;}
.h20{height:11.905500px;}
.h1d{height:11.907000px;}
.h17{height:12.568500px;}
.he{height:13.395000px;}
.hd{height:13.507500px;}
.h13{height:13.521000px;}
.h10{height:13.522500px;}
.h16{height:13.564500px;}
.h14{height:13.566000px;}
.h15{height:13.636500px;}
.h11{height:13.638000px;}
.hf{height:13.680000px;}
.h12{height:13.681500px;}
.h19{height:15.675000px;}
.h18{height:15.717000px;}
.h6{height:34.560000px;}
.h23{height:41.065500px;}
.h5{height:41.472000px;}
.ha{height:41.808000px;}
.h1a{height:46.656000px;}
.h1b{height:47.034000px;}
.h3{height:48.960000px;}
.hb{height:49.647000px;}
.h25{height:49.680000px;}
.h22{height:51.595500px;}
.h9{height:56.160000px;}
.h4{height:73.440000px;}
.hc{height:130.650000px;}
.h24{height:167.232000px;}
.h7{height:203.814000px;}
.h8{height:287.430000px;}
.h2{height:465.114000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2d{width:5.536500px;}
.w2b{width:16.537500px;}
.w2c{width:16.645500px;}
.w2a{width:16.726500px;}
.w2f{width:20.788500px;}
.w30{width:20.950500px;}
.w2e{width:21.411000px;}
.w26{width:63.583500px;}
.w29{width:70.092000px;}
.w32{width:71.278500px;}
.w31{width:88.425000px;}
.w25{width:89.002500px;}
.w28{width:89.004000px;}
.w24{width:97.738500px;}
.w23{width:133.632000px;}
.w27{width:141.924000px;}
.w34{width:258.409500px;}
.we{width:263.689500px;}
.w33{width:285.324000px;}
.w1b{width:290.095500px;}
.w1f{width:290.194500px;}
.w1c{width:290.209500px;}
.w22{width:290.580000px;}
.w1d{width:290.622000px;}
.w20{width:290.709000px;}
.w1e{width:290.922000px;}
.w21{width:290.964000px;}
.w4{width:334.983000px;}
.w19{width:339.085500px;}
.wc{width:339.400500px;}
.w1a{width:342.036000px;}
.wb{width:343.318500px;}
.wf{width:344.086500px;}
.w5{width:344.872500px;}
.w13{width:344.929500px;}
.w16{width:345.427500px;}
.w10{width:345.826500px;}
.wa{width:345.855000px;}
.w14{width:349.488000px;}
.w7{width:355.488000px;}
.wd{width:356.799000px;}
.w17{width:356.925000px;}
.w15{width:357.012000px;}
.w18{width:357.270000px;}
.w12{width:358.764000px;}
.w9{width:361.572000px;}
.w6{width:364.792500px;}
.w11{width:366.087000px;}
.w8{width:367.111500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x3c{left:-4.970550px;}
.x3b{left:-3.392550px;}
.x10{left:-1.097700px;}
.x0{left:0.000000px;}
.x1{left:36.141750px;}
.x3{left:42.519750px;}
.x11{left:54.279600px;}
.x5{left:101.240250px;}
.x6{left:105.777750px;}
.x13{left:154.399500px;}
.x40{left:214.924650px;}
.x30{left:221.641950px;}
.x2f{left:227.500950px;}
.x31{left:271.753950px;}
.x7{left:327.957600px;}
.x33{left:334.599750px;}
.x32{left:338.487750px;}
.x34{left:359.817750px;}
.x17{left:418.202250px;}
.x23{left:423.890250px;}
.x16{left:432.637800px;}
.x22{left:445.071750px;}
.x24{left:451.889250px;}
.x18{left:470.663250px;}
.x19{left:495.881250px;}
.x35{left:533.622000px;}
.x2c{left:552.591450px;}
.x21{left:554.881800px;}
.x3e{left:556.764450px;}
.x3f{left:574.206450px;}
.x3d{left:585.114450px;}
.x26{left:682.840350px;}
.x25{left:691.061850px;}
.x27{left:713.458350px;}
.x2{left:809.266200px;}
.x8{left:956.692800px;}
.xf{left:957.790500px;}
.x14{left:1047.318750px;}
.x15{left:1048.524000px;}
.x38{left:1068.228600px;}
.x37{left:1069.430100px;}
.x39{left:1085.670600px;}
.x1b{left:1153.080900px;}
.x1c{left:1205.190900px;}
.x1a{left:1217.158200px;}
.x1d{left:1222.632900px;}
.x1e{left:1224.657000px;}
.x36{left:1317.054000px;}
.x28{left:1321.299150px;}
.x2a{left:1332.300000px;}
.x29{left:1340.305500px;}
.x9{left:1354.253550px;}
.x2b{left:1357.518000px;}
.xb{left:1385.863350px;}
.xa{left:1391.675850px;}
.xc{left:1402.363350px;}
.x4{left:1430.787450px;}
.x3a{left:1434.180000px;}
.xd{left:1435.813350px;}
.x2d{left:1463.163300px;}
.x2e{left:1479.876300px;}
.x1f{left:1509.842850px;}
.x20{left:1526.812350px;}
.xe{left:1645.219800px;}
.x12{left:1742.307600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.248000pt;}
.ls3{letter-spacing:-0.101333pt;}
.ls4{letter-spacing:-0.050667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.133333pt;}
.ls2{letter-spacing:4.266667pt;}
.ws7{word-spacing:-27.466667pt;}
.ws1{word-spacing:-9.493333pt;}
.wsa{word-spacing:-9.216000pt;}
.ws5{word-spacing:-4.266667pt;}
.wsc{word-spacing:-2.133333pt;}
.ws4{word-spacing:-2.080000pt;}
.wsb{word-spacing:-1.440000pt;}
.ws2{word-spacing:-1.280000pt;}
.ws8{word-spacing:-0.960000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:1.248000pt;}
.ws9{word-spacing:5931.605333pt;}
.ws6{word-spacing:5989.290667pt;}
._2a{margin-left:-1287.845333pt;}
._2f{margin-left:-1136.250667pt;}
._43{margin-left:-1109.245333pt;}
._74{margin-left:-1085.533333pt;}
._2c{margin-left:-911.544000pt;}
._84{margin-left:-799.216000pt;}
._4f{margin-left:-779.709333pt;}
._6d{margin-left:-743.786667pt;}
._4a{margin-left:-734.869333pt;}
._98{margin-left:-702.290667pt;}
._73{margin-left:-694.386667pt;}
._61{margin-left:-668.445333pt;}
._5d{margin-left:-662.770667pt;}
._8b{margin-left:-648.786667pt;}
._83{margin-left:-646.456000pt;}
._4e{margin-left:-635.106667pt;}
._68{margin-left:-625.632000pt;}
._26{margin-left:-597.968000pt;}
._97{margin-left:-597.005333pt;}
._4c{margin-left:-566.554667pt;}
._53{margin-left:-552.677067pt;}
._60{margin-left:-550.848000pt;}
._36{margin-left:-545.882667pt;}
._51{margin-left:-535.090667pt;}
._5b{margin-left:-517.053333pt;}
._42{margin-left:-512.189333pt;}
._49{margin-left:-510.061333pt;}
._50{margin-left:-493.645333pt;}
._88{margin-left:-489.338667pt;}
._3a{margin-left:-486.602667pt;}
._13{margin-left:-484.272000pt;}
._57{margin-left:-476.773333pt;}
._59{margin-left:-471.960000pt;}
._4d{margin-left:-460.762667pt;}
._41{margin-left:-457.216000pt;}
._96{margin-left:-453.264000pt;}
._91{margin-left:-425.144000pt;}
._1a{margin-left:-423.117333pt;}
._19{margin-left:-407.866667pt;}
._6f{margin-left:-401.381333pt;}
._76{margin-left:-397.226667pt;}
._7a{margin-left:-394.085333pt;}
._65{margin-left:-390.746400pt;}
._20{margin-left:-388.562667pt;}
._5c{margin-left:-387.397333pt;}
._25{margin-left:-383.749333pt;}
._32{margin-left:-381.672000pt;}
._7d{margin-left:-367.536000pt;}
._3b{margin-left:-365.509333pt;}
._46{margin-left:-363.938667pt;}
._12{margin-left:-343.469333pt;}
._93{margin-left:-337.541333pt;}
._1e{margin-left:-335.565333pt;}
._70{margin-left:-331.466400pt;}
._29{margin-left:-329.434667pt;}
._69{margin-left:-325.989333pt;}
._5a{margin-left:-324.469333pt;}
._6e{margin-left:-323.152000pt;}
._48{margin-left:-318.242400pt;}
._7b{margin-left:-316.818667pt;}
._31{margin-left:-309.320000pt;}
._64{margin-left:-301.573067pt;}
._38{margin-left:-300.194933pt;}
._27{margin-left:-292.954667pt;}
._1c{margin-left:-291.080000pt;}
._10{margin-left:-288.293333pt;}
._56{margin-left:-286.469333pt;}
._92{margin-left:-279.376000pt;}
._81{margin-left:-267.216000pt;}
._99{margin-left:-265.645333pt;}
._80{margin-left:-260.984000pt;}
._18{margin-left:-258.749600pt;}
._3c{margin-left:-256.880000pt;}
._5e{margin-left:-254.802667pt;}
._77{margin-left:-253.738667pt;}
._72{margin-left:-251.661333pt;}
._33{margin-left:-249.432000pt;}
._40{margin-left:-242.434933pt;}
._21{margin-left:-237.576000pt;}
._39{margin-left:-236.015467pt;}
._58{margin-left:-233.269333pt;}
._71{margin-left:-232.357333pt;}
._94{margin-left:-229.925333pt;}
._89{margin-left:-206.821333pt;}
._8e{margin-left:-204.186667pt;}
._85{margin-left:-199.069333pt;}
._35{margin-left:-198.056000pt;}
._9c{margin-left:-193.440000pt;}
._1b{margin-left:-191.520000pt;}
._37{margin-left:-190.354667pt;}
._6a{margin-left:-187.061333pt;}
._52{margin-left:-185.946667pt;}
._9b{margin-left:-178.330667pt;}
._24{margin-left:-168.973333pt;}
._6c{margin-left:-165.730667pt;}
._6b{margin-left:-160.106667pt;}
._47{margin-left:-157.320000pt;}
._62{margin-left:-155.754400pt;}
._3f{margin-left:-152.506667pt;}
._4b{margin-left:-147.288000pt;}
._8a{margin-left:-143.893333pt;}
._55{margin-left:-139.232000pt;}
._9a{margin-left:-134.714400pt;}
._67{margin-left:-133.405333pt;}
._2d{margin-left:-130.213333pt;}
._9d{margin-left:-127.440000pt;}
._79{margin-left:-126.413333pt;}
._7c{margin-left:-122.512000pt;}
._7e{margin-left:-116.837333pt;}
._45{margin-left:-111.112000pt;}
._1f{margin-left:-108.832000pt;}
._75{margin-left:-107.565333pt;}
._8f{margin-left:-104.576000pt;}
._2e{margin-left:-101.181333pt;}
._2b{margin-left:-93.581333pt;}
._14{margin-left:-91.909333pt;}
._28{margin-left:-88.869333pt;}
._95{margin-left:-86.184000pt;}
._30{margin-left:-85.272000pt;}
._54{margin-left:-76.304000pt;}
._34{margin-left:-72.909333pt;}
._3d{margin-left:-68.090933pt;}
._63{margin-left:-66.778667pt;}
._8d{margin-left:-65.106667pt;}
._17{margin-left:-61.362400pt;}
._86{margin-left:-60.141333pt;}
._78{margin-left:-53.504000pt;}
._15{margin-left:-50.970667pt;}
._7f{margin-left:-49.861067pt;}
._23{margin-left:-48.082667pt;}
._5f{margin-left:-47.069333pt;}
._66{margin-left:-42.965333pt;}
._8c{margin-left:-41.850667pt;}
._87{margin-left:-38.709333pt;}
._82{margin-left:-35.466667pt;}
._16{margin-left:-34.504000pt;}
._44{margin-left:-33.237333pt;}
._90{margin-left:-30.552000pt;}
._22{margin-left:-29.133333pt;}
._3e{margin-left:-28.028800pt;}
._1d{margin-left:-24.776000pt;}
._2{margin-left:-21.360000pt;}
._8{margin-left:-17.600000pt;}
._1{margin-left:-14.240000pt;}
._a{margin-left:-13.200000pt;}
._d{margin-left:-12.058667pt;}
._7{margin-left:-8.160533pt;}
._b{margin-left:-7.069333pt;}
._9{margin-left:-5.866667pt;}
._e{margin-left:-4.289067pt;}
._4{margin-left:-2.389333pt;}
._3{margin-left:-1.284267pt;}
._5{width:1.275733pt;}
._f{width:2.476267pt;}
._11{width:3.445333pt;}
._c{width:4.352000pt;}
._6{width:5.449600pt;}
._0{width:9.493333pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fsb{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:133.333333pt;}
.fsa{font-size:170.666667pt;}
.fs4{font-size:208.000000pt;}
.fs5{font-size:293.333333pt;}
.fs0{font-size:474.666667pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:0.130800pt;}
.ydd{bottom:0.131067pt;}
.yd7{bottom:0.131200pt;}
.ybe{bottom:0.131600pt;}
.ya5{bottom:0.132000pt;}
.ya0{bottom:0.132400pt;}
.yd9{bottom:0.132533pt;}
.y84{bottom:0.139733pt;}
.ya3{bottom:0.180000pt;}
.y9e{bottom:0.180400pt;}
.yd5{bottom:0.180533pt;}
.ybc{bottom:0.180933pt;}
.ye1{bottom:0.570667pt;}
.ydf{bottom:0.572000pt;}
.y44{bottom:2.785867pt;}
.y90{bottom:2.786400pt;}
.y46{bottom:2.787200pt;}
.y88{bottom:2.787733pt;}
.y55{bottom:2.899200pt;}
.y8c{bottom:2.899733pt;}
.y4c{bottom:2.900533pt;}
.y80{bottom:2.901067pt;}
.y48{bottom:2.937867pt;}
.y82{bottom:2.938400pt;}
.y50{bottom:2.939200pt;}
.y62{bottom:37.735733pt;}
.yd{bottom:38.012800pt;}
.yba{bottom:47.740133pt;}
.y96{bottom:48.684933pt;}
.yc{bottom:50.812800pt;}
.yac{bottom:59.025867pt;}
.ya6{bottom:61.777333pt;}
.y9c{bottom:61.913333pt;}
.y5f{bottom:63.030667pt;}
.yc0{bottom:64.938667pt;}
.yb9{bottom:65.068133pt;}
.y2a{bottom:65.890533pt;}
.y95{bottom:66.012933pt;}
.ydc{bottom:75.006667pt;}
.yd3{bottom:75.141733pt;}
.ycd{bottom:75.156400pt;}
.yab{bottom:76.353867pt;}
.yb{bottom:76.412800pt;}
.ya4{bottom:79.110667pt;}
.y9b{bottom:79.241333pt;}
.yc7{bottom:79.393600pt;}
.y5e{bottom:81.698667pt;}
.y29{bottom:84.561200pt;}
.ye4{bottom:87.284800pt;}
.ya{bottom:89.212800pt;}
.ydb{bottom:92.338667pt;}
.yd2{bottom:92.469733pt;}
.ycc{bottom:92.484400pt;}
.yc6{bottom:96.721600pt;}
.yb8{bottom:99.736133pt;}
.y5d{bottom:100.517333pt;}
.y94{bottom:100.680933pt;}
.y28{bottom:103.231867pt;}
.ye3{bottom:104.612800pt;}
.yaa{bottom:111.021867pt;}
.ya2{bottom:113.729333pt;}
.y9a{bottom:113.909333pt;}
.y5c{bottom:119.032000pt;}
.y27{bottom:121.902533pt;}
.ye2{bottom:121.940800pt;}
.yb4{bottom:125.220400pt;}
.yda{bottom:126.957333pt;}
.yd1{bottom:127.137733pt;}
.ycb{bottom:127.152400pt;}
.yc5{bottom:131.389600pt;}
.ya9{bottom:132.726667pt;}
.y5b{bottom:137.736000pt;}
.y9{bottom:140.412800pt;}
.y3d{bottom:140.497200pt;}
.y26{bottom:140.573200pt;}
.yb3{bottom:142.548400pt;}
.ya8{bottom:150.054667pt;}
.y8{bottom:153.212800pt;}
.y5a{bottom:156.365333pt;}
.y3c{bottom:159.167867pt;}
.y25{bottom:159.243867pt;}
.y70{bottom:165.819733pt;}
.y59{bottom:175.182667pt;}
.yb2{bottom:177.216400pt;}
.y3b{bottom:177.838533pt;}
.y24{bottom:177.914533pt;}
.y7{bottom:178.812800pt;}
.y6f{bottom:184.490400pt;}
.ya7{bottom:184.722667pt;}
.y6{bottom:191.612800pt;}
.y58{bottom:193.736000pt;}
.y3a{bottom:196.509200pt;}
.y23{bottom:196.585200pt;}
.y5{bottom:204.412800pt;}
.y57{bottom:212.364000pt;}
.y39{bottom:215.179867pt;}
.y22{bottom:215.255867pt;}
.y13{bottom:218.208133pt;}
.y6e{bottom:221.819067pt;}
.y56{bottom:231.030667pt;}
.y38{bottom:233.850533pt;}
.y21{bottom:233.926533pt;}
.y8f{bottom:237.734667pt;}
.y7c{bottom:240.439067pt;}
.y6d{bottom:240.489733pt;}
.y54{bottom:249.737333pt;}
.y37{bottom:252.521200pt;}
.y20{bottom:252.597200pt;}
.y8e{bottom:256.249333pt;}
.y7b{bottom:259.109733pt;}
.y6c{bottom:259.160400pt;}
.y53{bottom:268.402667pt;}
.y36{bottom:271.191867pt;}
.y1f{bottom:271.267867pt;}
.y8d{bottom:274.953333pt;}
.y7a{bottom:277.780400pt;}
.y6b{bottom:277.831067pt;}
.y8b{bottom:293.621333pt;}
.y79{bottom:296.451067pt;}
.y6a{bottom:296.501733pt;}
.y52{bottom:305.849333pt;}
.ye6{bottom:308.123067pt;}
.y35{bottom:308.520533pt;}
.y1e{bottom:308.596533pt;}
.y8a{bottom:312.249333pt;}
.y78{bottom:315.121733pt;}
.y69{bottom:315.172400pt;}
.y51{bottom:324.402667pt;}
.y34{bottom:327.191200pt;}
.y1d{bottom:327.267200pt;}
.y89{bottom:330.953333pt;}
.y77{bottom:333.792400pt;}
.y68{bottom:333.843067pt;}
.y11{bottom:340.784533pt;}
.ye5{bottom:342.171067pt;}
.y4f{bottom:343.030667pt;}
.y33{bottom:345.861867pt;}
.y1c{bottom:345.937867pt;}
.y87{bottom:349.733333pt;}
.y76{bottom:352.463067pt;}
.y67{bottom:352.513733pt;}
.ye0{bottom:353.236000pt;}
.yf{bottom:353.825333pt;}
.y4e{bottom:361.850667pt;}
.y32{bottom:364.532533pt;}
.y1b{bottom:364.608533pt;}
.y86{bottom:368.286667pt;}
.y93{bottom:369.944800pt;}
.y75{bottom:371.133733pt;}
.y66{bottom:371.184400pt;}
.ybf{bottom:377.945333pt;}
.yb7{bottom:378.080933pt;}
.y4d{bottom:380.402667pt;}
.y31{bottom:383.203200pt;}
.y1a{bottom:383.279200pt;}
.y85{bottom:386.916000pt;}
.y92{bottom:387.272800pt;}
.y74{bottom:389.804400pt;}
.ybd{bottom:395.278667pt;}
.yb6{bottom:395.408933pt;}
.y4b{bottom:399.069333pt;}
.y30{bottom:401.873867pt;}
.y19{bottom:401.949867pt;}
.yde{bottom:403.901333pt;}
.ye{bottom:404.473333pt;}
.y83{bottom:408.381333pt;}
.y73{bottom:408.475067pt;}
.y65{bottom:408.513067pt;}
.y10{bottom:414.117867pt;}
.y4a{bottom:417.698667pt;}
.y2f{bottom:420.544533pt;}
.y18{bottom:420.620533pt;}
.y91{bottom:421.940800pt;}
.y81{bottom:424.249333pt;}
.y72{bottom:427.145733pt;}
.y64{bottom:427.183733pt;}
.ybb{bottom:429.896000pt;}
.yb5{bottom:430.076933pt;}
.y49{bottom:436.517333pt;}
.y2e{bottom:439.215200pt;}
.y17{bottom:439.291200pt;}
.y7f{bottom:442.953333pt;}
.y71{bottom:445.816400pt;}
.y63{bottom:445.854400pt;}
.y47{bottom:455.032000pt;}
.y2d{bottom:457.885867pt;}
.y16{bottom:457.961867pt;}
.y45{bottom:473.849333pt;}
.y2c{bottom:476.556533pt;}
.y15{bottom:476.632533pt;}
.y43{bottom:492.517333pt;}
.y2b{bottom:495.227200pt;}
.y14{bottom:495.303200pt;}
.yd8{bottom:508.076000pt;}
.yd0{bottom:508.212400pt;}
.yca{bottom:508.212533pt;}
.yaf{bottom:513.881867pt;}
.y4{bottom:516.684400pt;}
.yc4{bottom:520.496000pt;}
.yd6{bottom:525.410667pt;}
.ycf{bottom:525.540400pt;}
.yc9{bottom:525.540533pt;}
.yae{bottom:531.209867pt;}
.y7e{bottom:533.926667pt;}
.yc3{bottom:537.824000pt;}
.ya1{bottom:547.405333pt;}
.y99{bottom:547.541733pt;}
.yd4{bottom:560.028000pt;}
.yce{bottom:560.208400pt;}
.yc8{bottom:560.208533pt;}
.y2{bottom:564.696800pt;}
.y9f{bottom:564.738667pt;}
.y98{bottom:564.869733pt;}
.yad{bottom:565.877867pt;}
.y7d{bottom:568.593333pt;}
.y12{bottom:568.840133pt;}
.yc2{bottom:572.492000pt;}
.y42{bottom:594.271067pt;}
.y9d{bottom:599.357333pt;}
.y97{bottom:599.537733pt;}
.y61{bottom:613.336133pt;}
.yb0{bottom:613.337467pt;}
.y41{bottom:628.687867pt;}
.y60{bottom:644.152133pt;}
.yb1{bottom:644.153467pt;}
.y40{bottom:663.354533pt;}
.y1{bottom:672.683467pt;}
.y3f{bottom:698.021200pt;}
.y3e{bottom:732.687867pt;}
.y3{bottom:745.894800pt;}
.h1e{height:7.980000pt;}
.h1c{height:8.520000pt;}
.h21{height:8.521333pt;}
.h1f{height:10.548000pt;}
.h20{height:10.582667pt;}
.h1d{height:10.584000pt;}
.h17{height:11.172000pt;}
.he{height:11.906667pt;}
.hd{height:12.006667pt;}
.h13{height:12.018667pt;}
.h10{height:12.020000pt;}
.h16{height:12.057333pt;}
.h14{height:12.058667pt;}
.h15{height:12.121333pt;}
.h11{height:12.122667pt;}
.hf{height:12.160000pt;}
.h12{height:12.161333pt;}
.h19{height:13.933333pt;}
.h18{height:13.970667pt;}
.h6{height:30.720000pt;}
.h23{height:36.502667pt;}
.h5{height:36.864000pt;}
.ha{height:37.162667pt;}
.h1a{height:41.472000pt;}
.h1b{height:41.808000pt;}
.h3{height:43.520000pt;}
.hb{height:44.130667pt;}
.h25{height:44.160000pt;}
.h22{height:45.862667pt;}
.h9{height:49.920000pt;}
.h4{height:65.280000pt;}
.hc{height:116.133333pt;}
.h24{height:148.650667pt;}
.h7{height:181.168000pt;}
.h8{height:255.493333pt;}
.h2{height:413.434667pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2d{width:4.921333pt;}
.w2b{width:14.700000pt;}
.w2c{width:14.796000pt;}
.w2a{width:14.868000pt;}
.w2f{width:18.478667pt;}
.w30{width:18.622667pt;}
.w2e{width:19.032000pt;}
.w26{width:56.518667pt;}
.w29{width:62.304000pt;}
.w32{width:63.358667pt;}
.w31{width:78.600000pt;}
.w25{width:79.113333pt;}
.w28{width:79.114667pt;}
.w24{width:86.878667pt;}
.w23{width:118.784000pt;}
.w27{width:126.154667pt;}
.w34{width:229.697333pt;}
.we{width:234.390667pt;}
.w33{width:253.621333pt;}
.w1b{width:257.862667pt;}
.w1f{width:257.950667pt;}
.w1c{width:257.964000pt;}
.w22{width:258.293333pt;}
.w1d{width:258.330667pt;}
.w20{width:258.408000pt;}
.w1e{width:258.597333pt;}
.w21{width:258.634667pt;}
.w4{width:297.762667pt;}
.w19{width:301.409333pt;}
.wc{width:301.689333pt;}
.w1a{width:304.032000pt;}
.wb{width:305.172000pt;}
.wf{width:305.854667pt;}
.w5{width:306.553333pt;}
.w13{width:306.604000pt;}
.w16{width:307.046667pt;}
.w10{width:307.401333pt;}
.wa{width:307.426667pt;}
.w14{width:310.656000pt;}
.w7{width:315.989333pt;}
.wd{width:317.154667pt;}
.w17{width:317.266667pt;}
.w15{width:317.344000pt;}
.w18{width:317.573333pt;}
.w12{width:318.901333pt;}
.w9{width:321.397333pt;}
.w6{width:324.260000pt;}
.w11{width:325.410667pt;}
.w8{width:326.321333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x3c{left:-4.418267pt;}
.x3b{left:-3.015600pt;}
.x10{left:-0.975733pt;}
.x0{left:0.000000pt;}
.x1{left:32.126000pt;}
.x3{left:37.795333pt;}
.x11{left:48.248533pt;}
.x5{left:89.991333pt;}
.x6{left:94.024667pt;}
.x13{left:137.244000pt;}
.x40{left:191.044133pt;}
.x30{left:197.015067pt;}
.x2f{left:202.223067pt;}
.x31{left:241.559067pt;}
.x7{left:291.517867pt;}
.x33{left:297.422000pt;}
.x32{left:300.878000pt;}
.x34{left:319.838000pt;}
.x17{left:371.735333pt;}
.x23{left:376.791333pt;}
.x16{left:384.566933pt;}
.x22{left:395.619333pt;}
.x24{left:401.679333pt;}
.x18{left:418.367333pt;}
.x19{left:440.783333pt;}
.x35{left:474.330667pt;}
.x2c{left:491.192400pt;}
.x21{left:493.228267pt;}
.x3e{left:494.901733pt;}
.x3f{left:510.405733pt;}
.x3d{left:520.101733pt;}
.x26{left:606.969200pt;}
.x25{left:614.277200pt;}
.x27{left:634.185200pt;}
.x2{left:719.347733pt;}
.x8{left:850.393600pt;}
.xf{left:851.369333pt;}
.x14{left:930.950000pt;}
.x15{left:932.021333pt;}
.x38{left:949.536533pt;}
.x37{left:950.604533pt;}
.x39{left:965.040533pt;}
.x1b{left:1024.960800pt;}
.x1c{left:1071.280800pt;}
.x1a{left:1081.918400pt;}
.x1d{left:1086.784800pt;}
.x1e{left:1088.584000pt;}
.x36{left:1170.714667pt;}
.x28{left:1174.488133pt;}
.x2a{left:1184.266667pt;}
.x29{left:1191.382667pt;}
.x9{left:1203.780933pt;}
.x2b{left:1206.682667pt;}
.xb{left:1231.878533pt;}
.xa{left:1237.045200pt;}
.xc{left:1246.545200pt;}
.x4{left:1271.811067pt;}
.x3a{left:1274.826667pt;}
.xd{left:1276.278533pt;}
.x2d{left:1300.589600pt;}
.x2e{left:1315.445600pt;}
.x1f{left:1342.082533pt;}
.x20{left:1357.166533pt;}
.xe{left:1462.417600pt;}
.x12{left:1548.717867pt;}
}




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