
    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_4af8174f233e8e9b63713539.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149414;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_9d65d8885dcf8d7a3259698b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a29b3610d490fc2589b7b8d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_aea67580543ff2f658a75afb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_0a8f7c9c8fe222462d8d056b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.052734;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_1306d2a15718e143d16af185.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_64f759c53913e9b72700d9fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_4bf6e87f8fa89ef72cb2d3c7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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_2737e011beaea4686ef0e860.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_ea0f5cb3630a290bcae3295f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_024e9a1757b33cde3eada5d8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_03a01c5739a3d7eaeadb97dc.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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_953c637f352080cf58f3acd2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_8c7526921a6730b819fd5af0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.065430;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff14{font-family:ff14;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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;}
.lsc{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.584400px;}
.ls20{letter-spacing:-0.373200px;}
.ls9{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.229200px;}
.ls16{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.097800px;}
.lsa{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.044640px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.lse{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.ls21{letter-spacing:0.233280px;}
.ls1d{letter-spacing:0.244200px;}
.ls17{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.306600px;}
.ls18{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.362160px;}
.ls13{letter-spacing:0.504000px;}
.ls22{letter-spacing:0.666720px;}
.ls3{letter-spacing:0.786240px;}
.ls1e{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.ls1a{letter-spacing:64.026720px;}
.lsd{letter-spacing:66.906720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws1e{word-spacing:-21.067200px;}
.ws18{word-spacing:-18.532800px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsf{word-spacing:-15.444000px;}
.ws3{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.ws13{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.733600px;}
.ws4{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.328000px;}
.ws8{word-spacing:-14.166000px;}
.ws9{word-spacing:-13.147200px;}
.ws0{word-spacing:-12.186000px;}
.ws15{word-spacing:-11.880000px;}
.wsa{word-spacing:0.000000px;}
.ws19{word-spacing:88.320000px;}
.ws14{word-spacing:88.380000px;}
.ws16{word-spacing:91.518000px;}
.ws1c{word-spacing:91.722000px;}
.ws1a{word-spacing:257.489424px;}
.ws1b{word-spacing:257.741424px;}
.ws1d{word-spacing:673.578000px;}
.ws17{word-spacing:675.438000px;}
._15{margin-left:-8.339760px;}
._3{margin-left:-6.334560px;}
._13{margin-left:-4.677600px;}
._2{margin-left:-2.554320px;}
._0{margin-left:-1.068000px;}
._1{width:1.242000px;}
._6{width:2.748960px;}
._b{width:3.897360px;}
._12{width:4.947120px;}
._7{width:6.646320px;}
._5{width:7.975680px;}
._4{width:9.884880px;}
._a{width:11.293200px;}
._e{width:12.495600px;}
._9{width:13.677360px;}
._8{width:16.899840px;}
._f{width:18.378000px;}
._10{width:19.626480px;}
._19{width:20.809440px;}
._18{width:21.872160px;}
._1a{width:23.730000px;}
._17{width:25.398000px;}
._16{width:26.473680px;}
._d{width:28.435440px;}
._c{width:29.461680px;}
._11{width:43.859040px;}
._14{width:849.360000px;}
.fca{color:transparent;}
.fc4{color:rgb(227,108,10);}
.fc8{color:rgb(219,132,61);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc9{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(249,181,144);}
.fc0{color:rgb(23,54,93);}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs6{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y18{bottom:0.180000px;}
.y16{bottom:3.060000px;}
.y43{bottom:3.240000px;}
.y47{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.y133{bottom:7.740000px;}
.y136{bottom:7.770000px;}
.y13a{bottom:8.280000px;}
.yca{bottom:9.360000px;}
.yd3{bottom:9.540000px;}
.y46{bottom:9.720000px;}
.y1b7{bottom:10.440000px;}
.ye{bottom:10.620000px;}
.y1b5{bottom:11.520000px;}
.y1c6{bottom:11.700000px;}
.y192{bottom:12.570000px;}
.y129{bottom:12.675000px;}
.yc{bottom:13.860000px;}
.y19{bottom:14.085000px;}
.y12e{bottom:16.560000px;}
.y16f{bottom:16.740000px;}
.y16a{bottom:16.770000px;}
.ye5{bottom:16.815000px;}
.y11d{bottom:16.890000px;}
.y1af{bottom:16.920000px;}
.y187{bottom:16.950000px;}
.y166{bottom:16.995000px;}
.yb8{bottom:17.100000px;}
.y4{bottom:17.280000px;}
.yb4{bottom:17.640000px;}
.y15{bottom:18.720000px;}
.y97{bottom:19.080000px;}
.yc4{bottom:19.260000px;}
.y2{bottom:19.980000px;}
.y84{bottom:20.340000px;}
.y86{bottom:20.520000px;}
.y42{bottom:21.060000px;}
.y19f{bottom:23.220000px;}
.y45{bottom:23.760000px;}
.y131{bottom:25.740000px;}
.y134{bottom:25.770000px;}
.y138{bottom:26.280000px;}
.y1b3{bottom:27.180000px;}
.y1a1{bottom:27.360000px;}
.y1b1{bottom:27.570000px;}
.yba{bottom:28.080000px;}
.ycb{bottom:28.260000px;}
.y1a3{bottom:29.154000px;}
.y18b{bottom:29.595000px;}
.y121{bottom:29.700000px;}
.yb{bottom:30.240000px;}
.yc6{bottom:32.220000px;}
.ycf{bottom:32.580000px;}
.y12d{bottom:33.840000px;}
.y14{bottom:34.380000px;}
.yb2{bottom:37.800000px;}
.y41{bottom:39.960000px;}
.yd4{bottom:41.400000px;}
.ybf{bottom:41.625000px;}
.yb9{bottom:45.360000px;}
.ydb{bottom:45.645000px;}
.y168{bottom:46.230000px;}
.ya{bottom:46.620000px;}
.y161{bottom:47.085000px;}
.y113{bottom:47.265000px;}
.y184{bottom:47.340000px;}
.yc5{bottom:49.320000px;}
.y13{bottom:49.680000px;}
.yce{bottom:49.710000px;}
.yb1{bottom:55.080000px;}
.y189{bottom:56.085000px;}
.y18c{bottom:56.670000px;}
.ybd{bottom:56.925000px;}
.y1c0{bottom:57.240000px;}
.y5{bottom:57.600000px;}
.y40{bottom:58.860000px;}
.y122{bottom:59.400000px;}
.yd1{bottom:65.700000px;}
.yc2{bottom:66.060000px;}
.y12{bottom:68.580000px;}
.y114{bottom:69.120000px;}
.y148{bottom:69.150000px;}
.yc8{bottom:69.480000px;}
.yb0{bottom:72.360000px;}
.ydc{bottom:72.825000px;}
.y9{bottom:73.440000px;}
.ybc{bottom:74.025000px;}
.y1bf{bottom:74.565000px;}
.y162{bottom:76.860000px;}
.yb6{bottom:77.220000px;}
.y1a7{bottom:77.250000px;}
.y3f{bottom:77.940000px;}
.y1{bottom:78.696000px;}
.ycd{bottom:83.190000px;}
.yc1{bottom:83.340000px;}
.y18d{bottom:83.730000px;}
.y123{bottom:89.100000px;}
.yaf{bottom:89.490000px;}
.y115{bottom:91.005000px;}
.y149{bottom:91.050000px;}
.y100{bottom:92.730000px;}
.y8{bottom:93.090000px;}
.y11{bottom:94.320000px;}
.y3e{bottom:96.480000px;}
.y18a{bottom:96.660000px;}
.yfd{bottom:97.170000px;}
.ydd{bottom:100.050000px;}
.y163{bottom:106.590000px;}
.y1a8{bottom:107.250000px;}
.yff{bottom:110.370000px;}
.y18e{bottom:110.775000px;}
.yf7{bottom:111.390000px;}
.y7{bottom:111.450000px;}
.y116{bottom:112.890000px;}
.y14a{bottom:112.935000px;}
.y3d{bottom:113.940000px;}
.yfa{bottom:117.435000px;}
.y10{bottom:118.800000px;}
.y185{bottom:118.875000px;}
.yfc{bottom:121.860000px;}
.y182{bottom:123.555000px;}
.yad{bottom:125.496000px;}
.yde{bottom:127.230000px;}
.y9e{bottom:127.296000px;}
.yf6{bottom:129.030000px;}
.yd7{bottom:129.096000px;}
.y8b{bottom:129.276000px;}
.y17d{bottom:131.256000px;}
.y3c{bottom:131.400000px;}
.y117{bottom:134.745000px;}
.y14b{bottom:134.790000px;}
.yf9{bottom:135.075000px;}
.y7d{bottom:135.576000px;}
.y164{bottom:136.365000px;}
.y1a9{bottom:137.190000px;}
.y18f{bottom:137.850000px;}
.y55{bottom:139.536000px;}
.y1ac{bottom:140.580000px;}
.y103{bottom:141.585000px;}
.y1e5{bottom:142.056000px;}
.yac{bottom:142.776000px;}
.yd6{bottom:143.136000px;}
.yd8{bottom:143.820000px;}
.y1a2{bottom:145.836000px;}
.y8a{bottom:146.556000px;}
.y181{bottom:148.215000px;}
.y124{bottom:148.500000px;}
.y17c{bottom:148.536000px;}
.y3b{bottom:148.680000px;}
.yf8{bottom:152.715000px;}
.y17f{bottom:153.000000px;}
.ydf{bottom:154.410000px;}
.y54{bottom:156.630000px;}
.y14c{bottom:156.675000px;}
.y15f{bottom:157.710000px;}
.y102{bottom:159.225000px;}
.y1e4{bottom:159.330000px;}
.yab{bottom:160.050000px;}
.y89{bottom:160.590000px;}
.y190{bottom:164.910000px;}
.y17e{bottom:165.630000px;}
.y17b{bottom:165.810000px;}
.y3a{bottom:166.140000px;}
.y1aa{bottom:167.190000px;}
.y2a{bottom:170.100000px;}
.y1a5{bottom:172.260000px;}
.y53{bottom:173.910000px;}
.y16d{bottom:174.315000px;}
.y15e{bottom:174.990000px;}
.y1e3{bottom:176.430000px;}
.y101{bottom:176.865000px;}
.y186{bottom:176.910000px;}
.yaa{bottom:177.330000px;}
.y125{bottom:178.170000px;}
.y118{bottom:178.530000px;}
.y14d{bottom:178.560000px;}
.ye0{bottom:181.620000px;}
.y39{bottom:183.600000px;}
.y17a{bottom:184.170000px;}
.y29{bottom:184.680000px;}
.y1a0{bottom:189.750000px;}
.y52{bottom:191.190000px;}
.y16c{bottom:191.340000px;}
.ya9{bottom:191.370000px;}
.y191{bottom:191.985000px;}
.y15d{bottom:192.270000px;}
.y169{bottom:192.495000px;}
.y1e2{bottom:193.710000px;}
.y1ab{bottom:197.130000px;}
.y119{bottom:200.370000px;}
.y14e{bottom:200.415000px;}
.y38{bottom:200.910000px;}
.y11b{bottom:200.985000px;}
.y179{bottom:201.450000px;}
.y28{bottom:201.990000px;}
.y1a4{bottom:202.650000px;}
.y120{bottom:207.105000px;}
.y126{bottom:207.870000px;}
.y51{bottom:208.470000px;}
.ye1{bottom:208.800000px;}
.yda{bottom:209.265000px;}
.y15c{bottom:209.550000px;}
.y1e1{bottom:210.990000px;}
.y178{bottom:215.310000px;}
.y188{bottom:216.540000px;}
.y37{bottom:218.370000px;}
.y27{bottom:219.090000px;}
.y193{bottom:219.675000px;}
.y165{bottom:221.730000px;}
.y50{bottom:225.750000px;}
.y15b{bottom:226.830000px;}
.y1e0{bottom:228.270000px;}
.y1ad{bottom:230.475000px;}
.yfb{bottom:231.015000px;}
.y19e{bottom:231.870000px;}
.y11a{bottom:233.790000px;}
.y14f{bottom:233.820000px;}
.y36{bottom:235.650000px;}
.ye2{bottom:235.980000px;}
.y26{bottom:236.370000px;}
.y127{bottom:237.570000px;}
.y15a{bottom:240.870000px;}
.y16b{bottom:241.560000px;}
.y104{bottom:241.740000px;}
.y4f{bottom:243.030000px;}
.y1df{bottom:245.550000px;}
.yd9{bottom:250.050000px;}
.y11f{bottom:251.640000px;}
.y35{bottom:252.930000px;}
.y25{bottom:253.110000px;}
.y4e{bottom:260.130000px;}
.y1de{bottom:262.830000px;}
.ye3{bottom:263.160000px;}
.y128{bottom:267.270000px;}
.y24{bottom:269.850000px;}
.y34{bottom:270.030000px;}
.y19d{bottom:273.090000px;}
.y4d{bottom:277.410000px;}
.y1dd{bottom:279.930000px;}
.y23{bottom:286.590000px;}
.y33{bottom:287.310000px;}
.y16e{bottom:288.540000px;}
.y180{bottom:288.690000px;}
.y19c{bottom:290.370000px;}
.ye4{bottom:291.495000px;}
.y1ae{bottom:291.600000px;}
.y150{bottom:292.890000px;}
.y11c{bottom:294.450000px;}
.y4c{bottom:294.690000px;}
.y12a{bottom:294.840000px;}
.y1dc{bottom:297.210000px;}
.y22{bottom:303.510000px;}
.y32{bottom:304.590000px;}
.y146{bottom:304.950000px;}
.y19b{bottom:307.470000px;}
.y4b{bottom:311.970000px;}
.y1db{bottom:314.490000px;}
.y21{bottom:320.610000px;}
.y31{bottom:321.870000px;}
.y145{bottom:322.230000px;}
.y19a{bottom:324.750000px;}
.y111{bottom:327.990000px;}
.y4a{bottom:329.250000px;}
.y1da{bottom:331.770000px;}
.y20{bottom:336.450000px;}
.y143{bottom:337.035000px;}
.y30{bottom:339.150000px;}
.y199{bottom:342.075000px;}
.y110{bottom:345.315000px;}
.y49{bottom:346.575000px;}
.y1d9{bottom:349.095000px;}
.y1f{bottom:352.290000px;}
.y144{bottom:355.035000px;}
.y2f{bottom:356.070000px;}
.y198{bottom:360.435000px;}
.y10f{bottom:362.595000px;}
.y1d8{bottom:366.375000px;}
.y48{bottom:366.915000px;}
.y1e{bottom:368.130000px;}
.y2e{bottom:373.170000px;}
.y141{bottom:377.535000px;}
.y197{bottom:378.795000px;}
.y10e{bottom:379.875000px;}
.y44{bottom:382.755000px;}
.y1d7{bottom:383.475000px;}
.y1d{bottom:384.330000px;}
.yf4{bottom:385.995000px;}
.y2d{bottom:390.450000px;}
.y142{bottom:395.535000px;}
.y196{bottom:396.075000px;}
.y10d{bottom:397.155000px;}
.y1d6{bottom:400.755000px;}
.yf3{bottom:403.275000px;}
.y2c{bottom:407.730000px;}
.y195{bottom:409.935000px;}
.y1a6{bottom:410.580000px;}
.y1c{bottom:410.610000px;}
.y10c{bottom:411.015000px;}
.y11e{bottom:411.660000px;}
.y1a{bottom:417.855000px;}
.y13f{bottom:418.035000px;}
.yf2{bottom:421.635000px;}
.y2b{bottom:425.010000px;}
.y1b{bottom:427.530000px;}
.y1d5{bottom:435.315000px;}
.y140{bottom:436.035000px;}
.yf1{bottom:438.915000px;}
.y1d4{bottom:452.595000px;}
.yf0{bottom:452.775000px;}
.yfe{bottom:454.320000px;}
.y13d{bottom:458.535000px;}
.y9d{bottom:459.075000px;}
.y1d3{bottom:469.875000px;}
.y177{bottom:470.595000px;}
.yd5{bottom:472.755000px;}
.y9c{bottom:476.355000px;}
.y13e{bottom:476.535000px;}
.y1f6{bottom:480.315000px;}
.y1d2{bottom:486.975000px;}
.yd0{bottom:487.515000px;}
.y176{bottom:487.875000px;}
.y9b{bottom:493.635000px;}
.y7c{bottom:494.355000px;}
.y1f5{bottom:497.595000px;}
.y13b{bottom:499.035000px;}
.y1d1{bottom:504.255000px;}
.y175{bottom:505.155000px;}
.y9a{bottom:508.395000px;}
.y7b{bottom:511.635000px;}
.y1f4{bottom:514.875000px;}
.y13c{bottom:517.035000px;}
.y1d0{bottom:519.015000px;}
.y174{bottom:523.515000px;}
.y99{bottom:526.395000px;}
.y7a{bottom:528.915000px;}
.y1f3{bottom:532.155000px;}
.y1cf{bottom:537.015000px;}
.y173{bottom:537.555000px;}
.y137{bottom:539.535000px;}
.y183{bottom:539.640000px;}
.yd2{bottom:543.675000px;}
.y98{bottom:544.395000px;}
.ya8{bottom:545.655000px;}
.y79{bottom:546.195000px;}
.y1f2{bottom:549.435000px;}
.y1ce{bottom:555.015000px;}
.y139{bottom:557.535000px;}
.y96{bottom:562.395000px;}
.ya7{bottom:562.755000px;}
.y78{bottom:563.475000px;}
.y1f1{bottom:566.535000px;}
.ycc{bottom:567.975000px;}
.y159{bottom:570.315000px;}
.y1cd{bottom:573.015000px;}
.ya6{bottom:577.515000px;}
.y77{bottom:580.575000px;}
.y1f0{bottom:583.815000px;}
.y158{bottom:587.595000px;}
.ya5{bottom:595.515000px;}
.y76{bottom:597.855000px;}
.y135{bottom:598.575000px;}
.y95{bottom:599.475000px;}
.y1ef{bottom:601.095000px;}
.y157{bottom:604.905000px;}
.y1cc{bottom:611.565000px;}
.ya4{bottom:613.545000px;}
.y75{bottom:615.165000px;}
.y94{bottom:616.785000px;}
.y1ee{bottom:618.405000px;}
.y130{bottom:621.105000px;}
.y156{bottom:622.185000px;}
.y1cb{bottom:628.845000px;}
.ya3{bottom:631.545000px;}
.y74{bottom:632.445000px;}
.y93{bottom:633.885000px;}
.y1ed{bottom:635.685000px;}
.y132{bottom:639.105000px;}
.y155{bottom:639.285000px;}
.y1ca{bottom:646.125000px;}
.ya2{bottom:649.545000px;}
.y73{bottom:649.725000px;}
.y88{bottom:649.905000px;}
.y92{bottom:651.165000px;}
.y1ec{bottom:652.965000px;}
.y154{bottom:653.325000px;}
.y167{bottom:654.660000px;}
.y1c9{bottom:660.885000px;}
.y12f{bottom:661.605000px;}
.yc7{bottom:665.925000px;}
.y72{bottom:666.825000px;}
.y87{bottom:667.185000px;}
.y1eb{bottom:670.065000px;}
.ya1{bottom:670.785000px;}
.y1c8{bottom:678.885000px;}
.y85{bottom:681.945000px;}
.y71{bottom:684.105000px;}
.y1ea{bottom:687.345000px;}
.ya0{bottom:688.065000px;}
.y1c7{bottom:696.885000px;}
.y70{bottom:701.385000px;}
.y9f{bottom:702.105000px;}
.y1e9{bottom:704.625000px;}
.y12c{bottom:706.065000px;}
.y1c5{bottom:714.885000px;}
.y83{bottom:717.225000px;}
.y6f{bottom:718.665000px;}
.y1e8{bottom:721.905000px;}
.yc9{bottom:726.045000px;}
.y6e{bottom:735.945000px;}
.yef{bottom:737.385000px;}
.y1e7{bottom:739.185000px;}
.y194{bottom:739.545000px;}
.y10b{bottom:740.625000px;}
.yc0{bottom:750.165000px;}
.y82{bottom:752.325000px;}
.y6d{bottom:753.225000px;}
.yee{bottom:754.665000px;}
.y1e6{bottom:756.465000px;}
.y172{bottom:756.825000px;}
.y10a{bottom:757.905000px;}
.y6c{bottom:770.325000px;}
.y1c4{bottom:770.505000px;}
.yed{bottom:771.945000px;}
.y81{bottom:773.565000px;}
.y171{bottom:774.105000px;}
.y109{bottom:775.185000px;}
.y6b{bottom:787.605000px;}
.y1c3{bottom:787.785000px;}
.yec{bottom:790.125000px;}
.y80{bottom:790.845000px;}
.y170{bottom:791.205000px;}
.y108{bottom:792.285000px;}
.y1be{bottom:801.825000px;}
.yeb{bottom:804.165000px;}
.yf5{bottom:805.860000px;}
.y6a{bottom:805.965000px;}
.y7f{bottom:808.125000px;}
.y107{bottom:809.565000px;}
.yc3{bottom:814.245000px;}
.y1c2{bottom:819.825000px;}
.y12b{bottom:823.605000px;}
.y147{bottom:824.220000px;}
.y69{bottom:824.325000px;}
.y7e{bottom:825.405000px;}
.y106{bottom:826.845000px;}
.y1c1{bottom:837.825000px;}
.y105{bottom:840.885000px;}
.y112{bottom:841.500000px;}
.y68{bottom:842.685000px;}
.ybb{bottom:848.265000px;}
.y17{bottom:856.725000px;}
.y67{bottom:859.785000px;}
.y66{bottom:877.110000px;}
.y153{bottom:881.610000px;}
.yf{bottom:886.470000px;}
.y1bd{bottom:893.490000px;}
.y65{bottom:894.390000px;}
.y152{bottom:898.890000px;}
.ybe{bottom:904.650000px;}
.y1bc{bottom:908.250000px;}
.y64{bottom:911.670000px;}
.y151{bottom:912.930000px;}
.y160{bottom:914.220000px;}
.y63{bottom:928.950000px;}
.yb5{bottom:937.050000px;}
.y1bb{bottom:943.530000px;}
.y62{bottom:946.230000px;}
.y1ba{bottom:961.530000px;}
.y61{bottom:963.330000px;}
.y60{bottom:980.610000px;}
.yb7{bottom:997.170000px;}
.y5f{bottom:997.890000px;}
.y1b9{bottom:999.330000px;}
.y91{bottom:1011.390000px;}
.y5e{bottom:1015.170000px;}
.y1b8{bottom:1016.610000px;}
.yd{bottom:1020.390000px;}
.y90{bottom:1028.670000px;}
.yb3{bottom:1029.030000px;}
.y1b6{bottom:1031.370000px;}
.y5d{bottom:1032.450000px;}
.y8f{bottom:1043.430000px;}
.y6{bottom:1045.590000px;}
.y5c{bottom:1049.730000px;}
.y1b4{bottom:1056.570000px;}
.y8e{bottom:1061.430000px;}
.yae{bottom:1062.870000px;}
.y5b{bottom:1066.830000px;}
.y8d{bottom:1079.430000px;}
.yea{bottom:1081.950000px;}
.y1b2{bottom:1082.850000px;}
.y5a{bottom:1084.110000px;}
.y8c{bottom:1097.430000px;}
.ye9{bottom:1099.230000px;}
.y59{bottom:1101.390000px;}
.ye8{bottom:1116.510000px;}
.y58{bottom:1118.670000px;}
.y1b0{bottom:1124.790000px;}
.ye7{bottom:1134.870000px;}
.y57{bottom:1135.950000px;}
.ye6{bottom:1152.180000px;}
.y56{bottom:1153.260000px;}
.h59{height:17.100000px;}
.h24{height:17.280000px;}
.h28{height:17.316000px;}
.h48{height:21.780000px;}
.h4a{height:21.816000px;}
.h4c{height:22.320000px;}
.h34{height:23.400000px;}
.h39{height:23.580000px;}
.h57{height:24.480000px;}
.hc{height:24.840000px;}
.h56{height:25.560000px;}
.h15{height:29.736000px;}
.h2c{height:31.140000px;}
.h2a{height:31.680000px;}
.h36{height:32.760000px;}
.h2{height:32.940000px;}
.h27{height:33.120000px;}
.h31{height:33.300000px;}
.h25{height:34.380000px;}
.h26{height:34.560000px;}
.h5a{height:34.596000px;}
.h21{height:35.100000px;}
.h8{height:36.180000px;}
.h52{height:37.260000px;}
.h47{height:39.780000px;}
.h49{height:39.816000px;}
.h4b{height:40.320000px;}
.h18{height:40.655391px;}
.h1c{height:40.843828px;}
.h53{height:41.220000px;}
.h55{height:41.616000px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.h23{height:42.266250px;}
.h1a{height:42.281367px;}
.h54{height:43.200000px;}
.h22{height:43.506914px;}
.h46{height:43.740000px;}
.hf{height:44.002969px;}
.ha{height:44.820000px;}
.h14{height:45.509766px;}
.h41{height:45.631125px;}
.h13{height:45.720703px;}
.h43{height:45.842625px;}
.h20{height:46.251562px;}
.h1f{height:46.736719px;}
.h45{height:47.880000px;}
.h19{height:48.159141px;}
.hd{height:49.680000px;}
.h1b{height:50.364141px;}
.h12{height:50.597578px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h3a{height:55.440000px;}
.h2f{height:55.476000px;}
.h6{height:55.825312px;}
.h16{height:56.084062px;}
.h2d{height:59.400000px;}
.h44{height:59.436914px;}
.h11{height:59.439023px;}
.hb{height:60.679688px;}
.h10{height:63.180000px;}
.h32{height:63.360000px;}
.h37{height:63.756000px;}
.h5{height:67.824844px;}
.h4e{height:70.995234px;}
.h42{height:71.324297px;}
.h38{height:79.740000px;}
.h3c{height:81.078047px;}
.h33{height:83.520000px;}
.h2e{height:88.056000px;}
.h58{height:88.416000px;}
.h2b{height:91.260000px;}
.h3e{height:91.441406px;}
.h35{height:97.236000px;}
.h30{height:97.380000px;}
.h29{height:103.536000px;}
.h7{height:121.536000px;}
.he{height:133.920000px;}
.h50{height:214.020000px;}
.h4f{height:223.740000px;}
.h51{height:250.920000px;}
.h4d{height:252.900000px;}
.h3d{height:272.880000px;}
.h3f{height:279.900000px;}
.h40{height:325.620000px;}
.h3b{height:325.800000px;}
.h17{height:438.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w27{width:50.796000px;}
.w3{width:74.880000px;}
.w28{width:75.600000px;}
.w1e{width:78.120000px;}
.w1f{width:100.116000px;}
.w29{width:110.016000px;}
.w20{width:119.520000px;}
.w35{width:140.076000px;}
.w3a{width:140.220000px;}
.w36{width:146.196000px;}
.w38{width:146.520000px;}
.w37{width:152.670000px;}
.w34{width:158.250000px;}
.w5{width:162.570000px;}
.wb{width:171.180000px;}
.w11{width:172.830000px;}
.we{width:174.240000px;}
.wc{width:176.070000px;}
.w1c{width:176.610000px;}
.w31{width:177.150000px;}
.w33{width:180.390000px;}
.w16{width:180.570000px;}
.wf{width:182.010000px;}
.wd{width:182.550000px;}
.w39{width:183.270000px;}
.w30{width:184.350000px;}
.w15{width:184.530000px;}
.w14{width:185.070000px;}
.w32{width:185.430000px;}
.w19{width:185.970000px;}
.w1a{width:186.150000px;}
.w12{width:186.870000px;}
.wa{width:187.590000px;}
.w13{width:187.770000px;}
.w10{width:188.130000px;}
.w17{width:188.490000px;}
.w18{width:194.790000px;}
.w8{width:233.895000px;}
.w1d{width:269.175000px;}
.w26{width:275.610000px;}
.w25{width:283.395000px;}
.w2d{width:335.775000px;}
.w2e{width:410.115000px;}
.w22{width:484.920000px;}
.w23{width:486.540000px;}
.w9{width:499.575000px;}
.w2a{width:540.000000px;}
.w2c{width:540.900000px;}
.w21{width:541.800000px;}
.w2b{width:547.920000px;}
.w6{width:570.885000px;}
.w2{width:673.530000px;}
.w2f{width:731.130000px;}
.w7{width:733.470000px;}
.w1b{width:746.610000px;}
.w24{width:798.300000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:7.560000px;}
.x2{left:8.640000px;}
.xc{left:10.476000px;}
.x12{left:12.600000px;}
.x4c{left:14.580000px;}
.x6a{left:16.590000px;}
.x39{left:17.820000px;}
.x5e{left:20.880000px;}
.x5d{left:29.520000px;}
.x60{left:30.780000px;}
.x2b{left:34.776000px;}
.xd{left:37.116000px;}
.x4e{left:40.860000px;}
.x51{left:42.585000px;}
.x7c{left:43.815000px;}
.x57{left:47.340000px;}
.x4d{left:50.760000px;}
.x76{left:65.265000px;}
.x61{left:66.816000px;}
.x67{left:70.095000px;}
.x1{left:72.360000px;}
.xf{left:73.650000px;}
.x4{left:80.999987px;}
.x5f{left:82.476000px;}
.x44{left:89.565000px;}
.x47{left:94.140000px;}
.x5{left:98.130000px;}
.x18{left:100.296000px;}
.x70{left:102.275987px;}
.x13{left:107.315987px;}
.x77{left:109.260000px;}
.x5c{left:110.370000px;}
.x46{left:116.070000px;}
.x62{left:118.290000px;}
.x7b{left:122.610000px;}
.x45{left:125.790000px;}
.x74{left:128.775000px;}
.x56{left:131.910000px;}
.x3c{left:135.035987px;}
.x4f{left:140.610000px;}
.x54{left:152.310000px;}
.x6e{left:155.670000px;}
.x15{left:162.029987px;}
.x16{left:165.989987px;}
.x69{left:171.900000px;}
.x37{left:175.320000px;}
.x66{left:176.400000px;}
.x38{left:180.900000px;}
.x53{left:193.830000px;}
.x6c{left:196.950000px;}
.x3b{left:199.905000px;}
.x49{left:202.320000px;}
.x41{left:203.400000px;}
.x3a{left:206.025000px;}
.x7d{left:208.335000px;}
.x42{left:209.520000px;}
.x6b{left:211.170000px;}
.x10{left:220.395000px;}
.x43{left:224.460000px;}
.x68{left:232.530000px;}
.x63{left:235.365000px;}
.x7e{left:237.525000px;}
.x6{left:243.570000px;}
.x30{left:250.590000px;}
.x27{left:254.550000px;}
.x81{left:257.250000px;}
.x23{left:260.850000px;}
.x9{left:263.955000px;}
.x73{left:266.550000px;}
.x1e{left:275.250000px;}
.x19{left:288.615000px;}
.xe{left:303.555000px;}
.x52{left:305.100000px;}
.x11{left:314.895000px;}
.x72{left:318.674987px;}
.x7{left:323.715000px;}
.x58{left:331.455000px;}
.x6f{left:336.674987px;}
.x3e{left:340.454987px;}
.x8{left:342.975000px;}
.x40{left:345.494987px;}
.x6d{left:351.750000px;}
.x21{left:354.314987px;}
.x50{left:357.194987px;}
.x71{left:359.894987px;}
.x2f{left:364.754987px;}
.xb{left:366.735000px;}
.x36{left:373.214987px;}
.x78{left:383.294987px;}
.x48{left:388.695000px;}
.x4a{left:392.970000px;}
.x55{left:396.030000px;}
.x82{left:398.055000px;}
.x17{left:402.014987px;}
.x4b{left:407.730000px;}
.x7a{left:409.755000px;}
.x1d{left:412.454987px;}
.x22{left:414.254987px;}
.xa{left:431.220000px;}
.x28{left:443.775000px;}
.x75{left:445.500000px;}
.x2c{left:446.835000px;}
.x24{left:449.535000px;}
.x1f{left:458.175000px;}
.x1a{left:460.515000px;}
.x79{left:473.504987px;}
.x31{left:520.485000px;}
.x83{left:538.845000px;}
.x32{left:599.325000px;}
.x59{left:607.785000px;}
.x7f{left:631.005000px;}
.x2d{left:633.705000px;}
.x25{left:635.325000px;}
.x1b{left:637.305000px;}
.x29{left:639.285000px;}
.x20{left:647.025000px;}
.x5a{left:659.310000px;}
.x2a{left:663.989987px;}
.x80{left:673.350000px;}
.x84{left:679.650000px;}
.x3d{left:689.549987px;}
.x3f{left:690.629987px;}
.x33{left:700.350000px;}
.x26{left:712.049987px;}
.x64{left:716.549987px;}
.x35{left:717.629987px;}
.x65{left:721.049987px;}
.x5b{left:735.630000px;}
.x3{left:745.890000px;}
.x14{left:751.109987px;}
.x1c{left:784.049987px;}
.x2e{left:811.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.519467pt;}
.ls20{letter-spacing:-0.331733pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.203733pt;}
.ls16{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.086933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.039680pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.lse{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls21{letter-spacing:0.207360pt;}
.ls1d{letter-spacing:0.217067pt;}
.ls17{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.272533pt;}
.ls18{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.321920pt;}
.ls13{letter-spacing:0.448000pt;}
.ls22{letter-spacing:0.592640pt;}
.ls3{letter-spacing:0.698880pt;}
.ls1e{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls1a{letter-spacing:56.912640pt;}
.lsd{letter-spacing:59.472640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws1e{word-spacing:-18.726400pt;}
.ws18{word-spacing:-16.473600pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsf{word-spacing:-13.728000pt;}
.ws3{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.ws13{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.096533pt;}
.ws4{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.736000pt;}
.ws8{word-spacing:-12.592000pt;}
.ws9{word-spacing:-11.686400pt;}
.ws0{word-spacing:-10.832000pt;}
.ws15{word-spacing:-10.560000pt;}
.wsa{word-spacing:0.000000pt;}
.ws19{word-spacing:78.506667pt;}
.ws14{word-spacing:78.560000pt;}
.ws16{word-spacing:81.349333pt;}
.ws1c{word-spacing:81.530667pt;}
.ws1a{word-spacing:228.879488pt;}
.ws1b{word-spacing:229.103488pt;}
.ws1d{word-spacing:598.736000pt;}
.ws17{word-spacing:600.389333pt;}
._15{margin-left:-7.413120pt;}
._3{margin-left:-5.630720pt;}
._13{margin-left:-4.157867pt;}
._2{margin-left:-2.270507pt;}
._0{margin-left:-0.949333pt;}
._1{width:1.104000pt;}
._6{width:2.443520pt;}
._b{width:3.464320pt;}
._12{width:4.397440pt;}
._7{width:5.907840pt;}
._5{width:7.089493pt;}
._4{width:8.786560pt;}
._a{width:10.038400pt;}
._e{width:11.107200pt;}
._9{width:12.157653pt;}
._8{width:15.022080pt;}
._f{width:16.336000pt;}
._10{width:17.445760pt;}
._19{width:18.497280pt;}
._18{width:19.441920pt;}
._1a{width:21.093333pt;}
._17{width:22.576000pt;}
._16{width:23.532160pt;}
._d{width:25.275947pt;}
._c{width:26.188160pt;}
._11{width:38.985813pt;}
._14{width:754.986667pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs6{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:0.160000pt;}
.y16{bottom:2.720000pt;}
.y43{bottom:2.880000pt;}
.y47{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.y133{bottom:6.880000pt;}
.y136{bottom:6.906667pt;}
.y13a{bottom:7.360000pt;}
.yca{bottom:8.320000pt;}
.yd3{bottom:8.480000pt;}
.y46{bottom:8.640000pt;}
.y1b7{bottom:9.280000pt;}
.ye{bottom:9.440000pt;}
.y1b5{bottom:10.240000pt;}
.y1c6{bottom:10.400000pt;}
.y192{bottom:11.173333pt;}
.y129{bottom:11.266667pt;}
.yc{bottom:12.320000pt;}
.y19{bottom:12.520000pt;}
.y12e{bottom:14.720000pt;}
.y16f{bottom:14.880000pt;}
.y16a{bottom:14.906667pt;}
.ye5{bottom:14.946667pt;}
.y11d{bottom:15.013333pt;}
.y1af{bottom:15.040000pt;}
.y187{bottom:15.066667pt;}
.y166{bottom:15.106667pt;}
.yb8{bottom:15.200000pt;}
.y4{bottom:15.360000pt;}
.yb4{bottom:15.680000pt;}
.y15{bottom:16.640000pt;}
.y97{bottom:16.960000pt;}
.yc4{bottom:17.120000pt;}
.y2{bottom:17.760000pt;}
.y84{bottom:18.080000pt;}
.y86{bottom:18.240000pt;}
.y42{bottom:18.720000pt;}
.y19f{bottom:20.640000pt;}
.y45{bottom:21.120000pt;}
.y131{bottom:22.880000pt;}
.y134{bottom:22.906667pt;}
.y138{bottom:23.360000pt;}
.y1b3{bottom:24.160000pt;}
.y1a1{bottom:24.320000pt;}
.y1b1{bottom:24.506667pt;}
.yba{bottom:24.960000pt;}
.ycb{bottom:25.120000pt;}
.y1a3{bottom:25.914667pt;}
.y18b{bottom:26.306667pt;}
.y121{bottom:26.400000pt;}
.yb{bottom:26.880000pt;}
.yc6{bottom:28.640000pt;}
.ycf{bottom:28.960000pt;}
.y12d{bottom:30.080000pt;}
.y14{bottom:30.560000pt;}
.yb2{bottom:33.600000pt;}
.y41{bottom:35.520000pt;}
.yd4{bottom:36.800000pt;}
.ybf{bottom:37.000000pt;}
.yb9{bottom:40.320000pt;}
.ydb{bottom:40.573333pt;}
.y168{bottom:41.093333pt;}
.ya{bottom:41.440000pt;}
.y161{bottom:41.853333pt;}
.y113{bottom:42.013333pt;}
.y184{bottom:42.080000pt;}
.yc5{bottom:43.840000pt;}
.y13{bottom:44.160000pt;}
.yce{bottom:44.186667pt;}
.yb1{bottom:48.960000pt;}
.y189{bottom:49.853333pt;}
.y18c{bottom:50.373333pt;}
.ybd{bottom:50.600000pt;}
.y1c0{bottom:50.880000pt;}
.y5{bottom:51.200000pt;}
.y40{bottom:52.320000pt;}
.y122{bottom:52.800000pt;}
.yd1{bottom:58.400000pt;}
.yc2{bottom:58.720000pt;}
.y12{bottom:60.960000pt;}
.y114{bottom:61.440000pt;}
.y148{bottom:61.466667pt;}
.yc8{bottom:61.760000pt;}
.yb0{bottom:64.320000pt;}
.ydc{bottom:64.733333pt;}
.y9{bottom:65.280000pt;}
.ybc{bottom:65.800000pt;}
.y1bf{bottom:66.280000pt;}
.y162{bottom:68.320000pt;}
.yb6{bottom:68.640000pt;}
.y1a7{bottom:68.666667pt;}
.y3f{bottom:69.280000pt;}
.y1{bottom:69.952000pt;}
.ycd{bottom:73.946667pt;}
.yc1{bottom:74.080000pt;}
.y18d{bottom:74.426667pt;}
.y123{bottom:79.200000pt;}
.yaf{bottom:79.546667pt;}
.y115{bottom:80.893333pt;}
.y149{bottom:80.933333pt;}
.y100{bottom:82.426667pt;}
.y8{bottom:82.746667pt;}
.y11{bottom:83.840000pt;}
.y3e{bottom:85.760000pt;}
.y18a{bottom:85.920000pt;}
.yfd{bottom:86.373333pt;}
.ydd{bottom:88.933333pt;}
.y163{bottom:94.746667pt;}
.y1a8{bottom:95.333333pt;}
.yff{bottom:98.106667pt;}
.y18e{bottom:98.466667pt;}
.yf7{bottom:99.013333pt;}
.y7{bottom:99.066667pt;}
.y116{bottom:100.346667pt;}
.y14a{bottom:100.386667pt;}
.y3d{bottom:101.280000pt;}
.yfa{bottom:104.386667pt;}
.y10{bottom:105.600000pt;}
.y185{bottom:105.666667pt;}
.yfc{bottom:108.320000pt;}
.y182{bottom:109.826667pt;}
.yad{bottom:111.552000pt;}
.yde{bottom:113.093333pt;}
.y9e{bottom:113.152000pt;}
.yf6{bottom:114.693333pt;}
.yd7{bottom:114.752000pt;}
.y8b{bottom:114.912000pt;}
.y17d{bottom:116.672000pt;}
.y3c{bottom:116.800000pt;}
.y117{bottom:119.773333pt;}
.y14b{bottom:119.813333pt;}
.yf9{bottom:120.066667pt;}
.y7d{bottom:120.512000pt;}
.y164{bottom:121.213333pt;}
.y1a9{bottom:121.946667pt;}
.y18f{bottom:122.533333pt;}
.y55{bottom:124.032000pt;}
.y1ac{bottom:124.960000pt;}
.y103{bottom:125.853333pt;}
.y1e5{bottom:126.272000pt;}
.yac{bottom:126.912000pt;}
.yd6{bottom:127.232000pt;}
.yd8{bottom:127.840000pt;}
.y1a2{bottom:129.632000pt;}
.y8a{bottom:130.272000pt;}
.y181{bottom:131.746667pt;}
.y124{bottom:132.000000pt;}
.y17c{bottom:132.032000pt;}
.y3b{bottom:132.160000pt;}
.yf8{bottom:135.746667pt;}
.y17f{bottom:136.000000pt;}
.ydf{bottom:137.253333pt;}
.y54{bottom:139.226667pt;}
.y14c{bottom:139.266667pt;}
.y15f{bottom:140.186667pt;}
.y102{bottom:141.533333pt;}
.y1e4{bottom:141.626667pt;}
.yab{bottom:142.266667pt;}
.y89{bottom:142.746667pt;}
.y190{bottom:146.586667pt;}
.y17e{bottom:147.226667pt;}
.y17b{bottom:147.386667pt;}
.y3a{bottom:147.680000pt;}
.y1aa{bottom:148.613333pt;}
.y2a{bottom:151.200000pt;}
.y1a5{bottom:153.120000pt;}
.y53{bottom:154.586667pt;}
.y16d{bottom:154.946667pt;}
.y15e{bottom:155.546667pt;}
.y1e3{bottom:156.826667pt;}
.y101{bottom:157.213333pt;}
.y186{bottom:157.253333pt;}
.yaa{bottom:157.626667pt;}
.y125{bottom:158.373333pt;}
.y118{bottom:158.693333pt;}
.y14d{bottom:158.720000pt;}
.ye0{bottom:161.440000pt;}
.y39{bottom:163.200000pt;}
.y17a{bottom:163.706667pt;}
.y29{bottom:164.160000pt;}
.y1a0{bottom:168.666667pt;}
.y52{bottom:169.946667pt;}
.y16c{bottom:170.080000pt;}
.ya9{bottom:170.106667pt;}
.y191{bottom:170.653333pt;}
.y15d{bottom:170.906667pt;}
.y169{bottom:171.106667pt;}
.y1e2{bottom:172.186667pt;}
.y1ab{bottom:175.226667pt;}
.y119{bottom:178.106667pt;}
.y14e{bottom:178.146667pt;}
.y38{bottom:178.586667pt;}
.y11b{bottom:178.653333pt;}
.y179{bottom:179.066667pt;}
.y28{bottom:179.546667pt;}
.y1a4{bottom:180.133333pt;}
.y120{bottom:184.093333pt;}
.y126{bottom:184.773333pt;}
.y51{bottom:185.306667pt;}
.ye1{bottom:185.600000pt;}
.yda{bottom:186.013333pt;}
.y15c{bottom:186.266667pt;}
.y1e1{bottom:187.546667pt;}
.y178{bottom:191.386667pt;}
.y188{bottom:192.480000pt;}
.y37{bottom:194.106667pt;}
.y27{bottom:194.746667pt;}
.y193{bottom:195.266667pt;}
.y165{bottom:197.093333pt;}
.y50{bottom:200.666667pt;}
.y15b{bottom:201.626667pt;}
.y1e0{bottom:202.906667pt;}
.y1ad{bottom:204.866667pt;}
.yfb{bottom:205.346667pt;}
.y19e{bottom:206.106667pt;}
.y11a{bottom:207.813333pt;}
.y14f{bottom:207.840000pt;}
.y36{bottom:209.466667pt;}
.ye2{bottom:209.760000pt;}
.y26{bottom:210.106667pt;}
.y127{bottom:211.173333pt;}
.y15a{bottom:214.106667pt;}
.y16b{bottom:214.720000pt;}
.y104{bottom:214.880000pt;}
.y4f{bottom:216.026667pt;}
.y1df{bottom:218.266667pt;}
.yd9{bottom:222.266667pt;}
.y11f{bottom:223.680000pt;}
.y35{bottom:224.826667pt;}
.y25{bottom:224.986667pt;}
.y4e{bottom:231.226667pt;}
.y1de{bottom:233.626667pt;}
.ye3{bottom:233.920000pt;}
.y128{bottom:237.573333pt;}
.y24{bottom:239.866667pt;}
.y34{bottom:240.026667pt;}
.y19d{bottom:242.746667pt;}
.y4d{bottom:246.586667pt;}
.y1dd{bottom:248.826667pt;}
.y23{bottom:254.746667pt;}
.y33{bottom:255.386667pt;}
.y16e{bottom:256.480000pt;}
.y180{bottom:256.613333pt;}
.y19c{bottom:258.106667pt;}
.ye4{bottom:259.106667pt;}
.y1ae{bottom:259.200000pt;}
.y150{bottom:260.346667pt;}
.y11c{bottom:261.733333pt;}
.y4c{bottom:261.946667pt;}
.y12a{bottom:262.080000pt;}
.y1dc{bottom:264.186667pt;}
.y22{bottom:269.786667pt;}
.y32{bottom:270.746667pt;}
.y146{bottom:271.066667pt;}
.y19b{bottom:273.306667pt;}
.y4b{bottom:277.306667pt;}
.y1db{bottom:279.546667pt;}
.y21{bottom:284.986667pt;}
.y31{bottom:286.106667pt;}
.y145{bottom:286.426667pt;}
.y19a{bottom:288.666667pt;}
.y111{bottom:291.546667pt;}
.y4a{bottom:292.666667pt;}
.y1da{bottom:294.906667pt;}
.y20{bottom:299.066667pt;}
.y143{bottom:299.586667pt;}
.y30{bottom:301.466667pt;}
.y199{bottom:304.066667pt;}
.y110{bottom:306.946667pt;}
.y49{bottom:308.066667pt;}
.y1d9{bottom:310.306667pt;}
.y1f{bottom:313.146667pt;}
.y144{bottom:315.586667pt;}
.y2f{bottom:316.506667pt;}
.y198{bottom:320.386667pt;}
.y10f{bottom:322.306667pt;}
.y1d8{bottom:325.666667pt;}
.y48{bottom:326.146667pt;}
.y1e{bottom:327.226667pt;}
.y2e{bottom:331.706667pt;}
.y141{bottom:335.586667pt;}
.y197{bottom:336.706667pt;}
.y10e{bottom:337.666667pt;}
.y44{bottom:340.226667pt;}
.y1d7{bottom:340.866667pt;}
.y1d{bottom:341.626667pt;}
.yf4{bottom:343.106667pt;}
.y2d{bottom:347.066667pt;}
.y142{bottom:351.586667pt;}
.y196{bottom:352.066667pt;}
.y10d{bottom:353.026667pt;}
.y1d6{bottom:356.226667pt;}
.yf3{bottom:358.466667pt;}
.y2c{bottom:362.426667pt;}
.y195{bottom:364.386667pt;}
.y1a6{bottom:364.960000pt;}
.y1c{bottom:364.986667pt;}
.y10c{bottom:365.346667pt;}
.y11e{bottom:365.920000pt;}
.y1a{bottom:371.426667pt;}
.y13f{bottom:371.586667pt;}
.yf2{bottom:374.786667pt;}
.y2b{bottom:377.786667pt;}
.y1b{bottom:380.026667pt;}
.y1d5{bottom:386.946667pt;}
.y140{bottom:387.586667pt;}
.yf1{bottom:390.146667pt;}
.y1d4{bottom:402.306667pt;}
.yf0{bottom:402.466667pt;}
.yfe{bottom:403.840000pt;}
.y13d{bottom:407.586667pt;}
.y9d{bottom:408.066667pt;}
.y1d3{bottom:417.666667pt;}
.y177{bottom:418.306667pt;}
.yd5{bottom:420.226667pt;}
.y9c{bottom:423.426667pt;}
.y13e{bottom:423.586667pt;}
.y1f6{bottom:426.946667pt;}
.y1d2{bottom:432.866667pt;}
.yd0{bottom:433.346667pt;}
.y176{bottom:433.666667pt;}
.y9b{bottom:438.786667pt;}
.y7c{bottom:439.426667pt;}
.y1f5{bottom:442.306667pt;}
.y13b{bottom:443.586667pt;}
.y1d1{bottom:448.226667pt;}
.y175{bottom:449.026667pt;}
.y9a{bottom:451.906667pt;}
.y7b{bottom:454.786667pt;}
.y1f4{bottom:457.666667pt;}
.y13c{bottom:459.586667pt;}
.y1d0{bottom:461.346667pt;}
.y174{bottom:465.346667pt;}
.y99{bottom:467.906667pt;}
.y7a{bottom:470.146667pt;}
.y1f3{bottom:473.026667pt;}
.y1cf{bottom:477.346667pt;}
.y173{bottom:477.826667pt;}
.y137{bottom:479.586667pt;}
.y183{bottom:479.680000pt;}
.yd2{bottom:483.266667pt;}
.y98{bottom:483.906667pt;}
.ya8{bottom:485.026667pt;}
.y79{bottom:485.506667pt;}
.y1f2{bottom:488.386667pt;}
.y1ce{bottom:493.346667pt;}
.y139{bottom:495.586667pt;}
.y96{bottom:499.906667pt;}
.ya7{bottom:500.226667pt;}
.y78{bottom:500.866667pt;}
.y1f1{bottom:503.586667pt;}
.ycc{bottom:504.866667pt;}
.y159{bottom:506.946667pt;}
.y1cd{bottom:509.346667pt;}
.ya6{bottom:513.346667pt;}
.y77{bottom:516.066667pt;}
.y1f0{bottom:518.946667pt;}
.y158{bottom:522.306667pt;}
.ya5{bottom:529.346667pt;}
.y76{bottom:531.426667pt;}
.y135{bottom:532.066667pt;}
.y95{bottom:532.866667pt;}
.y1ef{bottom:534.306667pt;}
.y157{bottom:537.693333pt;}
.y1cc{bottom:543.613333pt;}
.ya4{bottom:545.373333pt;}
.y75{bottom:546.813333pt;}
.y94{bottom:548.253333pt;}
.y1ee{bottom:549.693333pt;}
.y130{bottom:552.093333pt;}
.y156{bottom:553.053333pt;}
.y1cb{bottom:558.973333pt;}
.ya3{bottom:561.373333pt;}
.y74{bottom:562.173333pt;}
.y93{bottom:563.453333pt;}
.y1ed{bottom:565.053333pt;}
.y132{bottom:568.093333pt;}
.y155{bottom:568.253333pt;}
.y1ca{bottom:574.333333pt;}
.ya2{bottom:577.373333pt;}
.y73{bottom:577.533333pt;}
.y88{bottom:577.693333pt;}
.y92{bottom:578.813333pt;}
.y1ec{bottom:580.413333pt;}
.y154{bottom:580.733333pt;}
.y167{bottom:581.920000pt;}
.y1c9{bottom:587.453333pt;}
.y12f{bottom:588.093333pt;}
.yc7{bottom:591.933333pt;}
.y72{bottom:592.733333pt;}
.y87{bottom:593.053333pt;}
.y1eb{bottom:595.613333pt;}
.ya1{bottom:596.253333pt;}
.y1c8{bottom:603.453333pt;}
.y85{bottom:606.173333pt;}
.y71{bottom:608.093333pt;}
.y1ea{bottom:610.973333pt;}
.ya0{bottom:611.613333pt;}
.y1c7{bottom:619.453333pt;}
.y70{bottom:623.453333pt;}
.y9f{bottom:624.093333pt;}
.y1e9{bottom:626.333333pt;}
.y12c{bottom:627.613333pt;}
.y1c5{bottom:635.453333pt;}
.y83{bottom:637.533333pt;}
.y6f{bottom:638.813333pt;}
.y1e8{bottom:641.693333pt;}
.yc9{bottom:645.373333pt;}
.y6e{bottom:654.173333pt;}
.yef{bottom:655.453333pt;}
.y1e7{bottom:657.053333pt;}
.y194{bottom:657.373333pt;}
.y10b{bottom:658.333333pt;}
.yc0{bottom:666.813333pt;}
.y82{bottom:668.733333pt;}
.y6d{bottom:669.533333pt;}
.yee{bottom:670.813333pt;}
.y1e6{bottom:672.413333pt;}
.y172{bottom:672.733333pt;}
.y10a{bottom:673.693333pt;}
.y6c{bottom:684.733333pt;}
.y1c4{bottom:684.893333pt;}
.yed{bottom:686.173333pt;}
.y81{bottom:687.613333pt;}
.y171{bottom:688.093333pt;}
.y109{bottom:689.053333pt;}
.y6b{bottom:700.093333pt;}
.y1c3{bottom:700.253333pt;}
.yec{bottom:702.333333pt;}
.y80{bottom:702.973333pt;}
.y170{bottom:703.293333pt;}
.y108{bottom:704.253333pt;}
.y1be{bottom:712.733333pt;}
.yeb{bottom:714.813333pt;}
.yf5{bottom:716.320000pt;}
.y6a{bottom:716.413333pt;}
.y7f{bottom:718.333333pt;}
.y107{bottom:719.613333pt;}
.yc3{bottom:723.773333pt;}
.y1c2{bottom:728.733333pt;}
.y12b{bottom:732.093333pt;}
.y147{bottom:732.640000pt;}
.y69{bottom:732.733333pt;}
.y7e{bottom:733.693333pt;}
.y106{bottom:734.973333pt;}
.y1c1{bottom:744.733333pt;}
.y105{bottom:747.453333pt;}
.y112{bottom:748.000000pt;}
.y68{bottom:749.053333pt;}
.ybb{bottom:754.013333pt;}
.y17{bottom:761.533333pt;}
.y67{bottom:764.253333pt;}
.y66{bottom:779.653333pt;}
.y153{bottom:783.653333pt;}
.yf{bottom:787.973333pt;}
.y1bd{bottom:794.213333pt;}
.y65{bottom:795.013333pt;}
.y152{bottom:799.013333pt;}
.ybe{bottom:804.133333pt;}
.y1bc{bottom:807.333333pt;}
.y64{bottom:810.373333pt;}
.y151{bottom:811.493333pt;}
.y160{bottom:812.640000pt;}
.y63{bottom:825.733333pt;}
.yb5{bottom:832.933333pt;}
.y1bb{bottom:838.693333pt;}
.y62{bottom:841.093333pt;}
.y1ba{bottom:854.693333pt;}
.y61{bottom:856.293333pt;}
.y60{bottom:871.653333pt;}
.yb7{bottom:886.373333pt;}
.y5f{bottom:887.013333pt;}
.y1b9{bottom:888.293333pt;}
.y91{bottom:899.013333pt;}
.y5e{bottom:902.373333pt;}
.y1b8{bottom:903.653333pt;}
.yd{bottom:907.013333pt;}
.y90{bottom:914.373333pt;}
.yb3{bottom:914.693333pt;}
.y1b6{bottom:916.773333pt;}
.y5d{bottom:917.733333pt;}
.y8f{bottom:927.493333pt;}
.y6{bottom:929.413333pt;}
.y5c{bottom:933.093333pt;}
.y1b4{bottom:939.173333pt;}
.y8e{bottom:943.493333pt;}
.yae{bottom:944.773333pt;}
.y5b{bottom:948.293333pt;}
.y8d{bottom:959.493333pt;}
.yea{bottom:961.733333pt;}
.y1b2{bottom:962.533333pt;}
.y5a{bottom:963.653333pt;}
.y8c{bottom:975.493333pt;}
.ye9{bottom:977.093333pt;}
.y59{bottom:979.013333pt;}
.ye8{bottom:992.453333pt;}
.y58{bottom:994.373333pt;}
.y1b0{bottom:999.813333pt;}
.ye7{bottom:1008.773333pt;}
.y57{bottom:1009.733333pt;}
.ye6{bottom:1024.160000pt;}
.y56{bottom:1025.120000pt;}
.h59{height:15.200000pt;}
.h24{height:15.360000pt;}
.h28{height:15.392000pt;}
.h48{height:19.360000pt;}
.h4a{height:19.392000pt;}
.h4c{height:19.840000pt;}
.h34{height:20.800000pt;}
.h39{height:20.960000pt;}
.h57{height:21.760000pt;}
.hc{height:22.080000pt;}
.h56{height:22.720000pt;}
.h15{height:26.432000pt;}
.h2c{height:27.680000pt;}
.h2a{height:28.160000pt;}
.h36{height:29.120000pt;}
.h2{height:29.280000pt;}
.h27{height:29.440000pt;}
.h31{height:29.600000pt;}
.h25{height:30.560000pt;}
.h26{height:30.720000pt;}
.h5a{height:30.752000pt;}
.h21{height:31.200000pt;}
.h8{height:32.160000pt;}
.h52{height:33.120000pt;}
.h47{height:35.360000pt;}
.h49{height:35.392000pt;}
.h4b{height:35.840000pt;}
.h18{height:36.138125pt;}
.h1c{height:36.305625pt;}
.h53{height:36.640000pt;}
.h55{height:36.992000pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h23{height:37.570000pt;}
.h1a{height:37.583438pt;}
.h54{height:38.400000pt;}
.h22{height:38.672812pt;}
.h46{height:38.880000pt;}
.hf{height:39.113750pt;}
.ha{height:39.840000pt;}
.h14{height:40.453125pt;}
.h41{height:40.561000pt;}
.h13{height:40.640625pt;}
.h43{height:40.749000pt;}
.h20{height:41.112500pt;}
.h1f{height:41.543750pt;}
.h45{height:42.560000pt;}
.h19{height:42.808125pt;}
.hd{height:44.160000pt;}
.h1b{height:44.768125pt;}
.h12{height:44.975625pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h3a{height:49.280000pt;}
.h2f{height:49.312000pt;}
.h6{height:49.622500pt;}
.h16{height:49.852500pt;}
.h2d{height:52.800000pt;}
.h44{height:52.832812pt;}
.h11{height:52.834688pt;}
.hb{height:53.937500pt;}
.h10{height:56.160000pt;}
.h32{height:56.320000pt;}
.h37{height:56.672000pt;}
.h5{height:60.288750pt;}
.h4e{height:63.106875pt;}
.h42{height:63.399375pt;}
.h38{height:70.880000pt;}
.h3c{height:72.069375pt;}
.h33{height:74.240000pt;}
.h2e{height:78.272000pt;}
.h58{height:78.592000pt;}
.h2b{height:81.120000pt;}
.h3e{height:81.281250pt;}
.h35{height:86.432000pt;}
.h30{height:86.560000pt;}
.h29{height:92.032000pt;}
.h7{height:108.032000pt;}
.he{height:119.040000pt;}
.h50{height:190.240000pt;}
.h4f{height:198.880000pt;}
.h51{height:223.040000pt;}
.h4d{height:224.800000pt;}
.h3d{height:242.560000pt;}
.h3f{height:248.800000pt;}
.h40{height:289.440000pt;}
.h3b{height:289.600000pt;}
.h17{height:390.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w27{width:45.152000pt;}
.w3{width:66.560000pt;}
.w28{width:67.200000pt;}
.w1e{width:69.440000pt;}
.w1f{width:88.992000pt;}
.w29{width:97.792000pt;}
.w20{width:106.240000pt;}
.w35{width:124.512000pt;}
.w3a{width:124.640000pt;}
.w36{width:129.952000pt;}
.w38{width:130.240000pt;}
.w37{width:135.706667pt;}
.w34{width:140.666667pt;}
.w5{width:144.506667pt;}
.wb{width:152.160000pt;}
.w11{width:153.626667pt;}
.we{width:154.880000pt;}
.wc{width:156.506667pt;}
.w1c{width:156.986667pt;}
.w31{width:157.466667pt;}
.w33{width:160.346667pt;}
.w16{width:160.506667pt;}
.wf{width:161.786667pt;}
.wd{width:162.266667pt;}
.w39{width:162.906667pt;}
.w30{width:163.866667pt;}
.w15{width:164.026667pt;}
.w14{width:164.506667pt;}
.w32{width:164.826667pt;}
.w19{width:165.306667pt;}
.w1a{width:165.466667pt;}
.w12{width:166.106667pt;}
.wa{width:166.746667pt;}
.w13{width:166.906667pt;}
.w10{width:167.226667pt;}
.w17{width:167.546667pt;}
.w18{width:173.146667pt;}
.w8{width:207.906667pt;}
.w1d{width:239.266667pt;}
.w26{width:244.986667pt;}
.w25{width:251.906667pt;}
.w2d{width:298.466667pt;}
.w2e{width:364.546667pt;}
.w22{width:431.040000pt;}
.w23{width:432.480000pt;}
.w9{width:444.066667pt;}
.w2a{width:480.000000pt;}
.w2c{width:480.800000pt;}
.w21{width:481.600000pt;}
.w2b{width:487.040000pt;}
.w6{width:507.453333pt;}
.w2{width:598.693333pt;}
.w2f{width:649.893333pt;}
.w7{width:651.973333pt;}
.w1b{width:663.653333pt;}
.w24{width:709.600000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:6.720000pt;}
.x2{left:7.680000pt;}
.xc{left:9.312000pt;}
.x12{left:11.200000pt;}
.x4c{left:12.960000pt;}
.x6a{left:14.746667pt;}
.x39{left:15.840000pt;}
.x5e{left:18.560000pt;}
.x5d{left:26.240000pt;}
.x60{left:27.360000pt;}
.x2b{left:30.912000pt;}
.xd{left:32.992000pt;}
.x4e{left:36.320000pt;}
.x51{left:37.853333pt;}
.x7c{left:38.946667pt;}
.x57{left:42.080000pt;}
.x4d{left:45.120000pt;}
.x76{left:58.013333pt;}
.x61{left:59.392000pt;}
.x67{left:62.306667pt;}
.x1{left:64.320000pt;}
.xf{left:65.466667pt;}
.x4{left:71.999988pt;}
.x5f{left:73.312000pt;}
.x44{left:79.613333pt;}
.x47{left:83.680000pt;}
.x5{left:87.226667pt;}
.x18{left:89.152000pt;}
.x70{left:90.911988pt;}
.x13{left:95.391988pt;}
.x77{left:97.120000pt;}
.x5c{left:98.106667pt;}
.x46{left:103.173333pt;}
.x62{left:105.146667pt;}
.x7b{left:108.986667pt;}
.x45{left:111.813333pt;}
.x74{left:114.466667pt;}
.x56{left:117.253333pt;}
.x3c{left:120.031988pt;}
.x4f{left:124.986667pt;}
.x54{left:135.386667pt;}
.x6e{left:138.373333pt;}
.x15{left:144.026655pt;}
.x16{left:147.546655pt;}
.x69{left:152.800000pt;}
.x37{left:155.840000pt;}
.x66{left:156.800000pt;}
.x38{left:160.800000pt;}
.x53{left:172.293333pt;}
.x6c{left:175.066667pt;}
.x3b{left:177.693333pt;}
.x49{left:179.840000pt;}
.x41{left:180.800000pt;}
.x3a{left:183.133333pt;}
.x7d{left:185.186667pt;}
.x42{left:186.240000pt;}
.x6b{left:187.706667pt;}
.x10{left:195.906667pt;}
.x43{left:199.520000pt;}
.x68{left:206.693333pt;}
.x63{left:209.213333pt;}
.x7e{left:211.133333pt;}
.x6{left:216.506667pt;}
.x30{left:222.746667pt;}
.x27{left:226.266667pt;}
.x81{left:228.666667pt;}
.x23{left:231.866667pt;}
.x9{left:234.626667pt;}
.x73{left:236.933333pt;}
.x1e{left:244.666667pt;}
.x19{left:256.546667pt;}
.xe{left:269.826667pt;}
.x52{left:271.200000pt;}
.x11{left:279.906667pt;}
.x72{left:283.266655pt;}
.x7{left:287.746667pt;}
.x58{left:294.626667pt;}
.x6f{left:299.266655pt;}
.x3e{left:302.626655pt;}
.x8{left:304.866667pt;}
.x40{left:307.106655pt;}
.x6d{left:312.666667pt;}
.x21{left:314.946655pt;}
.x50{left:317.506655pt;}
.x71{left:319.906655pt;}
.x2f{left:324.226655pt;}
.xb{left:325.986667pt;}
.x36{left:331.746655pt;}
.x78{left:340.706655pt;}
.x48{left:345.506667pt;}
.x4a{left:349.306667pt;}
.x55{left:352.026667pt;}
.x82{left:353.826667pt;}
.x17{left:357.346655pt;}
.x4b{left:362.426667pt;}
.x7a{left:364.226667pt;}
.x1d{left:366.626655pt;}
.x22{left:368.226655pt;}
.xa{left:383.306667pt;}
.x28{left:394.466667pt;}
.x75{left:396.000000pt;}
.x2c{left:397.186667pt;}
.x24{left:399.586667pt;}
.x1f{left:407.266667pt;}
.x1a{left:409.346667pt;}
.x79{left:420.893322pt;}
.x31{left:462.653333pt;}
.x83{left:478.973333pt;}
.x32{left:532.733333pt;}
.x59{left:540.253333pt;}
.x7f{left:560.893333pt;}
.x2d{left:563.293333pt;}
.x25{left:564.733333pt;}
.x1b{left:566.493333pt;}
.x29{left:568.253333pt;}
.x20{left:575.133333pt;}
.x5a{left:586.053333pt;}
.x2a{left:590.213322pt;}
.x80{left:598.533333pt;}
.x84{left:604.133333pt;}
.x3d{left:612.933322pt;}
.x3f{left:613.893322pt;}
.x33{left:622.533333pt;}
.x26{left:632.933322pt;}
.x64{left:636.933322pt;}
.x35{left:637.893322pt;}
.x65{left:640.933322pt;}
.x5b{left:653.893333pt;}
.x3{left:663.013333pt;}
.x14{left:667.653322pt;}
.x1c{left:696.933322pt;}
.x2e{left:720.933322pt;}
}




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