
    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_992940888d9f649342613cc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_35dc232412bdc967319308e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957031;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_e1a448471f28b4153b718981.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_4c8edd8d3c8b5cd1e597538e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_f24489fa9fcdc8d5d493a090.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_7b2f90450b9ee9a08600070d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_2eb0798d685e0d8e075a73d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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:ff8;src:url('chunks/assets/font_536a86c385db248329881801.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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:ff9;src:url('chunks/assets/font_a3db8ada12372f702213639a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:ffb;src:url('chunks/assets/font_44cc0ddf5f221838afd3ea12.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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:ffd;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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:ffe;src:url('chunks/assets/font_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740234;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:fff;src:url('chunks/assets/font_ea00a9b224f839457d9f1c2a.woff2')format("woff");}.fff{font-family:fff;line-height:0.937500;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:ff10;src:url('chunks/assets/font_06f5184b61d39b0b139bb5bb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.120605;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:ff11;src:url('chunks/assets/font_cac9246d29caf92a8b24a8e1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.957031;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:ff12;src:url('chunks/assets/font_81bc88c6beaeebc4e16c29b0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.002930;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);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v2{vertical-align:27.360000px;}
.ls12{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.504000px;}
.ls2{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.423600px;}
.lsc{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.501120px;}
.ls3{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.720000px;}
.ls19{letter-spacing:6.480000px;}
.lsa{letter-spacing:17.424000px;}
.ls17{letter-spacing:17.568000px;}
.lsb{letter-spacing:21.756000px;}
.ls18{letter-spacing:21.888000px;}
.ls8{letter-spacing:30.396000px;}
.ls9{letter-spacing:31.968000px;}
.ls4{letter-spacing:33.276000px;}
.lsf{letter-spacing:33.360768px;}
.ls10{letter-spacing:33.432480px;}
.lse{letter-spacing:51.996000px;}
.ls14{letter-spacing:82.236000px;}
.ls0{letter-spacing:193.836000px;}
.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:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.496000px;}
.ws8{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws3{word-spacing:-13.244880px;}
.ws9{word-spacing:-11.880000px;}
.ws2{word-spacing:0.000000px;}
._1b{margin-left:-6.099840px;}
._15{margin-left:-4.406400px;}
._d{margin-left:-3.375360px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._3{width:2.535360px;}
._7{width:3.583680px;}
._11{width:4.758720px;}
._b{width:5.760000px;}
._c{width:7.056000px;}
._f{width:9.000000px;}
._1c{width:10.013760px;}
._e{width:11.016000px;}
._18{width:12.240000px;}
._14{width:13.360320px;}
._13{width:14.544000px;}
._a{width:16.024320px;}
._1d{width:18.083520px;}
._16{width:19.391040px;}
._10{width:20.592000px;}
._6{width:21.960000px;}
._5{width:23.256000px;}
._4{width:24.664320px;}
._19{width:25.695360px;}
._17{width:26.712000px;}
._8{width:28.944000px;}
._9{width:29.992320px;}
._1a{width:31.620000px;}
._21{width:33.004320px;}
._24{width:38.664000px;}
._25{width:40.504320px;}
._22{width:42.246720px;}
._12{width:45.216000px;}
._1e{width:48.355200px;}
._23{width:78.246720px;}
._20{width:190.440000px;}
._1f{width:233.568000px;}
.fc5{color:transparent;}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(189,3,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:66.384000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.y1bb{bottom:-21.960000px;}
.y0{bottom:0.000000px;}
.y1ba{bottom:8.325000px;}
.ye0{bottom:14.040000px;}
.y1b7{bottom:14.043000px;}
.y10d{bottom:14.070000px;}
.y1c8{bottom:14.079000px;}
.ye3{bottom:14.085000px;}
.yec{bottom:14.400000px;}
.y108{bottom:14.445000px;}
.ycf{bottom:15.585000px;}
.y178{bottom:29.520000px;}
.y191{bottom:29.550000px;}
.y1ca{bottom:29.565000px;}
.y18d{bottom:29.880000px;}
.y1b5{bottom:29.910000px;}
.y1b2{bottom:29.925000px;}
.y1d3{bottom:30.600000px;}
.y176{bottom:34.200000px;}
.y12e{bottom:45.000000px;}
.y1a8{bottom:45.030000px;}
.y1a9{bottom:45.045000px;}
.y16f{bottom:45.360000px;}
.y185{bottom:45.390000px;}
.y17b{bottom:45.405000px;}
.y1a6{bottom:46.485000px;}
.y1d2{bottom:50.760000px;}
.y18b{bottom:51.510000px;}
.y1a1{bottom:56.916000px;}
.y7{bottom:57.240000px;}
.y1a4{bottom:61.965000px;}
.y175{bottom:65.160000px;}
.y17a{bottom:76.365000px;}
.y1a5{bottom:77.445000px;}
.y16d{bottom:79.200000px;}
.y183{bottom:79.230000px;}
.y1c4{bottom:80.679000px;}
.y18a{bottom:82.470000px;}
.y174{bottom:96.525000px;}
.yd6{bottom:99.795000px;}
.y17f{bottom:107.316000px;}
.y149{bottom:109.836000px;}
.y77{bottom:110.556000px;}
.y1b8{bottom:111.636000px;}
.y1c3{bottom:111.669000px;}
.y189{bottom:113.430000px;}
.y60{bottom:114.876000px;}
.y7f{bottom:118.836000px;}
.yb2{bottom:120.996000px;}
.y164{bottom:124.596000px;}
.y173{bottom:127.485000px;}
.ycd{bottom:127.836000px;}
.y45{bottom:133.236000px;}
.y111{bottom:136.836000px;}
.y17e{bottom:138.636000px;}
.y148{bottom:140.796000px;}
.y76{bottom:141.516000px;}
.y1c2{bottom:142.596000px;}
.yf7{bottom:143.316000px;}
.y20b{bottom:143.676000px;}
.y188{bottom:144.390000px;}
.y1aa{bottom:144.792000px;}
.y5f{bottom:145.836000px;}
.y99{bottom:147.996000px;}
.y7e{bottom:149.796000px;}
.yb1{bottom:152.310000px;}
.y163{bottom:153.030000px;}
.y172{bottom:158.445000px;}
.ycc{bottom:158.790000px;}
.y223{bottom:162.750000px;}
.y44{bottom:164.190000px;}
.y1ee{bottom:167.430000px;}
.y110{bottom:168.150000px;}
.y17d{bottom:169.590000px;}
.y147{bottom:171.750000px;}
.y75{bottom:172.470000px;}
.yf6{bottom:174.270000px;}
.y20a{bottom:174.630000px;}
.y187{bottom:175.755000px;}
.y5e{bottom:176.790000px;}
.y1b6{bottom:178.275000px;}
.y98{bottom:178.950000px;}
.y7d{bottom:181.110000px;}
.y24{bottom:182.910000px;}
.yb0{bottom:183.270000px;}
.y162{bottom:185.070000px;}
.y171{bottom:189.405000px;}
.ycb{bottom:190.110000px;}
.yd3{bottom:190.545000px;}
.yd0{bottom:193.320000px;}
.y222{bottom:193.710000px;}
.y43{bottom:195.510000px;}
.y1ed{bottom:198.795000px;}
.y10f{bottom:199.155000px;}
.y12c{bottom:200.595000px;}
.y146{bottom:202.755000px;}
.y74{bottom:203.475000px;}
.yf5{bottom:205.275000px;}
.y209{bottom:205.635000px;}
.y186{bottom:206.715000px;}
.y5d{bottom:208.155000px;}
.y1c7{bottom:209.235000px;}
.y97{bottom:209.955000px;}
.y1ab{bottom:210.678000px;}
.y1b4{bottom:211.395000px;}
.y23{bottom:213.915000px;}
.yaf{bottom:214.275000px;}
.y161{bottom:216.795000px;}
.yd1{bottom:220.785000px;}
.y221{bottom:224.715000px;}
.y42{bottom:226.515000px;}
.y1ec{bottom:229.755000px;}
.y7c{bottom:230.115000px;}
.y12b{bottom:231.555000px;}
.yd8{bottom:232.635000px;}
.y145{bottom:234.075000px;}
.y73{bottom:234.795000px;}
.yf4{bottom:236.595000px;}
.y208{bottom:236.955000px;}
.y5c{bottom:239.115000px;}
.y19e{bottom:240.555000px;}
.y96{bottom:240.915000px;}
.y22{bottom:244.875000px;}
.y160{bottom:248.475000px;}
.y220{bottom:255.675000px;}
.y41{bottom:257.475000px;}
.yae{bottom:260.715000px;}
.y7b{bottom:261.075000px;}
.yd7{bottom:262.875000px;}
.y144{bottom:265.035000px;}
.y72{bottom:265.755000px;}
.yf3{bottom:267.555000px;}
.y207{bottom:267.915000px;}
.y5b{bottom:270.075000px;}
.y95{bottom:272.235000px;}
.y1c6{bottom:273.705000px;}
.y21{bottom:275.835000px;}
.y1b3{bottom:275.865000px;}
.yca{bottom:279.075000px;}
.y15f{bottom:280.515000px;}
.y19d{bottom:280.875000px;}
.y21f{bottom:286.995000px;}
.yad{bottom:291.675000px;}
.y7a{bottom:292.035000px;}
.y10e{bottom:292.395000px;}
.yd5{bottom:293.115000px;}
.y143{bottom:293.475000px;}
.y12a{bottom:293.835000px;}
.y40{bottom:297.435000px;}
.yf2{bottom:298.875000px;}
.y5a{bottom:301.035000px;}
.y94{bottom:303.195000px;}
.y1c5{bottom:306.825000px;}
.y20{bottom:307.155000px;}
.y1b1{bottom:308.985000px;}
.y19c{bottom:311.835000px;}
.y15e{bottom:312.195000px;}
.yce{bottom:312.480000px;}
.y71{bottom:314.715000px;}
.y21e{bottom:317.955000px;}
.yc9{bottom:319.035000px;}
.y10c{bottom:320.835000px;}
.yac{bottom:322.635000px;}
.y79{bottom:322.995000px;}
.yd4{bottom:323.385000px;}
.y129{bottom:324.825000px;}
.y142{bottom:325.545000px;}
.y17c{bottom:326.985000px;}
.yf1{bottom:327.345000px;}
.y206{bottom:329.865000px;}
.y59{bottom:332.025000px;}
.y93{bottom:334.185000px;}
.y1f{bottom:338.145000px;}
.y1c1{bottom:340.350000px;}
.y19b{bottom:342.825000px;}
.y70{bottom:345.705000px;}
.y21d{bottom:348.945000px;}
.y3f{bottom:349.305000px;}
.y1cf{bottom:350.070000px;}
.y10b{bottom:352.545000px;}
.yab{bottom:353.625000px;}
.y1eb{bottom:353.985000px;}
.y78{bottom:354.345000px;}
.y128{bottom:355.785000px;}
.y141{bottom:357.225000px;}
.yf0{bottom:359.025000px;}
.yc8{bottom:359.385000px;}
.y170{bottom:360.105000px;}
.y205{bottom:361.185000px;}
.y58{bottom:363.345000px;}
.y1e{bottom:369.105000px;}
.y1b0{bottom:373.470000px;}
.y19a{bottom:373.785000px;}
.y6f{bottom:377.025000px;}
.y21c{bottom:379.905000px;}
.y3e{bottom:380.265000px;}
.y1ce{bottom:381.390000px;}
.y92{bottom:383.145000px;}
.yd2{bottom:383.865000px;}
.y10a{bottom:384.585000px;}
.yaa{bottom:384.945000px;}
.y127{bottom:387.105000px;}
.y15d{bottom:388.545000px;}
.y140{bottom:388.905000px;}
.yef{bottom:390.705000px;}
.y204{bottom:392.145000px;}
.y57{bottom:394.305000px;}
.yc7{bottom:399.345000px;}
.y1d{bottom:400.065000px;}
.y199{bottom:405.105000px;}
.y1af{bottom:406.950000px;}
.y6e{bottom:407.985000px;}
.y3d{bottom:411.225000px;}
.y1cd{bottom:412.380000px;}
.y91{bottom:414.465000px;}
.y1ea{bottom:415.905000px;}
.y109{bottom:416.265000px;}
.y126{bottom:418.065000px;}
.y13f{bottom:420.945000px;}
.y15c{bottom:422.385000px;}
.yee{bottom:422.745000px;}
.y203{bottom:423.105000px;}
.y56{bottom:425.265000px;}
.ya9{bottom:427.785000px;}
.y179{bottom:428.145000px;}
.y1c{bottom:431.385000px;}
.y198{bottom:436.065000px;}
.y6d{bottom:438.945000px;}
.yc6{bottom:439.305000px;}
.y1ae{bottom:440.100000px;}
.y21b{bottom:442.185000px;}
.y3c{bottom:442.545000px;}
.y1cc{bottom:443.340000px;}
.y90{bottom:445.425000px;}
.y1e9{bottom:447.225000px;}
.y107{bottom:447.945000px;}
.y125{bottom:449.025000px;}
.y13e{bottom:452.670000px;}
.y15b{bottom:453.750000px;}
.y202{bottom:454.110000px;}
.yed{bottom:454.470000px;}
.y55{bottom:456.270000px;}
.ya8{bottom:458.790000px;}
.y1b{bottom:462.390000px;}
.y197{bottom:467.070000px;}
.y6c{bottom:469.950000px;}
.y1c0{bottom:471.060000px;}
.yc5{bottom:472.110000px;}
.y21a{bottom:473.190000px;}
.y3b{bottom:473.550000px;}
.y1cb{bottom:474.660000px;}
.y8f{bottom:476.430000px;}
.y124{bottom:477.870000px;}
.y1e8{bottom:478.230000px;}
.y106{bottom:480.030000px;}
.y13d{bottom:484.350000px;}
.y15a{bottom:484.710000px;}
.y201{bottom:485.070000px;}
.yeb{bottom:486.150000px;}
.y54{bottom:487.590000px;}
.ya7{bottom:490.110000px;}
.y1a{bottom:493.350000px;}
.yc4{bottom:495.870000px;}
.y196{bottom:498.030000px;}
.y3a{bottom:504.510000px;}
.y1ad{bottom:504.570000px;}
.y8e{bottom:507.390000px;}
.y1e7{bottom:509.190000px;}
.y123{bottom:509.550000px;}
.y105{bottom:511.710000px;}
.y219{bottom:513.150000px;}
.y6b{bottom:514.590000px;}
.y159{bottom:515.670000px;}
.y13c{bottom:516.390000px;}
.yea{bottom:518.190000px;}
.y53{bottom:518.550000px;}
.ya6{bottom:521.070000px;}
.y19{bottom:524.310000px;}
.y177{bottom:524.670000px;}
.yc3{bottom:528.630000px;}
.y195{bottom:529.350000px;}
.y39{bottom:535.470000px;}
.y1ac{bottom:537.690000px;}
.y1e6{bottom:540.150000px;}
.y122{bottom:541.230000px;}
.y104{bottom:543.390000px;}
.y158{bottom:544.470000px;}
.y200{bottom:547.350000px;}
.y52{bottom:549.510000px;}
.ye9{bottom:549.870000px;}
.ya5{bottom:552.030000px;}
.yc2{bottom:552.750000px;}
.y8d{bottom:553.470000px;}
.y6a{bottom:554.550000px;}
.y18{bottom:558.150000px;}
.y194{bottom:560.310000px;}
.y218{bottom:562.470000px;}
.y38{bottom:566.790000px;}
.y1bf{bottom:569.010000px;}
.y1a3{bottom:571.170000px;}
.y1e5{bottom:571.470000px;}
.y121{bottom:573.270000px;}
.y103{bottom:575.460000px;}
.y157{bottom:576.180000px;}
.yc1{bottom:576.540000px;}
.y1ff{bottom:578.340000px;}
.y51{bottom:580.500000px;}
.y8c{bottom:584.820000px;}
.y69{bottom:585.900000px;}
.y17{bottom:589.140000px;}
.y16c{bottom:589.500000px;}
.y193{bottom:590.940000px;}
.y13b{bottom:592.380000px;}
.y217{bottom:593.460000px;}
.ye8{bottom:595.260000px;}
.y37{bottom:597.780000px;}
.yc0{bottom:600.300000px;}
.ya4{bottom:600.660000px;}
.y1be{bottom:602.175000px;}
.y1e4{bottom:602.460000px;}
.y120{bottom:604.980000px;}
.y102{bottom:607.140000px;}
.y156{bottom:607.860000px;}
.y1fe{bottom:609.300000px;}
.y50{bottom:611.820000px;}
.y8b{bottom:615.780000px;}
.y68{bottom:616.860000px;}
.y16{bottom:620.100000px;}
.y13a{bottom:623.700000px;}
.ybf{bottom:624.060000px;}
.y192{bottom:624.420000px;}
.y36{bottom:628.740000px;}
.ye7{bottom:629.100000px;}
.ya3{bottom:631.980000px;}
.y1e3{bottom:633.420000px;}
.y1a7{bottom:635.655000px;}
.y11f{bottom:636.660000px;}
.y155{bottom:639.540000px;}
.y1fd{bottom:640.620000px;}
.y4f{bottom:642.780000px;}
.y8a{bottom:646.740000px;}
.y67{bottom:647.820000px;}
.y15{bottom:651.420000px;}
.y101{bottom:652.500000px;}
.y16e{bottom:654.660000px;}
.y216{bottom:655.380000px;}
.y139{bottom:657.540000px;}
.y35{bottom:659.700000px;}
.ye6{bottom:660.060000px;}
.ya2{bottom:662.940000px;}
.y1e2{bottom:664.380000px;}
.y11e{bottom:668.340000px;}
.y1c9{bottom:668.775000px;}
.y154{bottom:671.580000px;}
.y4e{bottom:673.740000px;}
.y89{bottom:677.700000px;}
.y66{bottom:678.780000px;}
.ybe{bottom:680.580000px;}
.y14{bottom:682.380000px;}
.y100{bottom:686.340000px;}
.y215{bottom:686.700000px;}
.y138{bottom:688.500000px;}
.y34{bottom:691.020000px;}
.y190{bottom:691.740000px;}
.ya1{bottom:693.900000px;}
.y1e1{bottom:695.700000px;}
.y1a2{bottom:699.765000px;}
.y1fc{bottom:702.570000px;}
.y16b{bottom:702.930000px;}
.y153{bottom:703.290000px;}
.ybd{bottom:704.370000px;}
.y4d{bottom:704.730000px;}
.y88{bottom:709.050000px;}
.y22a{bottom:711.210000px;}
.y13{bottom:713.370000px;}
.y11d{bottom:713.730000px;}
.yff{bottom:717.330000px;}
.y214{bottom:717.690000px;}
.y65{bottom:719.130000px;}
.y137{bottom:719.850000px;}
.y33{bottom:722.010000px;}
.ye5{bottom:722.370000px;}
.y1e0{bottom:726.690000px;}
.ybc{bottom:728.130000px;}
.y1fb{bottom:733.530000px;}
.y16a{bottom:733.890000px;}
.y152{bottom:734.970000px;}
.y4c{bottom:736.050000px;}
.ya0{bottom:742.890000px;}
.y12{bottom:744.330000px;}
.y11c{bottom:747.930000px;}
.yfe{bottom:748.650000px;}
.y87{bottom:749.010000px;}
.ye4{bottom:750.810000px;}
.ybb{bottom:752.250000px;}
.y32{bottom:752.970000px;}
.y1b9{bottom:755.565000px;}
.y18f{bottom:756.930000px;}
.y1df{bottom:757.650000px;}
.y229{bottom:760.170000px;}
.y1fa{bottom:764.850000px;}
.y4b{bottom:767.010000px;}
.y64{bottom:768.090000px;}
.y11{bottom:775.650000px;}
.yba{bottom:776.010000px;}
.yfd{bottom:777.090000px;}
.y11b{bottom:778.890000px;}
.y213{bottom:779.610000px;}
.y86{bottom:779.970000px;}
.y151{bottom:780.330000px;}
.y136{bottom:781.770000px;}
.y9f{bottom:782.850000px;}
.y31{bottom:783.930000px;}
.y1de{bottom:788.610000px;}
.y228{bottom:791.850000px;}
.y1f9{bottom:795.810000px;}
.y4a{bottom:797.970000px;}
.y63{bottom:799.050000px;}
.yb9{bottom:799.770000px;}
.y1a0{bottom:803.850000px;}
.y1bd{bottom:804.210000px;}
.y10{bottom:806.610000px;}
.y169{bottom:808.050000px;}
.yfc{bottom:808.770000px;}
.y11a{bottom:809.850000px;}
.y85{bottom:810.930000px;}
.y135{bottom:813.090000px;}
.y9e{bottom:813.810000px;}
.ye2{bottom:814.530000px;}
.y1dd{bottom:819.930000px;}
.y18e{bottom:822.090000px;}
.y227{bottom:822.810000px;}
.y19f{bottom:824.010000px;}
.y30{bottom:824.250000px;}
.y1bc{bottom:825.450000px;}
.y1f8{bottom:826.815000px;}
.y49{bottom:828.975000px;}
.yb8{bottom:832.575000px;}
.yf{bottom:837.615000px;}
.y168{bottom:839.415000px;}
.yfb{bottom:840.855000px;}
.y119{bottom:841.215000px;}
.y134{bottom:841.575000px;}
.y212{bottom:841.935000px;}
.y84{bottom:842.295000px;}
.y9d{bottom:844.815000px;}
.y62{bottom:845.175000px;}
.y150{bottom:845.535000px;}
.ye1{bottom:846.255000px;}
.y1dc{bottom:850.935000px;}
.y226{bottom:853.815000px;}
.y2f{bottom:855.255000px;}
.y18c{bottom:855.975000px;}
.yb7{bottom:856.335000px;}
.y1f7{bottom:857.775000px;}
.y48{bottom:860.295000px;}
.ye{bottom:868.575000px;}
.y118{bottom:869.655000px;}
.yfa{bottom:872.535000px;}
.y211{bottom:872.895000px;}
.y133{bottom:873.255000px;}
.y61{bottom:876.135000px;}
.y14f{bottom:876.495000px;}
.ydf{bottom:878.295000px;}
.yb6{bottom:880.095000px;}
.y1db{bottom:881.895000px;}
.y83{bottom:882.255000px;}
.y225{bottom:884.775000px;}
.y1f6{bottom:889.095000px;}
.y47{bottom:891.255000px;}
.yd{bottom:899.895000px;}
.y117{bottom:901.335000px;}
.yb5{bottom:903.855000px;}
.y2e{bottom:904.215000px;}
.y132{bottom:905.295000px;}
.y9c{bottom:907.095000px;}
.y14e{bottom:907.815000px;}
.y1da{bottom:912.855000px;}
.y82{bottom:913.215000px;}
.y224{bottom:916.095000px;}
.y1f5{bottom:920.055000px;}
.y182{bottom:921.135000px;}
.y46{bottom:922.215000px;}
.yde{bottom:923.295000px;}
.yb4{bottom:927.615000px;}
.y116{bottom:933.015000px;}
.y167{bottom:935.175000px;}
.yf9{bottom:936.255000px;}
.y131{bottom:936.975000px;}
.y9b{bottom:938.055000px;}
.yc{bottom:939.855000px;}
.y81{bottom:944.175000px;}
.y210{bottom:947.055000px;}
.y1f4{bottom:951.015000px;}
.yb3{bottom:951.375000px;}
.y2d{bottom:953.205000px;}
.ydd{bottom:957.525000px;}
.y115{bottom:965.085000px;}
.y166{bottom:966.525000px;}
.y14d{bottom:967.965000px;}
.y130{bottom:968.685000px;}
.y9a{bottom:969.405000px;}
.yb{bottom:973.365000px;}
.y1d9{bottom:975.165000px;}
.y80{bottom:975.525000px;}
.y20f{bottom:978.045000px;}
.yf8{bottom:981.645000px;}
.y1f3{bottom:982.005000px;}
.y2c{bottom:984.525000px;}
.y184{bottom:986.325000px;}
.y114{bottom:996.765000px;}
.ydc{bottom:997.485000px;}
.y14c{bottom:999.645000px;}
.y12f{bottom:1000.365000px;}
.y1d8{bottom:1006.125000px;}
.y20e{bottom:1009.005000px;}
.ya{bottom:1009.725000px;}
.y1f2{bottom:1013.325000px;}
.y2b{bottom:1015.485000px;}
.ydb{bottom:1028.445000px;}
.y14b{bottom:1031.685000px;}
.y12d{bottom:1032.405000px;}
.y181{bottom:1034.565000px;}
.y1d7{bottom:1037.085000px;}
.y165{bottom:1037.445000px;}
.y20d{bottom:1040.325000px;}
.y9{bottom:1043.205000px;}
.y2a{bottom:1046.445000px;}
.y1f1{bottom:1053.285000px;}
.yda{bottom:1059.405000px;}
.y113{bottom:1060.485000px;}
.y14a{bottom:1063.365000px;}
.y180{bottom:1065.525000px;}
.y1d6{bottom:1068.405000px;}
.y20c{bottom:1071.285000px;}
.y8{bottom:1074.525000px;}
.y29{bottom:1077.405000px;}
.y6{bottom:1095.810000px;}
.y1d5{bottom:1099.410000px;}
.yd9{bottom:1099.770000px;}
.y1f0{bottom:1102.290000px;}
.y112{bottom:1105.890000px;}
.y28{bottom:1108.770000px;}
.y5{bottom:1117.050000px;}
.y1d4{bottom:1130.370000px;}
.y1ef{bottom:1133.250000px;}
.y4{bottom:1136.130000px;}
.y27{bottom:1139.730000px;}
.y1d1{bottom:1154.490000px;}
.y3{bottom:1154.850000px;}
.y2{bottom:1173.210000px;}
.y26{bottom:1174.290000px;}
.y1{bottom:1194.090000px;}
.y1d0{bottom:1195.170000px;}
.y25{bottom:1195.530000px;}
.h24{height:27.036000px;}
.h11{height:30.960000px;}
.h12{height:30.996000px;}
.h13{height:31.320000px;}
.h14{height:31.356000px;}
.hc{height:33.120000px;}
.h5{height:47.901094px;}
.h4{height:49.097812px;}
.hf{height:50.294531px;}
.hd{height:50.403867px;}
.h8{height:52.066406px;}
.hb{height:53.332031px;}
.h3{height:53.367188px;}
.h25{height:54.628594px;}
.h9{height:58.429688px;}
.h7{height:59.343750px;}
.h23{height:61.723828px;}
.h26{height:61.903828px;}
.h1d{height:61.920000px;}
.ha{height:61.927031px;}
.h15{height:61.956000px;}
.h17{height:62.280000px;}
.h1b{height:62.316000px;}
.h21{height:63.043594px;}
.h2{height:65.884219px;}
.h10{height:66.027445px;}
.h6{height:67.778437px;}
.h19{height:93.276000px;}
.h16{height:96.120000px;}
.h1a{height:96.156000px;}
.h20{height:126.432000px;}
.h27{height:195.225000px;}
.h18{height:226.515000px;}
.he{height:250.200000px;}
.h1c{height:260.715000px;}
.h22{height:424.230000px;}
.h1f{height:892.500000px;}
.h1e{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:57.996000px;}
.w29{width:58.320000px;}
.w2a{width:59.076000px;}
.w36{width:70.200000px;}
.w34{width:77.076000px;}
.w24{width:80.316000px;}
.w37{width:84.996000px;}
.w35{width:91.116000px;}
.w3a{width:93.636000px;}
.w2b{width:96.516000px;}
.w38{width:108.000000px;}
.w39{width:108.036000px;}
.w25{width:109.476000px;}
.w1a{width:111.996000px;}
.w17{width:118.116000px;}
.w14{width:121.356000px;}
.w11{width:132.552000px;}
.we{width:135.072000px;}
.w1c{width:138.312000px;}
.w2c{width:147.312000px;}
.w2d{width:147.672000px;}
.w1b{width:164.955000px;}
.w9{width:165.315000px;}
.w20{width:172.515000px;}
.w18{width:173.955000px;}
.w15{width:179.355000px;}
.wc{width:182.235000px;}
.w5{width:184.755000px;}
.w12{width:196.275000px;}
.wf{width:199.515000px;}
.w6{width:199.545000px;}
.w3b{width:200.190000px;}
.w1d{width:218.235000px;}
.wb{width:227.265000px;}
.wa{width:244.545000px;}
.w3{width:249.840000px;}
.w1f{width:251.385000px;}
.w21{width:254.985000px;}
.w8{width:269.025000px;}
.w7{width:294.585000px;}
.w33{width:296.355000px;}
.w26{width:297.150000px;}
.w27{width:314.745000px;}
.w1e{width:322.350000px;}
.wd{width:343.950000px;}
.w10{width:350.070000px;}
.w13{width:378.150000px;}
.w16{width:386.820000px;}
.w19{width:401.580000px;}
.w23{width:499.530000px;}
.w3c{width:523.950000px;}
.w2e{width:674.565000px;}
.w4{width:680.685000px;}
.w22{width:691.125000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w32{width:1038.885000px;}
.w31{width:1262.879981px;}
.w2f{width:1262.880000px;}
.w30{width:1263.000000px;}
.x0{left:0.000000px;}
.x70{left:4.680000px;}
.x80{left:7.200000px;}
.x27{left:8.280000px;}
.x22{left:11.010000px;}
.x8e{left:13.680000px;}
.x8f{left:14.760000px;}
.x76{left:15.870000px;}
.x74{left:17.280000px;}
.x88{left:19.110000px;}
.x72{left:21.960000px;}
.x8a{left:23.760000px;}
.x5e{left:25.236000px;}
.x57{left:27.360000px;}
.x50{left:28.800000px;}
.x6f{left:30.960000px;}
.x87{left:33.510000px;}
.x4a{left:34.590000px;}
.x42{left:35.670000px;}
.x8c{left:36.720000px;}
.x54{left:37.836000px;}
.x59{left:39.600000px;}
.x7a{left:41.400000px;}
.x24{left:43.095000px;}
.x8b{left:45.720000px;}
.x62{left:46.800000px;}
.x5a{left:49.680000px;}
.x30{left:50.790000px;}
.x44{left:52.560000px;}
.x5c{left:54.360000px;}
.x52{left:55.800000px;}
.x4c{left:56.910000px;}
.x45{left:58.350000px;}
.x39{left:59.400000px;}
.x4d{left:61.590000px;}
.x46{left:62.670000px;}
.x20{left:65.595000px;}
.x5d{left:66.630000px;}
.x29{left:68.085000px;}
.x53{left:69.150000px;}
.x5b{left:70.950000px;}
.x33{left:73.470000px;}
.x32{left:75.285000px;}
.x86{left:76.710000px;}
.x34{left:77.790000px;}
.x47{left:79.230000px;}
.x6a{left:80.325000px;}
.x3b{left:81.750000px;}
.xb{left:83.915987px;}
.x3d{left:86.430000px;}
.x3a{left:87.525000px;}
.x2c{left:90.405000px;}
.x6c{left:95.796000px;}
.x8d{left:97.605000px;}
.x2b{left:100.485000px;}
.x36{left:102.285000px;}
.x66{left:104.445000px;}
.x2{left:106.235987px;}
.x7b{left:107.319000px;}
.x7{left:108.755987px;}
.x1f{left:109.800000px;}
.x35{left:111.285000px;}
.x3f{left:114.165000px;}
.x6b{left:115.965000px;}
.x3c{left:118.845000px;}
.x3e{left:123.165000px;}
.x1e{left:127.835987px;}
.x1d{left:129.995987px;}
.x2d{left:131.805000px;}
.xd{left:133.271987px;}
.x68{left:135.789000px;}
.x4e{left:140.109000px;}
.x65{left:145.155000px;}
.xa{left:148.751987px;}
.x67{left:149.835000px;}
.xe{left:160.274987px;}
.x48{left:204.954000px;}
.x8{left:235.544987px;}
.x3{left:241.664987px;}
.x40{left:243.834000px;}
.x63{left:245.265000px;}
.x37{left:249.234000px;}
.xf{left:252.104987px;}
.x79{left:258.945000px;}
.x91{left:261.795000px;}
.x26{left:264.354000px;}
.x2e{left:266.874000px;}
.x92{left:268.634981px;}
.x10{left:271.184987px;}
.x11{left:290.624987px;}
.x28{left:291.705000px;}
.x9{left:301.784987px;}
.x55{left:305.064000px;}
.x5f{left:307.224000px;}
.x12{left:309.749987px;}
.x38{left:334.590000px;}
.x69{left:358.350000px;}
.x13{left:369.869987px;}
.x2f{left:375.990000px;}
.x14{left:388.949987px;}
.x7e{left:406.905000px;}
.x90{left:408.345000px;}
.x71{left:409.500000px;}
.x7d{left:419.514000px;}
.x5{left:433.259987px;}
.x1{left:446.579987px;}
.x41{left:451.260000px;}
.x49{left:457.020000px;}
.x64{left:464.220000px;}
.x75{left:469.260000px;}
.xc{left:473.219987px;}
.x4f{left:485.130000px;}
.x7f{left:486.150000px;}
.x2a{left:491.970000px;}
.x56{left:493.770000px;}
.x15{left:501.329987px;}
.x60{left:508.890000px;}
.x6{left:518.249987px;}
.x16{left:520.769987px;}
.x77{left:529.770000px;}
.x21{left:531.360000px;}
.x31{left:542.010000px;}
.x17{left:550.289987px;}
.x23{left:557.849987px;}
.x18{left:569.369987px;}
.x25{left:574.454987px;}
.x81{left:579.420000px;}
.x43{left:587.055000px;}
.x4b{left:590.295000px;}
.x6d{left:596.055000px;}
.x51{left:607.215000px;}
.x58{left:612.615000px;}
.x7c{left:618.659981px;}
.x61{left:621.615000px;}
.x78{left:627.735000px;}
.x19{left:650.054987px;}
.x82{left:652.140000px;}
.x93{left:657.899981px;}
.x1a{left:668.804987px;}
.x6e{left:677.085000px;}
.x4{left:696.524987px;}
.x73{left:726.045000px;}
.x83{left:739.650000px;}
.x1b{left:749.084987px;}
.x1c{left:768.209987px;}
.x84{left:818.895000px;}
.x85{left:929.055000px;}
.x89{left:1039.245000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v2{vertical-align:24.320000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls2{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.376533pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.445440pt;}
.ls3{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls19{letter-spacing:5.760000pt;}
.lsa{letter-spacing:15.488000pt;}
.ls17{letter-spacing:15.616000pt;}
.lsb{letter-spacing:19.338667pt;}
.ls18{letter-spacing:19.456000pt;}
.ls8{letter-spacing:27.018667pt;}
.ls9{letter-spacing:28.416000pt;}
.ls4{letter-spacing:29.578667pt;}
.lsf{letter-spacing:29.654016pt;}
.ls10{letter-spacing:29.717760pt;}
.lse{letter-spacing:46.218667pt;}
.ls14{letter-spacing:73.098667pt;}
.ls0{letter-spacing:172.298667pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.552000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws3{word-spacing:-11.773227pt;}
.ws9{word-spacing:-10.560000pt;}
.ws2{word-spacing:0.000000pt;}
._1b{margin-left:-5.422080pt;}
._15{margin-left:-3.916800pt;}
._d{margin-left:-3.000320pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._3{width:2.253653pt;}
._7{width:3.185493pt;}
._11{width:4.229973pt;}
._b{width:5.120000pt;}
._c{width:6.272000pt;}
._f{width:8.000000pt;}
._1c{width:8.901120pt;}
._e{width:9.792000pt;}
._18{width:10.880000pt;}
._14{width:11.875840pt;}
._13{width:12.928000pt;}
._a{width:14.243840pt;}
._1d{width:16.074240pt;}
._16{width:17.236480pt;}
._10{width:18.304000pt;}
._6{width:19.520000pt;}
._5{width:20.672000pt;}
._4{width:21.923840pt;}
._19{width:22.840320pt;}
._17{width:23.744000pt;}
._8{width:25.728000pt;}
._9{width:26.659840pt;}
._1a{width:28.106667pt;}
._21{width:29.337173pt;}
._24{width:34.368000pt;}
._25{width:36.003840pt;}
._22{width:37.552640pt;}
._12{width:40.192000pt;}
._1e{width:42.982400pt;}
._23{width:69.552640pt;}
._20{width:169.280000pt;}
._1f{width:207.616000pt;}
.fs6{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:59.008000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.y1bb{bottom:-19.520000pt;}
.y0{bottom:0.000000pt;}
.y1ba{bottom:7.400000pt;}
.ye0{bottom:12.480000pt;}
.y1b7{bottom:12.482667pt;}
.y10d{bottom:12.506667pt;}
.y1c8{bottom:12.514667pt;}
.ye3{bottom:12.520000pt;}
.yec{bottom:12.800000pt;}
.y108{bottom:12.840000pt;}
.ycf{bottom:13.853333pt;}
.y178{bottom:26.240000pt;}
.y191{bottom:26.266667pt;}
.y1ca{bottom:26.280000pt;}
.y18d{bottom:26.560000pt;}
.y1b5{bottom:26.586667pt;}
.y1b2{bottom:26.600000pt;}
.y1d3{bottom:27.200000pt;}
.y176{bottom:30.400000pt;}
.y12e{bottom:40.000000pt;}
.y1a8{bottom:40.026667pt;}
.y1a9{bottom:40.040000pt;}
.y16f{bottom:40.320000pt;}
.y185{bottom:40.346667pt;}
.y17b{bottom:40.360000pt;}
.y1a6{bottom:41.320000pt;}
.y1d2{bottom:45.120000pt;}
.y18b{bottom:45.786667pt;}
.y1a1{bottom:50.592000pt;}
.y7{bottom:50.880000pt;}
.y1a4{bottom:55.080000pt;}
.y175{bottom:57.920000pt;}
.y17a{bottom:67.880000pt;}
.y1a5{bottom:68.840000pt;}
.y16d{bottom:70.400000pt;}
.y183{bottom:70.426667pt;}
.y1c4{bottom:71.714667pt;}
.y18a{bottom:73.306667pt;}
.y174{bottom:85.800000pt;}
.yd6{bottom:88.706667pt;}
.y17f{bottom:95.392000pt;}
.y149{bottom:97.632000pt;}
.y77{bottom:98.272000pt;}
.y1b8{bottom:99.232000pt;}
.y1c3{bottom:99.261333pt;}
.y189{bottom:100.826667pt;}
.y60{bottom:102.112000pt;}
.y7f{bottom:105.632000pt;}
.yb2{bottom:107.552000pt;}
.y164{bottom:110.752000pt;}
.y173{bottom:113.320000pt;}
.ycd{bottom:113.632000pt;}
.y45{bottom:118.432000pt;}
.y111{bottom:121.632000pt;}
.y17e{bottom:123.232000pt;}
.y148{bottom:125.152000pt;}
.y76{bottom:125.792000pt;}
.y1c2{bottom:126.752000pt;}
.yf7{bottom:127.392000pt;}
.y20b{bottom:127.712000pt;}
.y188{bottom:128.346667pt;}
.y1aa{bottom:128.704000pt;}
.y5f{bottom:129.632000pt;}
.y99{bottom:131.552000pt;}
.y7e{bottom:133.152000pt;}
.yb1{bottom:135.386667pt;}
.y163{bottom:136.026667pt;}
.y172{bottom:140.840000pt;}
.ycc{bottom:141.146667pt;}
.y223{bottom:144.666667pt;}
.y44{bottom:145.946667pt;}
.y1ee{bottom:148.826667pt;}
.y110{bottom:149.466667pt;}
.y17d{bottom:150.746667pt;}
.y147{bottom:152.666667pt;}
.y75{bottom:153.306667pt;}
.yf6{bottom:154.906667pt;}
.y20a{bottom:155.226667pt;}
.y187{bottom:156.226667pt;}
.y5e{bottom:157.146667pt;}
.y1b6{bottom:158.466667pt;}
.y98{bottom:159.066667pt;}
.y7d{bottom:160.986667pt;}
.y24{bottom:162.586667pt;}
.yb0{bottom:162.906667pt;}
.y162{bottom:164.506667pt;}
.y171{bottom:168.360000pt;}
.ycb{bottom:168.986667pt;}
.yd3{bottom:169.373333pt;}
.yd0{bottom:171.840000pt;}
.y222{bottom:172.186667pt;}
.y43{bottom:173.786667pt;}
.y1ed{bottom:176.706667pt;}
.y10f{bottom:177.026667pt;}
.y12c{bottom:178.306667pt;}
.y146{bottom:180.226667pt;}
.y74{bottom:180.866667pt;}
.yf5{bottom:182.466667pt;}
.y209{bottom:182.786667pt;}
.y186{bottom:183.746667pt;}
.y5d{bottom:185.026667pt;}
.y1c7{bottom:185.986667pt;}
.y97{bottom:186.626667pt;}
.y1ab{bottom:187.269333pt;}
.y1b4{bottom:187.906667pt;}
.y23{bottom:190.146667pt;}
.yaf{bottom:190.466667pt;}
.y161{bottom:192.706667pt;}
.yd1{bottom:196.253333pt;}
.y221{bottom:199.746667pt;}
.y42{bottom:201.346667pt;}
.y1ec{bottom:204.226667pt;}
.y7c{bottom:204.546667pt;}
.y12b{bottom:205.826667pt;}
.yd8{bottom:206.786667pt;}
.y145{bottom:208.066667pt;}
.y73{bottom:208.706667pt;}
.yf4{bottom:210.306667pt;}
.y208{bottom:210.626667pt;}
.y5c{bottom:212.546667pt;}
.y19e{bottom:213.826667pt;}
.y96{bottom:214.146667pt;}
.y22{bottom:217.666667pt;}
.y160{bottom:220.866667pt;}
.y220{bottom:227.266667pt;}
.y41{bottom:228.866667pt;}
.yae{bottom:231.746667pt;}
.y7b{bottom:232.066667pt;}
.yd7{bottom:233.666667pt;}
.y144{bottom:235.586667pt;}
.y72{bottom:236.226667pt;}
.yf3{bottom:237.826667pt;}
.y207{bottom:238.146667pt;}
.y5b{bottom:240.066667pt;}
.y95{bottom:241.986667pt;}
.y1c6{bottom:243.293333pt;}
.y21{bottom:245.186667pt;}
.y1b3{bottom:245.213333pt;}
.yca{bottom:248.066667pt;}
.y15f{bottom:249.346667pt;}
.y19d{bottom:249.666667pt;}
.y21f{bottom:255.106667pt;}
.yad{bottom:259.266667pt;}
.y7a{bottom:259.586667pt;}
.y10e{bottom:259.906667pt;}
.yd5{bottom:260.546667pt;}
.y143{bottom:260.866667pt;}
.y12a{bottom:261.186667pt;}
.y40{bottom:264.386667pt;}
.yf2{bottom:265.666667pt;}
.y5a{bottom:267.586667pt;}
.y94{bottom:269.506667pt;}
.y1c5{bottom:272.733333pt;}
.y20{bottom:273.026667pt;}
.y1b1{bottom:274.653333pt;}
.y19c{bottom:277.186667pt;}
.y15e{bottom:277.506667pt;}
.yce{bottom:277.760000pt;}
.y71{bottom:279.746667pt;}
.y21e{bottom:282.626667pt;}
.yc9{bottom:283.586667pt;}
.y10c{bottom:285.186667pt;}
.yac{bottom:286.786667pt;}
.y79{bottom:287.106667pt;}
.yd4{bottom:287.453333pt;}
.y129{bottom:288.733333pt;}
.y142{bottom:289.373333pt;}
.y17c{bottom:290.653333pt;}
.yf1{bottom:290.973333pt;}
.y206{bottom:293.213333pt;}
.y59{bottom:295.133333pt;}
.y93{bottom:297.053333pt;}
.y1f{bottom:300.573333pt;}
.y1c1{bottom:302.533333pt;}
.y19b{bottom:304.733333pt;}
.y70{bottom:307.293333pt;}
.y21d{bottom:310.173333pt;}
.y3f{bottom:310.493333pt;}
.y1cf{bottom:311.173333pt;}
.y10b{bottom:313.373333pt;}
.yab{bottom:314.333333pt;}
.y1eb{bottom:314.653333pt;}
.y78{bottom:314.973333pt;}
.y128{bottom:316.253333pt;}
.y141{bottom:317.533333pt;}
.yf0{bottom:319.133333pt;}
.yc8{bottom:319.453333pt;}
.y170{bottom:320.093333pt;}
.y205{bottom:321.053333pt;}
.y58{bottom:322.973333pt;}
.y1e{bottom:328.093333pt;}
.y1b0{bottom:331.973333pt;}
.y19a{bottom:332.253333pt;}
.y6f{bottom:335.133333pt;}
.y21c{bottom:337.693333pt;}
.y3e{bottom:338.013333pt;}
.y1ce{bottom:339.013333pt;}
.y92{bottom:340.573333pt;}
.yd2{bottom:341.213333pt;}
.y10a{bottom:341.853333pt;}
.yaa{bottom:342.173333pt;}
.y127{bottom:344.093333pt;}
.y15d{bottom:345.373333pt;}
.y140{bottom:345.693333pt;}
.yef{bottom:347.293333pt;}
.y204{bottom:348.573333pt;}
.y57{bottom:350.493333pt;}
.yc7{bottom:354.973333pt;}
.y1d{bottom:355.613333pt;}
.y199{bottom:360.093333pt;}
.y1af{bottom:361.733333pt;}
.y6e{bottom:362.653333pt;}
.y3d{bottom:365.533333pt;}
.y1cd{bottom:366.560000pt;}
.y91{bottom:368.413333pt;}
.y1ea{bottom:369.693333pt;}
.y109{bottom:370.013333pt;}
.y126{bottom:371.613333pt;}
.y13f{bottom:374.173333pt;}
.y15c{bottom:375.453333pt;}
.yee{bottom:375.773333pt;}
.y203{bottom:376.093333pt;}
.y56{bottom:378.013333pt;}
.ya9{bottom:380.253333pt;}
.y179{bottom:380.573333pt;}
.y1c{bottom:383.453333pt;}
.y198{bottom:387.613333pt;}
.y6d{bottom:390.173333pt;}
.yc6{bottom:390.493333pt;}
.y1ae{bottom:391.200000pt;}
.y21b{bottom:393.053333pt;}
.y3c{bottom:393.373333pt;}
.y1cc{bottom:394.080000pt;}
.y90{bottom:395.933333pt;}
.y1e9{bottom:397.533333pt;}
.y107{bottom:398.173333pt;}
.y125{bottom:399.133333pt;}
.y13e{bottom:402.373333pt;}
.y15b{bottom:403.333333pt;}
.y202{bottom:403.653333pt;}
.yed{bottom:403.973333pt;}
.y55{bottom:405.573333pt;}
.ya8{bottom:407.813333pt;}
.y1b{bottom:411.013333pt;}
.y197{bottom:415.173333pt;}
.y6c{bottom:417.733333pt;}
.y1c0{bottom:418.720000pt;}
.yc5{bottom:419.653333pt;}
.y21a{bottom:420.613333pt;}
.y3b{bottom:420.933333pt;}
.y1cb{bottom:421.920000pt;}
.y8f{bottom:423.493333pt;}
.y124{bottom:424.773333pt;}
.y1e8{bottom:425.093333pt;}
.y106{bottom:426.693333pt;}
.y13d{bottom:430.533333pt;}
.y15a{bottom:430.853333pt;}
.y201{bottom:431.173333pt;}
.yeb{bottom:432.133333pt;}
.y54{bottom:433.413333pt;}
.ya7{bottom:435.653333pt;}
.y1a{bottom:438.533333pt;}
.yc4{bottom:440.773333pt;}
.y196{bottom:442.693333pt;}
.y3a{bottom:448.453333pt;}
.y1ad{bottom:448.506667pt;}
.y8e{bottom:451.013333pt;}
.y1e7{bottom:452.613333pt;}
.y123{bottom:452.933333pt;}
.y105{bottom:454.853333pt;}
.y219{bottom:456.133333pt;}
.y6b{bottom:457.413333pt;}
.y159{bottom:458.373333pt;}
.y13c{bottom:459.013333pt;}
.yea{bottom:460.613333pt;}
.y53{bottom:460.933333pt;}
.ya6{bottom:463.173333pt;}
.y19{bottom:466.053333pt;}
.y177{bottom:466.373333pt;}
.yc3{bottom:469.893333pt;}
.y195{bottom:470.533333pt;}
.y39{bottom:475.973333pt;}
.y1ac{bottom:477.946667pt;}
.y1e6{bottom:480.133333pt;}
.y122{bottom:481.093333pt;}
.y104{bottom:483.013333pt;}
.y158{bottom:483.973333pt;}
.y200{bottom:486.533333pt;}
.y52{bottom:488.453333pt;}
.ye9{bottom:488.773333pt;}
.ya5{bottom:490.693333pt;}
.yc2{bottom:491.333333pt;}
.y8d{bottom:491.973333pt;}
.y6a{bottom:492.933333pt;}
.y18{bottom:496.133333pt;}
.y194{bottom:498.053333pt;}
.y218{bottom:499.973333pt;}
.y38{bottom:503.813333pt;}
.y1bf{bottom:505.786667pt;}
.y1a3{bottom:507.706667pt;}
.y1e5{bottom:507.973333pt;}
.y121{bottom:509.573333pt;}
.y103{bottom:511.520000pt;}
.y157{bottom:512.160000pt;}
.yc1{bottom:512.480000pt;}
.y1ff{bottom:514.080000pt;}
.y51{bottom:516.000000pt;}
.y8c{bottom:519.840000pt;}
.y69{bottom:520.800000pt;}
.y17{bottom:523.680000pt;}
.y16c{bottom:524.000000pt;}
.y193{bottom:525.280000pt;}
.y13b{bottom:526.560000pt;}
.y217{bottom:527.520000pt;}
.ye8{bottom:529.120000pt;}
.y37{bottom:531.360000pt;}
.yc0{bottom:533.600000pt;}
.ya4{bottom:533.920000pt;}
.y1be{bottom:535.266667pt;}
.y1e4{bottom:535.520000pt;}
.y120{bottom:537.760000pt;}
.y102{bottom:539.680000pt;}
.y156{bottom:540.320000pt;}
.y1fe{bottom:541.600000pt;}
.y50{bottom:543.840000pt;}
.y8b{bottom:547.360000pt;}
.y68{bottom:548.320000pt;}
.y16{bottom:551.200000pt;}
.y13a{bottom:554.400000pt;}
.ybf{bottom:554.720000pt;}
.y192{bottom:555.040000pt;}
.y36{bottom:558.880000pt;}
.ye7{bottom:559.200000pt;}
.ya3{bottom:561.760000pt;}
.y1e3{bottom:563.040000pt;}
.y1a7{bottom:565.026667pt;}
.y11f{bottom:565.920000pt;}
.y155{bottom:568.480000pt;}
.y1fd{bottom:569.440000pt;}
.y4f{bottom:571.360000pt;}
.y8a{bottom:574.880000pt;}
.y67{bottom:575.840000pt;}
.y15{bottom:579.040000pt;}
.y101{bottom:580.000000pt;}
.y16e{bottom:581.920000pt;}
.y216{bottom:582.560000pt;}
.y139{bottom:584.480000pt;}
.y35{bottom:586.400000pt;}
.ye6{bottom:586.720000pt;}
.ya2{bottom:589.280000pt;}
.y1e2{bottom:590.560000pt;}
.y11e{bottom:594.080000pt;}
.y1c9{bottom:594.466667pt;}
.y154{bottom:596.960000pt;}
.y4e{bottom:598.880000pt;}
.y89{bottom:602.400000pt;}
.y66{bottom:603.360000pt;}
.ybe{bottom:604.960000pt;}
.y14{bottom:606.560000pt;}
.y100{bottom:610.080000pt;}
.y215{bottom:610.400000pt;}
.y138{bottom:612.000000pt;}
.y34{bottom:614.240000pt;}
.y190{bottom:614.880000pt;}
.ya1{bottom:616.800000pt;}
.y1e1{bottom:618.400000pt;}
.y1a2{bottom:622.013333pt;}
.y1fc{bottom:624.506667pt;}
.y16b{bottom:624.826667pt;}
.y153{bottom:625.146667pt;}
.ybd{bottom:626.106667pt;}
.y4d{bottom:626.426667pt;}
.y88{bottom:630.266667pt;}
.y22a{bottom:632.186667pt;}
.y13{bottom:634.106667pt;}
.y11d{bottom:634.426667pt;}
.yff{bottom:637.626667pt;}
.y214{bottom:637.946667pt;}
.y65{bottom:639.226667pt;}
.y137{bottom:639.866667pt;}
.y33{bottom:641.786667pt;}
.ye5{bottom:642.106667pt;}
.y1e0{bottom:645.946667pt;}
.ybc{bottom:647.226667pt;}
.y1fb{bottom:652.026667pt;}
.y16a{bottom:652.346667pt;}
.y152{bottom:653.306667pt;}
.y4c{bottom:654.266667pt;}
.ya0{bottom:660.346667pt;}
.y12{bottom:661.626667pt;}
.y11c{bottom:664.826667pt;}
.yfe{bottom:665.466667pt;}
.y87{bottom:665.786667pt;}
.ye4{bottom:667.386667pt;}
.ybb{bottom:668.666667pt;}
.y32{bottom:669.306667pt;}
.y1b9{bottom:671.613333pt;}
.y18f{bottom:672.826667pt;}
.y1df{bottom:673.466667pt;}
.y229{bottom:675.706667pt;}
.y1fa{bottom:679.866667pt;}
.y4b{bottom:681.786667pt;}
.y64{bottom:682.746667pt;}
.y11{bottom:689.466667pt;}
.yba{bottom:689.786667pt;}
.yfd{bottom:690.746667pt;}
.y11b{bottom:692.346667pt;}
.y213{bottom:692.986667pt;}
.y86{bottom:693.306667pt;}
.y151{bottom:693.626667pt;}
.y136{bottom:694.906667pt;}
.y9f{bottom:695.866667pt;}
.y31{bottom:696.826667pt;}
.y1de{bottom:700.986667pt;}
.y228{bottom:703.866667pt;}
.y1f9{bottom:707.386667pt;}
.y4a{bottom:709.306667pt;}
.y63{bottom:710.266667pt;}
.yb9{bottom:710.906667pt;}
.y1a0{bottom:714.533333pt;}
.y1bd{bottom:714.853333pt;}
.y10{bottom:716.986667pt;}
.y169{bottom:718.266667pt;}
.yfc{bottom:718.906667pt;}
.y11a{bottom:719.866667pt;}
.y85{bottom:720.826667pt;}
.y135{bottom:722.746667pt;}
.y9e{bottom:723.386667pt;}
.ye2{bottom:724.026667pt;}
.y1dd{bottom:728.826667pt;}
.y18e{bottom:730.746667pt;}
.y227{bottom:731.386667pt;}
.y19f{bottom:732.453333pt;}
.y30{bottom:732.666667pt;}
.y1bc{bottom:733.733333pt;}
.y1f8{bottom:734.946667pt;}
.y49{bottom:736.866667pt;}
.yb8{bottom:740.066667pt;}
.yf{bottom:744.546667pt;}
.y168{bottom:746.146667pt;}
.yfb{bottom:747.426667pt;}
.y119{bottom:747.746667pt;}
.y134{bottom:748.066667pt;}
.y212{bottom:748.386667pt;}
.y84{bottom:748.706667pt;}
.y9d{bottom:750.946667pt;}
.y62{bottom:751.266667pt;}
.y150{bottom:751.586667pt;}
.ye1{bottom:752.226667pt;}
.y1dc{bottom:756.386667pt;}
.y226{bottom:758.946667pt;}
.y2f{bottom:760.226667pt;}
.y18c{bottom:760.866667pt;}
.yb7{bottom:761.186667pt;}
.y1f7{bottom:762.466667pt;}
.y48{bottom:764.706667pt;}
.ye{bottom:772.066667pt;}
.y118{bottom:773.026667pt;}
.yfa{bottom:775.586667pt;}
.y211{bottom:775.906667pt;}
.y133{bottom:776.226667pt;}
.y61{bottom:778.786667pt;}
.y14f{bottom:779.106667pt;}
.ydf{bottom:780.706667pt;}
.yb6{bottom:782.306667pt;}
.y1db{bottom:783.906667pt;}
.y83{bottom:784.226667pt;}
.y225{bottom:786.466667pt;}
.y1f6{bottom:790.306667pt;}
.y47{bottom:792.226667pt;}
.yd{bottom:799.906667pt;}
.y117{bottom:801.186667pt;}
.yb5{bottom:803.426667pt;}
.y2e{bottom:803.746667pt;}
.y132{bottom:804.706667pt;}
.y9c{bottom:806.306667pt;}
.y14e{bottom:806.946667pt;}
.y1da{bottom:811.426667pt;}
.y82{bottom:811.746667pt;}
.y224{bottom:814.306667pt;}
.y1f5{bottom:817.826667pt;}
.y182{bottom:818.786667pt;}
.y46{bottom:819.746667pt;}
.yde{bottom:820.706667pt;}
.yb4{bottom:824.546667pt;}
.y116{bottom:829.346667pt;}
.y167{bottom:831.266667pt;}
.yf9{bottom:832.226667pt;}
.y131{bottom:832.866667pt;}
.y9b{bottom:833.826667pt;}
.yc{bottom:835.426667pt;}
.y81{bottom:839.266667pt;}
.y210{bottom:841.826667pt;}
.y1f4{bottom:845.346667pt;}
.yb3{bottom:845.666667pt;}
.y2d{bottom:847.293333pt;}
.ydd{bottom:851.133333pt;}
.y115{bottom:857.853333pt;}
.y166{bottom:859.133333pt;}
.y14d{bottom:860.413333pt;}
.y130{bottom:861.053333pt;}
.y9a{bottom:861.693333pt;}
.yb{bottom:865.213333pt;}
.y1d9{bottom:866.813333pt;}
.y80{bottom:867.133333pt;}
.y20f{bottom:869.373333pt;}
.yf8{bottom:872.573333pt;}
.y1f3{bottom:872.893333pt;}
.y2c{bottom:875.133333pt;}
.y184{bottom:876.733333pt;}
.y114{bottom:886.013333pt;}
.ydc{bottom:886.653333pt;}
.y14c{bottom:888.573333pt;}
.y12f{bottom:889.213333pt;}
.y1d8{bottom:894.333333pt;}
.y20e{bottom:896.893333pt;}
.ya{bottom:897.533333pt;}
.y1f2{bottom:900.733333pt;}
.y2b{bottom:902.653333pt;}
.ydb{bottom:914.173333pt;}
.y14b{bottom:917.053333pt;}
.y12d{bottom:917.693333pt;}
.y181{bottom:919.613333pt;}
.y1d7{bottom:921.853333pt;}
.y165{bottom:922.173333pt;}
.y20d{bottom:924.733333pt;}
.y9{bottom:927.293333pt;}
.y2a{bottom:930.173333pt;}
.y1f1{bottom:936.253333pt;}
.yda{bottom:941.693333pt;}
.y113{bottom:942.653333pt;}
.y14a{bottom:945.213333pt;}
.y180{bottom:947.133333pt;}
.y1d6{bottom:949.693333pt;}
.y20c{bottom:952.253333pt;}
.y8{bottom:955.133333pt;}
.y29{bottom:957.693333pt;}
.y6{bottom:974.053333pt;}
.y1d5{bottom:977.253333pt;}
.yd9{bottom:977.573333pt;}
.y1f0{bottom:979.813333pt;}
.y112{bottom:983.013333pt;}
.y28{bottom:985.573333pt;}
.y5{bottom:992.933333pt;}
.y1d4{bottom:1004.773333pt;}
.y1ef{bottom:1007.333333pt;}
.y4{bottom:1009.893333pt;}
.y27{bottom:1013.093333pt;}
.y1d1{bottom:1026.213333pt;}
.y3{bottom:1026.533333pt;}
.y2{bottom:1042.853333pt;}
.y26{bottom:1043.813333pt;}
.y1{bottom:1061.413333pt;}
.y1d0{bottom:1062.373333pt;}
.y25{bottom:1062.693333pt;}
.h24{height:24.032000pt;}
.h11{height:27.520000pt;}
.h12{height:27.552000pt;}
.h13{height:27.840000pt;}
.h14{height:27.872000pt;}
.hc{height:29.440000pt;}
.h5{height:42.578750pt;}
.h4{height:43.642500pt;}
.hf{height:44.706250pt;}
.hd{height:44.803437pt;}
.h8{height:46.281250pt;}
.hb{height:47.406250pt;}
.h3{height:47.437500pt;}
.h25{height:48.558750pt;}
.h9{height:51.937500pt;}
.h7{height:52.750000pt;}
.h23{height:54.865625pt;}
.h26{height:55.025625pt;}
.h1d{height:55.040000pt;}
.ha{height:55.046250pt;}
.h15{height:55.072000pt;}
.h17{height:55.360000pt;}
.h1b{height:55.392000pt;}
.h21{height:56.038750pt;}
.h2{height:58.563750pt;}
.h10{height:58.691063pt;}
.h6{height:60.247500pt;}
.h19{height:82.912000pt;}
.h16{height:85.440000pt;}
.h1a{height:85.472000pt;}
.h20{height:112.384000pt;}
.h27{height:173.533333pt;}
.h18{height:201.346667pt;}
.he{height:222.400000pt;}
.h1c{height:231.746667pt;}
.h22{height:377.093333pt;}
.h1f{height:793.333333pt;}
.h1e{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:51.552000pt;}
.w29{width:51.840000pt;}
.w2a{width:52.512000pt;}
.w36{width:62.400000pt;}
.w34{width:68.512000pt;}
.w24{width:71.392000pt;}
.w37{width:75.552000pt;}
.w35{width:80.992000pt;}
.w3a{width:83.232000pt;}
.w2b{width:85.792000pt;}
.w38{width:96.000000pt;}
.w39{width:96.032000pt;}
.w25{width:97.312000pt;}
.w1a{width:99.552000pt;}
.w17{width:104.992000pt;}
.w14{width:107.872000pt;}
.w11{width:117.824000pt;}
.we{width:120.064000pt;}
.w1c{width:122.944000pt;}
.w2c{width:130.944000pt;}
.w2d{width:131.264000pt;}
.w1b{width:146.626667pt;}
.w9{width:146.946667pt;}
.w20{width:153.346667pt;}
.w18{width:154.626667pt;}
.w15{width:159.426667pt;}
.wc{width:161.986667pt;}
.w5{width:164.226667pt;}
.w12{width:174.466667pt;}
.wf{width:177.346667pt;}
.w6{width:177.373333pt;}
.w3b{width:177.946667pt;}
.w1d{width:193.986667pt;}
.wb{width:202.013333pt;}
.wa{width:217.373333pt;}
.w3{width:222.080000pt;}
.w1f{width:223.453333pt;}
.w21{width:226.653333pt;}
.w8{width:239.133333pt;}
.w7{width:261.853333pt;}
.w33{width:263.426667pt;}
.w26{width:264.133333pt;}
.w27{width:279.773333pt;}
.w1e{width:286.533333pt;}
.wd{width:305.733333pt;}
.w10{width:311.173333pt;}
.w13{width:336.133333pt;}
.w16{width:343.840000pt;}
.w19{width:356.960000pt;}
.w23{width:444.026667pt;}
.w3c{width:465.733333pt;}
.w2e{width:599.613333pt;}
.w4{width:605.053333pt;}
.w22{width:614.333333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w32{width:923.453333pt;}
.w31{width:1122.559983pt;}
.w2f{width:1122.560000pt;}
.w30{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x70{left:4.160000pt;}
.x80{left:6.400000pt;}
.x27{left:7.360000pt;}
.x22{left:9.786667pt;}
.x8e{left:12.160000pt;}
.x8f{left:13.120000pt;}
.x76{left:14.106667pt;}
.x74{left:15.360000pt;}
.x88{left:16.986667pt;}
.x72{left:19.520000pt;}
.x8a{left:21.120000pt;}
.x5e{left:22.432000pt;}
.x57{left:24.320000pt;}
.x50{left:25.600000pt;}
.x6f{left:27.520000pt;}
.x87{left:29.786667pt;}
.x4a{left:30.746667pt;}
.x42{left:31.706667pt;}
.x8c{left:32.640000pt;}
.x54{left:33.632000pt;}
.x59{left:35.200000pt;}
.x7a{left:36.800000pt;}
.x24{left:38.306667pt;}
.x8b{left:40.640000pt;}
.x62{left:41.600000pt;}
.x5a{left:44.160000pt;}
.x30{left:45.146667pt;}
.x44{left:46.720000pt;}
.x5c{left:48.320000pt;}
.x52{left:49.600000pt;}
.x4c{left:50.586667pt;}
.x45{left:51.866667pt;}
.x39{left:52.800000pt;}
.x4d{left:54.746667pt;}
.x46{left:55.706667pt;}
.x20{left:58.306667pt;}
.x5d{left:59.226667pt;}
.x29{left:60.520000pt;}
.x53{left:61.466667pt;}
.x5b{left:63.066667pt;}
.x33{left:65.306667pt;}
.x32{left:66.920000pt;}
.x86{left:68.186667pt;}
.x34{left:69.146667pt;}
.x47{left:70.426667pt;}
.x6a{left:71.400000pt;}
.x3b{left:72.666667pt;}
.xb{left:74.591988pt;}
.x3d{left:76.826667pt;}
.x3a{left:77.800000pt;}
.x2c{left:80.360000pt;}
.x6c{left:85.152000pt;}
.x8d{left:86.760000pt;}
.x2b{left:89.320000pt;}
.x36{left:90.920000pt;}
.x66{left:92.840000pt;}
.x2{left:94.431988pt;}
.x7b{left:95.394667pt;}
.x7{left:96.671988pt;}
.x1f{left:97.600000pt;}
.x35{left:98.920000pt;}
.x3f{left:101.480000pt;}
.x6b{left:103.080000pt;}
.x3c{left:105.640000pt;}
.x3e{left:109.480000pt;}
.x1e{left:113.631988pt;}
.x1d{left:115.551988pt;}
.x2d{left:117.160000pt;}
.xd{left:118.463988pt;}
.x68{left:120.701333pt;}
.x4e{left:124.541333pt;}
.x65{left:129.026667pt;}
.xa{left:132.223988pt;}
.x67{left:133.186667pt;}
.xe{left:142.466655pt;}
.x48{left:182.181333pt;}
.x8{left:209.373322pt;}
.x3{left:214.813322pt;}
.x40{left:216.741333pt;}
.x63{left:218.013333pt;}
.x37{left:221.541333pt;}
.xf{left:224.093322pt;}
.x79{left:230.173333pt;}
.x91{left:232.706667pt;}
.x26{left:234.981333pt;}
.x2e{left:237.221333pt;}
.x92{left:238.786650pt;}
.x10{left:241.053322pt;}
.x11{left:258.333322pt;}
.x28{left:259.293333pt;}
.x9{left:268.253322pt;}
.x55{left:271.168000pt;}
.x5f{left:273.088000pt;}
.x12{left:275.333322pt;}
.x38{left:297.413333pt;}
.x69{left:318.533333pt;}
.x13{left:328.773322pt;}
.x2f{left:334.213333pt;}
.x14{left:345.733322pt;}
.x7e{left:361.693333pt;}
.x90{left:362.973333pt;}
.x71{left:364.000000pt;}
.x7d{left:372.901333pt;}
.x5{left:385.119988pt;}
.x1{left:396.959988pt;}
.x41{left:401.120000pt;}
.x49{left:406.240000pt;}
.x64{left:412.640000pt;}
.x75{left:417.120000pt;}
.xc{left:420.639988pt;}
.x4f{left:431.226667pt;}
.x7f{left:432.133333pt;}
.x2a{left:437.306667pt;}
.x56{left:438.906667pt;}
.x15{left:445.626655pt;}
.x60{left:452.346667pt;}
.x6{left:460.666655pt;}
.x16{left:462.906655pt;}
.x77{left:470.906667pt;}
.x21{left:472.320000pt;}
.x31{left:481.786667pt;}
.x17{left:489.146655pt;}
.x23{left:495.866655pt;}
.x18{left:506.106655pt;}
.x25{left:510.626655pt;}
.x81{left:515.040000pt;}
.x43{left:521.826667pt;}
.x4b{left:524.706667pt;}
.x6d{left:529.826667pt;}
.x51{left:539.746667pt;}
.x58{left:544.546667pt;}
.x7c{left:549.919983pt;}
.x61{left:552.546667pt;}
.x78{left:557.986667pt;}
.x19{left:577.826655pt;}
.x82{left:579.680000pt;}
.x93{left:584.799983pt;}
.x1a{left:594.493322pt;}
.x6e{left:601.853333pt;}
.x4{left:619.133322pt;}
.x73{left:645.373333pt;}
.x83{left:657.466667pt;}
.x1b{left:665.853322pt;}
.x1c{left:682.853322pt;}
.x84{left:727.906667pt;}
.x85{left:825.826667pt;}
.x89{left:923.773333pt;}
}




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