
    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_fca4e0e280141ad65e09c8a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_3d676d8be918449cf7929a49.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_f820e8ab9191b142b35c45c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_b2ef44752be8622f238d50f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_6a9dee808592fb95b4f67801.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008789;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_46242d4c14185ab6952ecb19.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.207031;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_067549725daab836d8fc952f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.207031;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_bed20695411d96295b1f7897.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0c2e754ff5545a679c4b385a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.008789;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5e7da7adecce820d5d14787f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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_cc049c29cd4f3c251418de0c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.000000px;}
.v1{vertical-align:24.000000px;}
.ls15{letter-spacing:-1.380000px;}
.ls5{letter-spacing:-1.260000px;}
.ls9{letter-spacing:-0.660000px;}
.ls26{letter-spacing:-0.585000px;}
.ls4{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.570000px;}
.ls10{letter-spacing:-0.492000px;}
.ls16{letter-spacing:-0.435000px;}
.ls8{letter-spacing:-0.294000px;}
.lsf{letter-spacing:-0.165000px;}
.ls3{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.060000px;}
.ls21{letter-spacing:-0.015000px;}
.ls1{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.015000px;}
.ls7{letter-spacing:0.063000px;}
.ls17{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.165000px;}
.ls6{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.300000px;}
.ls1f{letter-spacing:0.315000px;}
.ls25{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.435000px;}
.ls2{letter-spacing:0.456000px;}
.ls22{letter-spacing:0.465000px;}
.ls12{letter-spacing:0.930000px;}
.ls14{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.230000px;}
.lsa{letter-spacing:5.340000px;}
.ls0{letter-spacing:24.936000px;}
.ls24{letter-spacing:27.990000px;}
.ls13{letter-spacing:30.990000px;}
.ls1e{letter-spacing:32.490000px;}
.lsd{letter-spacing:34.920000px;}
.ls11{letter-spacing:56.490000px;}
.ls1b{letter-spacing:57.990000px;}
.ls19{letter-spacing:74.490000px;}
.ls1d{letter-spacing:80.490000px;}
.ls1a{letter-spacing:81.990000px;}
.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;}
}
.ws18{word-spacing:-60.000000px;}
.ws5{word-spacing:-33.120000px;}
.ws1{word-spacing:-31.464000px;}
.ws11{word-spacing:-26.496000px;}
.ws10{word-spacing:-26.004000px;}
.ws8{word-spacing:-19.020000px;}
.wsb{word-spacing:-18.780000px;}
.wsc{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.120000px;}
.ws4{word-spacing:-16.902000px;}
.ws0{word-spacing:-15.024000px;}
.ws17{word-spacing:-15.015000px;}
.ws15{word-spacing:-14.520000px;}
.ws12{word-spacing:-14.085000px;}
.ws16{word-spacing:-14.070000px;}
.ws3{word-spacing:-14.064000px;}
.ws13{word-spacing:-13.650000px;}
.wsd{word-spacing:-13.515000px;}
.wsf{word-spacing:-13.185000px;}
.wse{word-spacing:-13.020000px;}
.ws6{word-spacing:-12.207000px;}
.ws9{word-spacing:-11.913000px;}
.ws2{word-spacing:-11.268000px;}
.ws14{word-spacing:-0.045000px;}
.ws7{word-spacing:0.000000px;}
._2f{margin-left:-3.630000px;}
._1b{margin-left:-2.529000px;}
._0{margin-left:-1.260000px;}
._1{width:1.395000px;}
._2{width:2.805000px;}
._17{width:3.903000px;}
._18{width:5.253000px;}
._6{width:6.426000px;}
._5{width:7.617000px;}
._21{width:8.628000px;}
._b{width:9.681000px;}
._a{width:11.325000px;}
._9{width:13.008000px;}
._1c{width:14.628000px;}
._10{width:16.617000px;}
._20{width:17.703000px;}
._e{width:18.765000px;}
._f{width:19.782000px;}
._11{width:20.976000px;}
._13{width:22.083000px;}
._12{width:23.172000px;}
._1f{width:24.813000px;}
._14{width:26.637000px;}
._19{width:27.762000px;}
._2d{width:31.140000px;}
._d{width:32.679000px;}
._c{width:34.905000px;}
._1a{width:36.396000px;}
._2c{width:41.280000px;}
._7{width:45.729000px;}
._8{width:47.025000px;}
._24{width:48.180000px;}
._15{width:50.349000px;}
._16{width:51.744000px;}
._4{width:58.146000px;}
._3{width:59.499000px;}
._26{width:62.700000px;}
._28{width:67.020000px;}
._29{width:70.920000px;}
._25{width:77.100000px;}
._22{width:102.069000px;}
._2e{width:110.160000px;}
._23{width:114.420000px;}
._2a{width:118.380000px;}
._27{width:132.300000px;}
._1e{width:186.888000px;}
._1d{width:188.538000px;}
._2b{width:259.860000px;}
.fc4{color:rgb(0,147,201);}
.fc3{color:rgb(0,112,192);}
.fc5{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:3.000000px;}
.fs7{font-size:6.000000px;}
.fs4{font-size:12.000000px;}
.fse{font-size:18.000000px;}
.fs14{font-size:30.000000px;}
.fsc{font-size:36.000000px;}
.fsd{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs10{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs13{font-size:63.000000px;}
.fs1{font-size:72.000000px;}
.fsf{font-size:84.000000px;}
.fs12{font-size:96.000000px;}
.fsa{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fs11{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.fs8{font-size:165.000000px;}
.fsb{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y218{bottom:0.015000px;}
.y59{bottom:1.125000px;}
.y205{bottom:2.235000px;}
.y3{bottom:2.250000px;}
.y208{bottom:2.610000px;}
.ya{bottom:2.625000px;}
.y20e{bottom:2.655000px;}
.y75{bottom:3.000000px;}
.y15a{bottom:3.030000px;}
.y148{bottom:3.045000px;}
.ya7{bottom:3.360000px;}
.y1b{bottom:3.375000px;}
.y63{bottom:3.735000px;}
.y1d{bottom:3.750000px;}
.y216{bottom:4.500000px;}
.y43{bottom:5.625000px;}
.y18{bottom:6.000000px;}
.ya5{bottom:7.110000px;}
.y6a{bottom:7.125000px;}
.yda{bottom:7.500000px;}
.y48{bottom:8.280000px;}
.yb{bottom:8.625000px;}
.y4{bottom:11.250000px;}
.y7{bottom:14.625000px;}
.y187{bottom:15.750000px;}
.y1c3{bottom:16.125000px;}
.y27{bottom:16.500000px;}
.y57{bottom:16.875000px;}
.y3e{bottom:17.250000px;}
.y6{bottom:17.625000px;}
.y62{bottom:18.000000px;}
.y65{bottom:18.735000px;}
.y66{bottom:19.500000px;}
.y213{bottom:19.875000px;}
.y8{bottom:20.625000px;}
.yb1{bottom:21.000000px;}
.ya2{bottom:21.030000px;}
.yd7{bottom:21.360000px;}
.y74{bottom:21.375000px;}
.y159{bottom:21.405000px;}
.yfd{bottom:21.420000px;}
.yc{bottom:21.750000px;}
.y2{bottom:23.250000px;}
.y101{bottom:23.295000px;}
.y26{bottom:28.125000px;}
.y186{bottom:29.625000px;}
.y3d{bottom:31.500000px;}
.ye{bottom:31.875000px;}
.y10{bottom:32.625000px;}
.y17{bottom:33.750000px;}
.y100{bottom:34.545000px;}
.y212{bottom:37.500000px;}
.y73{bottom:39.375000px;}
.ya1{bottom:39.405000px;}
.yfc{bottom:39.420000px;}
.y25{bottom:39.750000px;}
.y67{bottom:40.125000px;}
.y118{bottom:41.632500px;}
.y185{bottom:43.125000px;}
.y1c2{bottom:43.132500px;}
.y56{bottom:45.780000px;}
.y3c{bottom:46.125000px;}
.y61{bottom:47.280000px;}
.y24{bottom:50.625000px;}
.y184{bottom:56.632500px;}
.y72{bottom:57.367500px;}
.yd6{bottom:57.375000px;}
.ydf{bottom:57.382500px;}
.y158{bottom:57.405000px;}
.yfb{bottom:57.420000px;}
.y46{bottom:57.780000px;}
.y45{bottom:59.280000px;}
.ya0{bottom:60.030000px;}
.y55{bottom:60.405000px;}
.y3b{bottom:60.750000px;}
.y16{bottom:61.530000px;}
.y9{bottom:61.537500px;}
.y23{bottom:62.625000px;}
.y117{bottom:65.287500px;}
.y183{bottom:70.162500px;}
.y20f{bottom:70.500000px;}
.y1c1{bottom:70.537500px;}
.y5{bottom:71.662500px;}
.y22{bottom:74.250000px;}
.y3a{bottom:75.000000px;}
.y54{bottom:75.030000px;}
.ye1{bottom:75.375000px;}
.y157{bottom:75.405000px;}
.y71{bottom:75.412500px;}
.y147{bottom:75.420000px;}
.yd5{bottom:75.780000px;}
.yde{bottom:75.787500px;}
.yfa{bottom:75.795000px;}
.y60{bottom:76.155000px;}
.y15f{bottom:76.530000px;}
.y9f{bottom:83.655000px;}
.y116{bottom:83.662500px;}
.y182{bottom:84.037500px;}
.y21{bottom:85.170000px;}
.y15{bottom:89.280000px;}
.y39{bottom:89.625000px;}
.y5f{bottom:90.780000px;}
.yb0{bottom:93.412500px;}
.yd4{bottom:93.780000px;}
.y70{bottom:93.787500px;}
.yf9{bottom:93.795000px;}
.y156{bottom:94.905000px;}
.y20{bottom:96.045000px;}
.y181{bottom:97.537500px;}
.y9e{bottom:101.655000px;}
.y115{bottom:101.662500px;}
.y19{bottom:102.780000px;}
.y14a{bottom:103.537500px;}
.y38{bottom:103.875000px;}
.y53{bottom:103.905000px;}
.y163{bottom:103.912500px;}
.y5e{bottom:105.030000px;}
.ydb{bottom:106.162500px;}
.y1f{bottom:106.920000px;}
.y6b{bottom:107.662500px;}
.ya8{bottom:108.037500px;}
.y10c{bottom:109.537500px;}
.y180{bottom:111.037500px;}
.y151{bottom:111.780000px;}
.y6f{bottom:111.787500px;}
.yf8{bottom:111.795000px;}
.yaf{bottom:114.037500px;}
.y41{bottom:114.405000px;}
.y188{bottom:114.787500px;}
.y14{bottom:117.030000px;}
.y37{bottom:118.500000px;}
.y52{bottom:118.530000px;}
.y1e{bottom:118.545000px;}
.y9d{bottom:119.655000px;}
.y114{bottom:119.662500px;}
.y17f{bottom:124.537500px;}
.y1cb{bottom:124.912500px;}
.y5c{bottom:126.420000px;}
.y150{bottom:129.780000px;}
.y6e{bottom:129.787500px;}
.y146{bottom:129.795000px;}
.ydd{bottom:130.162500px;}
.yf7{bottom:130.170000px;}
.y51{bottom:132.780000px;}
.y36{bottom:133.170000px;}
.yd3{bottom:135.405000px;}
.yae{bottom:137.662500px;}
.y9c{bottom:138.030000px;}
.y17e{bottom:138.037500px;}
.y1c0{bottom:138.412500px;}
.y5d{bottom:139.170000px;}
.yd2{bottom:139.905000px;}
.y5b{bottom:141.045000px;}
.y13{bottom:144.780000px;}
.y35{bottom:147.405000px;}
.y14f{bottom:148.155000px;}
.y6d{bottom:148.162500px;}
.yf6{bottom:148.200000px;}
.y145{bottom:148.215000px;}
.y17d{bottom:151.912500px;}
.y149{bottom:155.655000px;}
.yad{bottom:156.037500px;}
.y9b{bottom:156.075000px;}
.yd1{bottom:157.905000px;}
.y50{bottom:161.655000px;}
.y34{bottom:162.030000px;}
.y219{bottom:165.030000px;}
.y17c{bottom:165.412500px;}
.y14e{bottom:166.155000px;}
.y6c{bottom:166.162500px;}
.yf5{bottom:166.200000px;}
.y217{bottom:166.530000px;}
.y119{bottom:171.405000px;}
.y12{bottom:172.530000px;}
.yac{bottom:174.037500px;}
.y9a{bottom:174.075000px;}
.yd0{bottom:175.905000px;}
.y4f{bottom:176.325000px;}
.y33{bottom:176.655000px;}
.y17b{bottom:178.912500px;}
.y14d{bottom:184.155000px;}
.ydc{bottom:184.162500px;}
.yf4{bottom:184.200000px;}
.y144{bottom:184.215000px;}
.y14c{bottom:185.280000px;}
.y32{bottom:190.905000px;}
.y4e{bottom:190.950000px;}
.yab{bottom:192.037500px;}
.y99{bottom:192.075000px;}
.y17a{bottom:192.412500px;}
.y1bf{bottom:192.442500px;}
.y1ca{bottom:192.817500px;}
.ycf{bottom:194.280000px;}
.y143{bottom:202.215000px;}
.yf3{bottom:202.575000px;}
.y215{bottom:203.700000px;}
.y4d{bottom:205.200000px;}
.y31{bottom:205.530000px;}
.y179{bottom:205.957500px;}
.y1be{bottom:206.317500px;}
.y98{bottom:210.450000px;}
.y113{bottom:210.457500px;}
.yce{bottom:212.325000px;}
.yaa{bottom:212.692500px;}
.y214{bottom:218.325000px;}
.ya9{bottom:219.442500px;}
.y1cc{bottom:219.450000px;}
.y30{bottom:219.780000px;}
.y1bd{bottom:219.817500px;}
.y4c{bottom:219.825000px;}
.y178{bottom:219.832500px;}
.y211{bottom:220.200000px;}
.yf2{bottom:220.575000px;}
.y201{bottom:221.700000px;}
.ycd{bottom:230.325000px;}
.y112{bottom:231.082500px;}
.y1bc{bottom:233.317500px;}
.y177{bottom:233.332500px;}
.y97{bottom:233.700000px;}
.y2f{bottom:234.405000px;}
.y4b{bottom:234.450000px;}
.y200{bottom:235.200000px;}
.yf1{bottom:238.575000px;}
.y142{bottom:238.590000px;}
.y96{bottom:246.450000px;}
.y1bb{bottom:246.817500px;}
.y176{bottom:246.832500px;}
.ycc{bottom:248.325000px;}
.y4a{bottom:248.700000px;}
.y2e{bottom:249.030000px;}
.y111{bottom:254.707500px;}
.yf0{bottom:256.575000px;}
.y141{bottom:256.590000px;}
.y175{bottom:260.332500px;}
.y1ba{bottom:260.692500px;}
.y2d{bottom:263.325000px;}
.y95{bottom:264.825000px;}
.ycb{bottom:268.950000px;}
.y110{bottom:272.692500px;}
.y210{bottom:273.450000px;}
.y174{bottom:273.832500px;}
.y1b9{bottom:274.192500px;}
.yef{bottom:274.995000px;}
.y49{bottom:277.575000px;}
.y2c{bottom:277.950000px;}
.y94{bottom:282.855000px;}
.y173{bottom:287.692500px;}
.y1b8{bottom:287.707500px;}
.y69{bottom:288.825000px;}
.y10f{bottom:290.707500px;}
.y2b{bottom:292.575000px;}
.yee{bottom:292.980000px;}
.y140{bottom:292.995000px;}
.y93{bottom:300.855000px;}
.y20d{bottom:301.200000px;}
.y172{bottom:301.207500px;}
.yd9{bottom:305.370000px;}
.y10e{bottom:308.707500px;}
.y10d{bottom:309.832500px;}
.yca{bottom:310.950000px;}
.yed{bottom:310.980000px;}
.y13f{bottom:310.995000px;}
.y171{bottom:314.707500px;}
.y20c{bottom:315.120000px;}
.y92{bottom:318.855000px;}
.y68{bottom:324.480000px;}
.y170{bottom:328.237500px;}
.y1b7{bottom:328.612500px;}
.y20b{bottom:328.620000px;}
.yc9{bottom:328.950000px;}
.y13e{bottom:328.995000px;}
.yec{bottom:329.355000px;}
.y91{bottom:337.230000px;}
.y64{bottom:339.495000px;}
.ya6{bottom:341.370000px;}
.yd8{bottom:341.730000px;}
.y16f{bottom:342.112500px;}
.y20a{bottom:342.120000px;}
.yc8{bottom:346.980000px;}
.yeb{bottom:347.355000px;}
.y13d{bottom:347.370000px;}
.y90{bottom:355.230000px;}
.y16e{bottom:355.612500px;}
.y209{bottom:355.620000px;}
.yb2{bottom:357.120000px;}
.ya4{bottom:357.870000px;}
.yc7{bottom:365.355000px;}
.y13c{bottom:367.995000px;}
.y16d{bottom:369.112500px;}
.y207{bottom:369.120000px;}
.y8f{bottom:373.230000px;}
.y16c{bottom:382.612500px;}
.y1c9{bottom:382.987500px;}
.y206{bottom:382.995000px;}
.yc6{bottom:383.355000px;}
.y1f5{bottom:386.745000px;}
.yd{bottom:388.995000px;}
.y8e{bottom:391.230000px;}
.y13b{bottom:391.665000px;}
.y28{bottom:394.620000px;}
.ya3{bottom:395.355000px;}
.y16b{bottom:396.112500px;}
.y1b6{bottom:396.487500px;}
.y204{bottom:396.495000px;}
.y1f4{bottom:400.245000px;}
.yc5{bottom:401.355000px;}
.yea{bottom:401.775000px;}
.y8d{bottom:409.650000px;}
.y13a{bottom:409.665000px;}
.y16a{bottom:409.987500px;}
.y203{bottom:409.995000px;}
.y1f3{bottom:414.120000px;}
.yc4{bottom:419.355000px;}
.y79{bottom:419.370000px;}
.ye9{bottom:419.775000px;}
.y169{bottom:423.487500px;}
.y202{bottom:424.245000px;}
.yff{bottom:426.150000px;}
.y1f2{bottom:427.620000px;}
.y8c{bottom:427.635000px;}
.y139{bottom:427.665000px;}
.y10b{bottom:433.275000px;}
.y168{bottom:436.987500px;}
.yc3{bottom:437.730000px;}
.ye8{bottom:437.775000px;}
.y1f1{bottom:441.120000px;}
.y8b{bottom:445.635000px;}
.y138{bottom:446.040000px;}
.y10a{bottom:448.275000px;}
.y167{bottom:450.487500px;}
.y1b5{bottom:450.532500px;}
.y1c8{bottom:450.907500px;}
.y1f0{bottom:454.620000px;}
.yc2{bottom:455.730000px;}
.ye7{bottom:456.150000px;}
.y8a{bottom:464.010000px;}
.y166{bottom:464.032500px;}
.y137{bottom:464.040000px;}
.y1b4{bottom:464.407500px;}
.y1ff{bottom:466.650000px;}
.y1ef{bottom:468.495000px;}
.yc1{bottom:473.760000px;}
.ye6{bottom:474.150000px;}
.y165{bottom:477.907500px;}
.y1fe{bottom:480.150000px;}
.y89{bottom:482.010000px;}
.y1ee{bottom:482.025000px;}
.y164{bottom:482.032500px;}
.y136{bottom:482.040000px;}
.y109{bottom:484.275000px;}
.y1b3{bottom:491.407500px;}
.yc0{bottom:492.135000px;}
.ye5{bottom:492.150000px;}
.y1fd{bottom:493.650000px;}
.y1ed{bottom:495.525000px;}
.y108{bottom:499.650000px;}
.y88{bottom:500.010000px;}
.y135{bottom:500.040000px;}
.y1b2{bottom:504.907500px;}
.y1fc{bottom:507.525000px;}
.y1ec{bottom:509.025000px;}
.ybf{bottom:510.135000px;}
.ye4{bottom:510.150000px;}
.y5a{bottom:511.650000px;}
.y87{bottom:518.010000px;}
.y134{bottom:518.445000px;}
.y1b1{bottom:518.782500px;}
.y1fb{bottom:521.025000px;}
.y1eb{bottom:522.525000px;}
.ybe{bottom:528.135000px;}
.ye3{bottom:528.555000px;}
.y1b0{bottom:532.282500px;}
.yfe{bottom:532.305000px;}
.y1fa{bottom:534.525000px;}
.y1ea{bottom:536.400000px;}
.y86{bottom:536.430000px;}
.y133{bottom:536.445000px;}
.y1af{bottom:545.782500px;}
.ybd{bottom:546.135000px;}
.y1f9{bottom:548.025000px;}
.y1e9{bottom:549.900000px;}
.ye2{bottom:554.025000px;}
.y85{bottom:554.430000px;}
.y132{bottom:557.070000px;}
.y1ae{bottom:559.282500px;}
.y1f8{bottom:561.570000px;}
.y1e8{bottom:563.400000px;}
.ybc{bottom:564.510000px;}
.y84{bottom:572.430000px;}
.y1ad{bottom:572.782500px;}
.y1c7{bottom:573.157500px;}
.y1f7{bottom:575.445000px;}
.y1e7{bottom:576.900000px;}
.y131{bottom:580.320000px;}
.ybb{bottom:582.510000px;}
.y1ac{bottom:586.687500px;}
.y1f6{bottom:589.695000px;}
.y1e6{bottom:590.400000px;}
.y83{bottom:590.805000px;}
.y29{bottom:591.930000px;}
.y162{bottom:593.070000px;}
.y130{bottom:596.820000px;}
.y1ab{bottom:600.187500px;}
.yba{bottom:603.180000px;}
.y1e5{bottom:604.320000px;}
.y82{bottom:608.805000px;}
.y161{bottom:609.195000px;}
.y1aa{bottom:613.687500px;}
.y12f{bottom:615.195000px;}
.y1e4{bottom:617.805000px;}
.y81{bottom:626.805000px;}
.y1a9{bottom:627.187500px;}
.y1e3{bottom:631.305000px;}
.y12e{bottom:633.195000px;}
.y1a8{bottom:640.687500px;}
.y1c6{bottom:641.062500px;}
.y80{bottom:644.805000px;}
.y160{bottom:645.195000px;}
.y12d{bottom:651.225000px;}
.y1a7{bottom:654.562500px;}
.y1e2{bottom:658.305000px;}
.y15e{bottom:660.945000px;}
.yb9{bottom:662.805000px;}
.y7f{bottom:663.210000px;}
.y58{bottom:664.695000px;}
.y1a6{bottom:668.062500px;}
.y12c{bottom:669.225000px;}
.y44{bottom:669.570000px;}
.y1e1{bottom:672.180000px;}
.yb8{bottom:681.180000px;}
.y7e{bottom:681.210000px;}
.y1a5{bottom:681.562500px;}
.y47{bottom:684.195000px;}
.y1e0{bottom:685.680000px;}
.y12b{bottom:687.615000px;}
.y2a{bottom:693.975000px;}
.y1a4{bottom:695.062500px;}
.yb7{bottom:699.180000px;}
.y7d{bottom:699.210000px;}
.y12a{bottom:705.600000px;}
.y1a3{bottom:708.592500px;}
.y1c5{bottom:708.982500px;}
.y1df{bottom:712.680000px;}
.yb6{bottom:717.210000px;}
.y7c{bottom:717.585000px;}
.y1a2{bottom:722.467500px;}
.y129{bottom:723.600000px;}
.y1de{bottom:726.600000px;}
.y42{bottom:730.350000px;}
.y7b{bottom:735.585000px;}
.y1a1{bottom:735.967500px;}
.y40{bottom:737.100000px;}
.y1dd{bottom:740.100000px;}
.y128{bottom:741.975000px;}
.y1a0{bottom:749.467500px;}
.y15d{bottom:751.350000px;}
.y7a{bottom:753.585000px;}
.y1dc{bottom:753.600000px;}
.y127{bottom:762.600000px;}
.y19f{bottom:762.967500px;}
.y15c{bottom:764.475000px;}
.y1db{bottom:767.100000px;}
.yb5{bottom:771.585000px;}
.y19e{bottom:776.842500px;}
.y1da{bottom:780.600000px;}
.y126{bottom:785.895000px;}
.yb4{bottom:789.585000px;}
.y19d{bottom:790.342500px;}
.y1d9{bottom:794.475000px;}
.y15b{bottom:800.475000px;}
.y125{bottom:802.395000px;}
.y19c{bottom:803.842500px;}
.y1d8{bottom:807.975000px;}
.yb3{bottom:810.210000px;}
.y155{bottom:816.225000px;}
.y19b{bottom:817.342500px;}
.y124{bottom:820.395000px;}
.y1d7{bottom:821.475000px;}
.y19a{bottom:830.887500px;}
.y1c4{bottom:831.262500px;}
.y1d6{bottom:834.975000px;}
.y123{bottom:838.770000px;}
.y199{bottom:844.762500px;}
.y1d5{bottom:848.475000px;}
.y122{bottom:856.770000px;}
.y198{bottom:858.262500px;}
.y1d4{bottom:862.380000px;}
.y3f{bottom:863.130000px;}
.y1c{bottom:868.005000px;}
.y197{bottom:871.762500px;}
.y121{bottom:874.770000px;}
.y1d3{bottom:875.880000px;}
.y196{bottom:885.262500px;}
.y1d2{bottom:889.380000px;}
.y120{bottom:892.770000px;}
.y195{bottom:899.137500px;}
.y1d1{bottom:902.880000px;}
.y11f{bottom:911.175000px;}
.y194{bottom:912.637500px;}
.y1d0{bottom:916.380000px;}
.y154{bottom:925.005000px;}
.y193{bottom:926.137500px;}
.y11e{bottom:929.175000px;}
.y1cf{bottom:930.255000px;}
.y153{bottom:938.145000px;}
.y192{bottom:939.637500px;}
.y1ce{bottom:943.755000px;}
.y11d{bottom:947.175000px;}
.y191{bottom:953.137500px;}
.y1cd{bottom:957.255000px;}
.y11c{bottom:965.550000px;}
.y190{bottom:967.042500px;}
.y152{bottom:974.175000px;}
.y18f{bottom:980.542500px;}
.y11b{bottom:983.550000px;}
.y14b{bottom:988.800000px;}
.y18e{bottom:994.042500px;}
.y107{bottom:995.925000px;}
.y1a{bottom:998.175000px;}
.y11a{bottom:1001.550000px;}
.y18d{bottom:1007.542500px;}
.y106{bottom:1009.425000px;}
.y11{bottom:1014.675000px;}
.y18c{bottom:1021.042500px;}
.y105{bottom:1022.925000px;}
.y18b{bottom:1034.917500px;}
.y104{bottom:1036.425000px;}
.y18a{bottom:1048.417500px;}
.y103{bottom:1050.300000px;}
.y189{bottom:1061.917500px;}
.y102{bottom:1064.550000px;}
.ye0{bottom:1097.580000px;}
.yf{bottom:1153.455000px;}
.y78{bottom:1191.705000px;}
.y77{bottom:1210.500000px;}
.y1{bottom:1228.500000px;}
.y76{bottom:1229.250000px;}
.h58{height:3.001465px;}
.hd{height:3.999023px;}
.h21{height:4.166016px;}
.h1d{height:4.875000px;}
.h9{height:5.625000px;}
.h24{height:6.002930px;}
.h20{height:6.750000px;}
.h1e{height:8.332031px;}
.h23{height:9.787500px;}
.ha{height:12.005859px;}
.h26{height:12.498047px;}
.h4d{height:13.125000px;}
.h42{height:13.500000px;}
.h41{height:13.537500px;}
.h43{height:13.875000px;}
.h55{height:13.912500px;}
.h59{height:14.250000px;}
.h45{height:15.000000px;}
.h49{height:16.125000px;}
.h16{height:16.500000px;}
.h29{height:18.008789px;}
.h52{height:20.830078px;}
.h56{height:30.476074px;}
.h5{height:31.500000px;}
.h38{height:32.625000px;}
.h4c{height:32.647500px;}
.h2f{height:32.662500px;}
.h3c{height:33.000000px;}
.h2d{height:33.750000px;}
.h5a{height:36.000000px;}
.h19{height:36.017578px;}
.h5b{height:37.162500px;}
.hb{height:38.287500px;}
.h1a{height:39.019043px;}
.h35{height:39.029297px;}
.h4e{height:39.351562px;}
.h2e{height:40.500000px;}
.h4{height:41.660156px;}
.h4b{height:43.743164px;}
.h7{height:43.912500px;}
.h46{height:44.270508px;}
.h40{height:45.021973px;}
.h8{height:48.023438px;}
.h17{height:49.189453px;}
.h2a{height:49.500000px;}
.h1{height:49.804688px;}
.h6{height:49.992188px;}
.h57{height:52.500000px;}
.h2c{height:54.026367px;}
.h44{height:54.375000px;}
.h10{height:55.537500px;}
.h3{height:60.029297px;}
.h32{height:60.079043px;}
.h22{height:60.787500px;}
.h2b{height:63.000000px;}
.h3b{height:63.030762px;}
.h36{height:78.703125px;}
.h2{height:79.912500px;}
.h33{height:84.041016px;}
.h13{height:84.667969px;}
.h11{height:89.648438px;}
.h3e{height:90.375000px;}
.h50{height:90.412500px;}
.h37{height:96.046875px;}
.h30{height:98.378906px;}
.hc{height:108.000000px;}
.h4f{height:108.787500px;}
.h28{height:117.037500px;}
.h1f{height:126.037500px;}
.h18{height:130.162500px;}
.hf{height:136.962891px;}
.h15{height:137.730469px;}
.h14{height:138.787500px;}
.h27{height:153.030000px;}
.h31{height:181.170000px;}
.h12{height:194.325000px;}
.h4a{height:199.155000px;}
.h3d{height:199.200000px;}
.h39{height:233.325000px;}
.h25{height:289.575000px;}
.h1c{height:304.200000px;}
.h47{height:323.745000px;}
.h51{height:489.150000px;}
.h3f{height:543.555000px;}
.h1b{height:603.570000px;}
.h34{height:768.600000px;}
.he{height:820.005000px;}
.h3a{height:830.850000px;}
.h54{height:968.505000px;}
.h48{height:1016.550000px;}
.h53{height:1073.175000px;}
.h0{height:1263.000000px;}
.w22{width:16.875000px;}
.w8{width:18.000000px;}
.wc{width:21.375000px;}
.w2f{width:21.750000px;}
.w2d{width:31.875000px;}
.w27{width:31.912500px;}
.w2a{width:32.250000px;}
.w29{width:42.037500px;}
.w2b{width:45.412500px;}
.w28{width:45.750000px;}
.w2e{width:45.787500px;}
.w6{width:58.162500px;}
.w26{width:58.500000px;}
.w7{width:62.250000px;}
.w1c{width:63.037500px;}
.w13{width:92.287500px;}
.w3{width:96.412500px;}
.w15{width:97.162500px;}
.w1f{width:98.662500px;}
.w19{width:99.412500px;}
.w11{width:111.787500px;}
.wa{width:111.825000px;}
.w37{width:114.412500px;}
.w16{width:117.825000px;}
.w14{width:121.162500px;}
.w12{width:121.200000px;}
.w33{width:135.450000px;}
.w10{width:140.287500px;}
.w36{width:148.575000px;}
.w24{width:148.912500px;}
.w32{width:148.950000px;}
.w4{width:185.700000px;}
.w20{width:186.450000px;}
.w1a{width:188.325000px;}
.w31{width:212.700000px;}
.w35{width:223.200000px;}
.w34{width:226.200000px;}
.wb{width:227.700000px;}
.w38{width:236.745000px;}
.w2c{width:286.245000px;}
.we{width:339.525000px;}
.wd{width:378.570000px;}
.w1b{width:450.945000px;}
.w21{width:453.570000px;}
.w5{width:461.445000px;}
.w25{width:635.925000px;}
.w9{width:721.455000px;}
.w39{width:722.925000px;}
.wf{width:739.455000px;}
.w18{width:766.425000px;}
.w30{width:779.955000px;}
.w1e{width:780.330000px;}
.w17{width:784.425000px;}
.w23{width:784.830000px;}
.w1d{width:801.705000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:5.250000px;}
.x7{left:8.250000px;}
.x18{left:9.375000px;}
.x15{left:10.905000px;}
.x1a{left:13.500000px;}
.xb{left:18.360000px;}
.x26{left:23.610000px;}
.x24{left:26.250000px;}
.x2b{left:28.875000px;}
.x39{left:34.875000px;}
.x9{left:36.750000px;}
.xc{left:43.500000px;}
.x2{left:45.787500px;}
.xa{left:49.905000px;}
.x41{left:51.750000px;}
.x1{left:54.037487px;}
.x25{left:55.155000px;}
.x28{left:61.500000px;}
.x2c{left:62.662500px;}
.x1d{left:63.787500px;}
.x27{left:67.162500px;}
.x3b{left:72.037500px;}
.x3d{left:75.412500px;}
.x3a{left:82.537500px;}
.x3{left:87.037500px;}
.x20{left:89.662500px;}
.x1f{left:95.662487px;}
.x12{left:102.412500px;}
.xd{left:108.037500px;}
.x3c{left:109.537500px;}
.xe{left:126.037500px;}
.x4{left:142.200000px;}
.x21{left:145.200000px;}
.x5{left:173.700000px;}
.x13{left:186.075000px;}
.x2d{left:211.575000px;}
.xf{left:219.870000px;}
.x2f{left:226.620000px;}
.x29{left:234.494987px;}
.x31{left:285.120000px;}
.x3e{left:288.120000px;}
.x14{left:297.870000px;}
.x32{left:317.025000px;}
.x6{left:327.900000px;}
.x2a{left:330.900000px;}
.x22{left:333.525000px;}
.x42{left:350.407500px;}
.x33{left:362.775000px;}
.x34{left:404.820000px;}
.x16{left:419.070000px;}
.x35{left:437.070000px;}
.x1c{left:446.444987px;}
.x10{left:447.570000px;}
.x43{left:450.937500px;}
.x11{left:468.945000px;}
.x36{left:482.475000px;}
.x17{left:511.350000px;}
.x1e{left:555.974987px;}
.x40{left:561.600000px;}
.x3f{left:572.520000px;}
.x2e{left:620.880000px;}
.x19{left:632.520000px;}
.x1b{left:729.675000px;}
.x37{left:768.720000px;}
.x23{left:784.470000px;}
.x8{left:789.345000px;}
.x38{left:800.595000px;}
@media print{
.v3{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.666667pt;}
.v1{vertical-align:21.333333pt;}
.ls15{letter-spacing:-1.226667pt;}
.ls5{letter-spacing:-1.120000pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls26{letter-spacing:-0.520000pt;}
.ls4{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.506667pt;}
.ls10{letter-spacing:-0.437333pt;}
.ls16{letter-spacing:-0.386667pt;}
.ls8{letter-spacing:-0.261333pt;}
.lsf{letter-spacing:-0.146667pt;}
.ls3{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls21{letter-spacing:-0.013333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.013333pt;}
.ls7{letter-spacing:0.056000pt;}
.ls17{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.146667pt;}
.ls6{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.266667pt;}
.ls1f{letter-spacing:0.280000pt;}
.ls25{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.386667pt;}
.ls2{letter-spacing:0.405333pt;}
.ls22{letter-spacing:0.413333pt;}
.ls12{letter-spacing:0.826667pt;}
.ls14{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.093333pt;}
.lsa{letter-spacing:4.746667pt;}
.ls0{letter-spacing:22.165333pt;}
.ls24{letter-spacing:24.880000pt;}
.ls13{letter-spacing:27.546667pt;}
.ls1e{letter-spacing:28.880000pt;}
.lsd{letter-spacing:31.040000pt;}
.ls11{letter-spacing:50.213333pt;}
.ls1b{letter-spacing:51.546667pt;}
.ls19{letter-spacing:66.213333pt;}
.ls1d{letter-spacing:71.546667pt;}
.ls1a{letter-spacing:72.880000pt;}
.ws18{word-spacing:-53.333333pt;}
.ws5{word-spacing:-29.440000pt;}
.ws1{word-spacing:-27.968000pt;}
.ws11{word-spacing:-23.552000pt;}
.ws10{word-spacing:-23.114667pt;}
.ws8{word-spacing:-16.906667pt;}
.wsb{word-spacing:-16.693333pt;}
.wsc{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.106667pt;}
.ws4{word-spacing:-15.024000pt;}
.ws0{word-spacing:-13.354667pt;}
.ws17{word-spacing:-13.346667pt;}
.ws15{word-spacing:-12.906667pt;}
.ws12{word-spacing:-12.520000pt;}
.ws16{word-spacing:-12.506667pt;}
.ws3{word-spacing:-12.501333pt;}
.ws13{word-spacing:-12.133333pt;}
.wsd{word-spacing:-12.013333pt;}
.wsf{word-spacing:-11.720000pt;}
.wse{word-spacing:-11.573333pt;}
.ws6{word-spacing:-10.850667pt;}
.ws9{word-spacing:-10.589333pt;}
.ws2{word-spacing:-10.016000pt;}
.ws14{word-spacing:-0.040000pt;}
.ws7{word-spacing:0.000000pt;}
._2f{margin-left:-3.226667pt;}
._1b{margin-left:-2.248000pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.240000pt;}
._2{width:2.493333pt;}
._17{width:3.469333pt;}
._18{width:4.669333pt;}
._6{width:5.712000pt;}
._5{width:6.770667pt;}
._21{width:7.669333pt;}
._b{width:8.605333pt;}
._a{width:10.066667pt;}
._9{width:11.562667pt;}
._1c{width:13.002667pt;}
._10{width:14.770667pt;}
._20{width:15.736000pt;}
._e{width:16.680000pt;}
._f{width:17.584000pt;}
._11{width:18.645333pt;}
._13{width:19.629333pt;}
._12{width:20.597333pt;}
._1f{width:22.056000pt;}
._14{width:23.677333pt;}
._19{width:24.677333pt;}
._2d{width:27.680000pt;}
._d{width:29.048000pt;}
._c{width:31.026667pt;}
._1a{width:32.352000pt;}
._2c{width:36.693333pt;}
._7{width:40.648000pt;}
._8{width:41.800000pt;}
._24{width:42.826667pt;}
._15{width:44.754667pt;}
._16{width:45.994667pt;}
._4{width:51.685333pt;}
._3{width:52.888000pt;}
._26{width:55.733333pt;}
._28{width:59.573333pt;}
._29{width:63.040000pt;}
._25{width:68.533333pt;}
._22{width:90.728000pt;}
._2e{width:97.920000pt;}
._23{width:101.706667pt;}
._2a{width:105.226667pt;}
._27{width:117.600000pt;}
._1e{width:166.122667pt;}
._1d{width:167.589333pt;}
._2b{width:230.986667pt;}
.fs15{font-size:2.666667pt;}
.fs7{font-size:5.333333pt;}
.fs4{font-size:10.666667pt;}
.fse{font-size:16.000000pt;}
.fs14{font-size:26.666667pt;}
.fsc{font-size:32.000000pt;}
.fsd{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs10{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs13{font-size:56.000000pt;}
.fs1{font-size:64.000000pt;}
.fsf{font-size:74.666667pt;}
.fs12{font-size:85.333333pt;}
.fsa{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fs11{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.fs8{font-size:146.666667pt;}
.fsb{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y218{bottom:0.013333pt;}
.y59{bottom:1.000000pt;}
.y205{bottom:1.986667pt;}
.y3{bottom:2.000000pt;}
.y208{bottom:2.320000pt;}
.ya{bottom:2.333333pt;}
.y20e{bottom:2.360000pt;}
.y75{bottom:2.666667pt;}
.y15a{bottom:2.693333pt;}
.y148{bottom:2.706667pt;}
.ya7{bottom:2.986667pt;}
.y1b{bottom:3.000000pt;}
.y63{bottom:3.320000pt;}
.y1d{bottom:3.333333pt;}
.y216{bottom:4.000000pt;}
.y43{bottom:5.000000pt;}
.y18{bottom:5.333333pt;}
.ya5{bottom:6.320000pt;}
.y6a{bottom:6.333333pt;}
.yda{bottom:6.666667pt;}
.y48{bottom:7.360000pt;}
.yb{bottom:7.666667pt;}
.y4{bottom:10.000000pt;}
.y7{bottom:13.000000pt;}
.y187{bottom:14.000000pt;}
.y1c3{bottom:14.333333pt;}
.y27{bottom:14.666667pt;}
.y57{bottom:15.000000pt;}
.y3e{bottom:15.333333pt;}
.y6{bottom:15.666667pt;}
.y62{bottom:16.000000pt;}
.y65{bottom:16.653333pt;}
.y66{bottom:17.333333pt;}
.y213{bottom:17.666667pt;}
.y8{bottom:18.333333pt;}
.yb1{bottom:18.666667pt;}
.ya2{bottom:18.693333pt;}
.yd7{bottom:18.986667pt;}
.y74{bottom:19.000000pt;}
.y159{bottom:19.026667pt;}
.yfd{bottom:19.040000pt;}
.yc{bottom:19.333333pt;}
.y2{bottom:20.666667pt;}
.y101{bottom:20.706667pt;}
.y26{bottom:25.000000pt;}
.y186{bottom:26.333333pt;}
.y3d{bottom:28.000000pt;}
.ye{bottom:28.333333pt;}
.y10{bottom:29.000000pt;}
.y17{bottom:30.000000pt;}
.y100{bottom:30.706667pt;}
.y212{bottom:33.333333pt;}
.y73{bottom:35.000000pt;}
.ya1{bottom:35.026667pt;}
.yfc{bottom:35.040000pt;}
.y25{bottom:35.333333pt;}
.y67{bottom:35.666667pt;}
.y118{bottom:37.006667pt;}
.y185{bottom:38.333333pt;}
.y1c2{bottom:38.340000pt;}
.y56{bottom:40.693333pt;}
.y3c{bottom:41.000000pt;}
.y61{bottom:42.026667pt;}
.y24{bottom:45.000000pt;}
.y184{bottom:50.340000pt;}
.y72{bottom:50.993333pt;}
.yd6{bottom:51.000000pt;}
.ydf{bottom:51.006667pt;}
.y158{bottom:51.026667pt;}
.yfb{bottom:51.040000pt;}
.y46{bottom:51.360000pt;}
.y45{bottom:52.693333pt;}
.ya0{bottom:53.360000pt;}
.y55{bottom:53.693333pt;}
.y3b{bottom:54.000000pt;}
.y16{bottom:54.693333pt;}
.y9{bottom:54.700000pt;}
.y23{bottom:55.666667pt;}
.y117{bottom:58.033333pt;}
.y183{bottom:62.366667pt;}
.y20f{bottom:62.666667pt;}
.y1c1{bottom:62.700000pt;}
.y5{bottom:63.700000pt;}
.y22{bottom:66.000000pt;}
.y3a{bottom:66.666667pt;}
.y54{bottom:66.693333pt;}
.ye1{bottom:67.000000pt;}
.y157{bottom:67.026667pt;}
.y71{bottom:67.033333pt;}
.y147{bottom:67.040000pt;}
.yd5{bottom:67.360000pt;}
.yde{bottom:67.366667pt;}
.yfa{bottom:67.373333pt;}
.y60{bottom:67.693333pt;}
.y15f{bottom:68.026667pt;}
.y9f{bottom:74.360000pt;}
.y116{bottom:74.366667pt;}
.y182{bottom:74.700000pt;}
.y21{bottom:75.706667pt;}
.y15{bottom:79.360000pt;}
.y39{bottom:79.666667pt;}
.y5f{bottom:80.693333pt;}
.yb0{bottom:83.033333pt;}
.yd4{bottom:83.360000pt;}
.y70{bottom:83.366667pt;}
.yf9{bottom:83.373333pt;}
.y156{bottom:84.360000pt;}
.y20{bottom:85.373333pt;}
.y181{bottom:86.700000pt;}
.y9e{bottom:90.360000pt;}
.y115{bottom:90.366667pt;}
.y19{bottom:91.360000pt;}
.y14a{bottom:92.033333pt;}
.y38{bottom:92.333333pt;}
.y53{bottom:92.360000pt;}
.y163{bottom:92.366667pt;}
.y5e{bottom:93.360000pt;}
.ydb{bottom:94.366667pt;}
.y1f{bottom:95.040000pt;}
.y6b{bottom:95.700000pt;}
.ya8{bottom:96.033333pt;}
.y10c{bottom:97.366667pt;}
.y180{bottom:98.700000pt;}
.y151{bottom:99.360000pt;}
.y6f{bottom:99.366667pt;}
.yf8{bottom:99.373333pt;}
.yaf{bottom:101.366667pt;}
.y41{bottom:101.693333pt;}
.y188{bottom:102.033333pt;}
.y14{bottom:104.026667pt;}
.y37{bottom:105.333333pt;}
.y52{bottom:105.360000pt;}
.y1e{bottom:105.373333pt;}
.y9d{bottom:106.360000pt;}
.y114{bottom:106.366667pt;}
.y17f{bottom:110.700000pt;}
.y1cb{bottom:111.033333pt;}
.y5c{bottom:112.373333pt;}
.y150{bottom:115.360000pt;}
.y6e{bottom:115.366667pt;}
.y146{bottom:115.373333pt;}
.ydd{bottom:115.700000pt;}
.yf7{bottom:115.706667pt;}
.y51{bottom:118.026667pt;}
.y36{bottom:118.373333pt;}
.yd3{bottom:120.360000pt;}
.yae{bottom:122.366667pt;}
.y9c{bottom:122.693333pt;}
.y17e{bottom:122.700000pt;}
.y1c0{bottom:123.033333pt;}
.y5d{bottom:123.706667pt;}
.yd2{bottom:124.360000pt;}
.y5b{bottom:125.373333pt;}
.y13{bottom:128.693333pt;}
.y35{bottom:131.026667pt;}
.y14f{bottom:131.693333pt;}
.y6d{bottom:131.700000pt;}
.yf6{bottom:131.733333pt;}
.y145{bottom:131.746667pt;}
.y17d{bottom:135.033333pt;}
.y149{bottom:138.360000pt;}
.yad{bottom:138.700000pt;}
.y9b{bottom:138.733333pt;}
.yd1{bottom:140.360000pt;}
.y50{bottom:143.693333pt;}
.y34{bottom:144.026667pt;}
.y219{bottom:146.693333pt;}
.y17c{bottom:147.033333pt;}
.y14e{bottom:147.693333pt;}
.y6c{bottom:147.700000pt;}
.yf5{bottom:147.733333pt;}
.y217{bottom:148.026667pt;}
.y119{bottom:152.360000pt;}
.y12{bottom:153.360000pt;}
.yac{bottom:154.700000pt;}
.y9a{bottom:154.733333pt;}
.yd0{bottom:156.360000pt;}
.y4f{bottom:156.733333pt;}
.y33{bottom:157.026667pt;}
.y17b{bottom:159.033333pt;}
.y14d{bottom:163.693333pt;}
.ydc{bottom:163.700000pt;}
.yf4{bottom:163.733333pt;}
.y144{bottom:163.746667pt;}
.y14c{bottom:164.693333pt;}
.y32{bottom:169.693333pt;}
.y4e{bottom:169.733333pt;}
.yab{bottom:170.700000pt;}
.y99{bottom:170.733333pt;}
.y17a{bottom:171.033333pt;}
.y1bf{bottom:171.060000pt;}
.y1ca{bottom:171.393333pt;}
.ycf{bottom:172.693333pt;}
.y143{bottom:179.746667pt;}
.yf3{bottom:180.066667pt;}
.y215{bottom:181.066667pt;}
.y4d{bottom:182.400000pt;}
.y31{bottom:182.693333pt;}
.y179{bottom:183.073333pt;}
.y1be{bottom:183.393333pt;}
.y98{bottom:187.066667pt;}
.y113{bottom:187.073333pt;}
.yce{bottom:188.733333pt;}
.yaa{bottom:189.060000pt;}
.y214{bottom:194.066667pt;}
.ya9{bottom:195.060000pt;}
.y1cc{bottom:195.066667pt;}
.y30{bottom:195.360000pt;}
.y1bd{bottom:195.393333pt;}
.y4c{bottom:195.400000pt;}
.y178{bottom:195.406667pt;}
.y211{bottom:195.733333pt;}
.yf2{bottom:196.066667pt;}
.y201{bottom:197.066667pt;}
.ycd{bottom:204.733333pt;}
.y112{bottom:205.406667pt;}
.y1bc{bottom:207.393333pt;}
.y177{bottom:207.406667pt;}
.y97{bottom:207.733333pt;}
.y2f{bottom:208.360000pt;}
.y4b{bottom:208.400000pt;}
.y200{bottom:209.066667pt;}
.yf1{bottom:212.066667pt;}
.y142{bottom:212.080000pt;}
.y96{bottom:219.066667pt;}
.y1bb{bottom:219.393333pt;}
.y176{bottom:219.406667pt;}
.ycc{bottom:220.733333pt;}
.y4a{bottom:221.066667pt;}
.y2e{bottom:221.360000pt;}
.y111{bottom:226.406667pt;}
.yf0{bottom:228.066667pt;}
.y141{bottom:228.080000pt;}
.y175{bottom:231.406667pt;}
.y1ba{bottom:231.726667pt;}
.y2d{bottom:234.066667pt;}
.y95{bottom:235.400000pt;}
.ycb{bottom:239.066667pt;}
.y110{bottom:242.393333pt;}
.y210{bottom:243.066667pt;}
.y174{bottom:243.406667pt;}
.y1b9{bottom:243.726667pt;}
.yef{bottom:244.440000pt;}
.y49{bottom:246.733333pt;}
.y2c{bottom:247.066667pt;}
.y94{bottom:251.426667pt;}
.y173{bottom:255.726667pt;}
.y1b8{bottom:255.740000pt;}
.y69{bottom:256.733333pt;}
.y10f{bottom:258.406667pt;}
.y2b{bottom:260.066667pt;}
.yee{bottom:260.426667pt;}
.y140{bottom:260.440000pt;}
.y93{bottom:267.426667pt;}
.y20d{bottom:267.733333pt;}
.y172{bottom:267.740000pt;}
.yd9{bottom:271.440000pt;}
.y10e{bottom:274.406667pt;}
.y10d{bottom:275.406667pt;}
.yca{bottom:276.400000pt;}
.yed{bottom:276.426667pt;}
.y13f{bottom:276.440000pt;}
.y171{bottom:279.740000pt;}
.y20c{bottom:280.106667pt;}
.y92{bottom:283.426667pt;}
.y68{bottom:288.426667pt;}
.y170{bottom:291.766667pt;}
.y1b7{bottom:292.100000pt;}
.y20b{bottom:292.106667pt;}
.yc9{bottom:292.400000pt;}
.y13e{bottom:292.440000pt;}
.yec{bottom:292.760000pt;}
.y91{bottom:299.760000pt;}
.y64{bottom:301.773333pt;}
.ya6{bottom:303.440000pt;}
.yd8{bottom:303.760000pt;}
.y16f{bottom:304.100000pt;}
.y20a{bottom:304.106667pt;}
.yc8{bottom:308.426667pt;}
.yeb{bottom:308.760000pt;}
.y13d{bottom:308.773333pt;}
.y90{bottom:315.760000pt;}
.y16e{bottom:316.100000pt;}
.y209{bottom:316.106667pt;}
.yb2{bottom:317.440000pt;}
.ya4{bottom:318.106667pt;}
.yc7{bottom:324.760000pt;}
.y13c{bottom:327.106667pt;}
.y16d{bottom:328.100000pt;}
.y207{bottom:328.106667pt;}
.y8f{bottom:331.760000pt;}
.y16c{bottom:340.100000pt;}
.y1c9{bottom:340.433333pt;}
.y206{bottom:340.440000pt;}
.yc6{bottom:340.760000pt;}
.y1f5{bottom:343.773333pt;}
.yd{bottom:345.773333pt;}
.y8e{bottom:347.760000pt;}
.y13b{bottom:348.146667pt;}
.y28{bottom:350.773333pt;}
.ya3{bottom:351.426667pt;}
.y16b{bottom:352.100000pt;}
.y1b6{bottom:352.433333pt;}
.y204{bottom:352.440000pt;}
.y1f4{bottom:355.773333pt;}
.yc5{bottom:356.760000pt;}
.yea{bottom:357.133333pt;}
.y8d{bottom:364.133333pt;}
.y13a{bottom:364.146667pt;}
.y16a{bottom:364.433333pt;}
.y203{bottom:364.440000pt;}
.y1f3{bottom:368.106667pt;}
.yc4{bottom:372.760000pt;}
.y79{bottom:372.773333pt;}
.ye9{bottom:373.133333pt;}
.y169{bottom:376.433333pt;}
.y202{bottom:377.106667pt;}
.yff{bottom:378.800000pt;}
.y1f2{bottom:380.106667pt;}
.y8c{bottom:380.120000pt;}
.y139{bottom:380.146667pt;}
.y10b{bottom:385.133333pt;}
.y168{bottom:388.433333pt;}
.yc3{bottom:389.093333pt;}
.ye8{bottom:389.133333pt;}
.y1f1{bottom:392.106667pt;}
.y8b{bottom:396.120000pt;}
.y138{bottom:396.480000pt;}
.y10a{bottom:398.466667pt;}
.y167{bottom:400.433333pt;}
.y1b5{bottom:400.473333pt;}
.y1c8{bottom:400.806667pt;}
.y1f0{bottom:404.106667pt;}
.yc2{bottom:405.093333pt;}
.ye7{bottom:405.466667pt;}
.y8a{bottom:412.453333pt;}
.y166{bottom:412.473333pt;}
.y137{bottom:412.480000pt;}
.y1b4{bottom:412.806667pt;}
.y1ff{bottom:414.800000pt;}
.y1ef{bottom:416.440000pt;}
.yc1{bottom:421.120000pt;}
.ye6{bottom:421.466667pt;}
.y165{bottom:424.806667pt;}
.y1fe{bottom:426.800000pt;}
.y89{bottom:428.453333pt;}
.y1ee{bottom:428.466667pt;}
.y164{bottom:428.473333pt;}
.y136{bottom:428.480000pt;}
.y109{bottom:430.466667pt;}
.y1b3{bottom:436.806667pt;}
.yc0{bottom:437.453333pt;}
.ye5{bottom:437.466667pt;}
.y1fd{bottom:438.800000pt;}
.y1ed{bottom:440.466667pt;}
.y108{bottom:444.133333pt;}
.y88{bottom:444.453333pt;}
.y135{bottom:444.480000pt;}
.y1b2{bottom:448.806667pt;}
.y1fc{bottom:451.133333pt;}
.y1ec{bottom:452.466667pt;}
.ybf{bottom:453.453333pt;}
.ye4{bottom:453.466667pt;}
.y5a{bottom:454.800000pt;}
.y87{bottom:460.453333pt;}
.y134{bottom:460.840000pt;}
.y1b1{bottom:461.140000pt;}
.y1fb{bottom:463.133333pt;}
.y1eb{bottom:464.466667pt;}
.ybe{bottom:469.453333pt;}
.ye3{bottom:469.826667pt;}
.y1b0{bottom:473.140000pt;}
.yfe{bottom:473.160000pt;}
.y1fa{bottom:475.133333pt;}
.y1ea{bottom:476.800000pt;}
.y86{bottom:476.826667pt;}
.y133{bottom:476.840000pt;}
.y1af{bottom:485.140000pt;}
.ybd{bottom:485.453333pt;}
.y1f9{bottom:487.133333pt;}
.y1e9{bottom:488.800000pt;}
.ye2{bottom:492.466667pt;}
.y85{bottom:492.826667pt;}
.y132{bottom:495.173333pt;}
.y1ae{bottom:497.140000pt;}
.y1f8{bottom:499.173333pt;}
.y1e8{bottom:500.800000pt;}
.ybc{bottom:501.786667pt;}
.y84{bottom:508.826667pt;}
.y1ad{bottom:509.140000pt;}
.y1c7{bottom:509.473333pt;}
.y1f7{bottom:511.506667pt;}
.y1e7{bottom:512.800000pt;}
.y131{bottom:515.840000pt;}
.ybb{bottom:517.786667pt;}
.y1ac{bottom:521.500000pt;}
.y1f6{bottom:524.173333pt;}
.y1e6{bottom:524.800000pt;}
.y83{bottom:525.160000pt;}
.y29{bottom:526.160000pt;}
.y162{bottom:527.173333pt;}
.y130{bottom:530.506667pt;}
.y1ab{bottom:533.500000pt;}
.yba{bottom:536.160000pt;}
.y1e5{bottom:537.173333pt;}
.y82{bottom:541.160000pt;}
.y161{bottom:541.506667pt;}
.y1aa{bottom:545.500000pt;}
.y12f{bottom:546.840000pt;}
.y1e4{bottom:549.160000pt;}
.y81{bottom:557.160000pt;}
.y1a9{bottom:557.500000pt;}
.y1e3{bottom:561.160000pt;}
.y12e{bottom:562.840000pt;}
.y1a8{bottom:569.500000pt;}
.y1c6{bottom:569.833333pt;}
.y80{bottom:573.160000pt;}
.y160{bottom:573.506667pt;}
.y12d{bottom:578.866667pt;}
.y1a7{bottom:581.833333pt;}
.y1e2{bottom:585.160000pt;}
.y15e{bottom:587.506667pt;}
.yb9{bottom:589.160000pt;}
.y7f{bottom:589.520000pt;}
.y58{bottom:590.840000pt;}
.y1a6{bottom:593.833333pt;}
.y12c{bottom:594.866667pt;}
.y44{bottom:595.173333pt;}
.y1e1{bottom:597.493333pt;}
.yb8{bottom:605.493333pt;}
.y7e{bottom:605.520000pt;}
.y1a5{bottom:605.833333pt;}
.y47{bottom:608.173333pt;}
.y1e0{bottom:609.493333pt;}
.y12b{bottom:611.213333pt;}
.y2a{bottom:616.866667pt;}
.y1a4{bottom:617.833333pt;}
.yb7{bottom:621.493333pt;}
.y7d{bottom:621.520000pt;}
.y12a{bottom:627.200000pt;}
.y1a3{bottom:629.860000pt;}
.y1c5{bottom:630.206667pt;}
.y1df{bottom:633.493333pt;}
.yb6{bottom:637.520000pt;}
.y7c{bottom:637.853333pt;}
.y1a2{bottom:642.193333pt;}
.y129{bottom:643.200000pt;}
.y1de{bottom:645.866667pt;}
.y42{bottom:649.200000pt;}
.y7b{bottom:653.853333pt;}
.y1a1{bottom:654.193333pt;}
.y40{bottom:655.200000pt;}
.y1dd{bottom:657.866667pt;}
.y128{bottom:659.533333pt;}
.y1a0{bottom:666.193333pt;}
.y15d{bottom:667.866667pt;}
.y7a{bottom:669.853333pt;}
.y1dc{bottom:669.866667pt;}
.y127{bottom:677.866667pt;}
.y19f{bottom:678.193333pt;}
.y15c{bottom:679.533333pt;}
.y1db{bottom:681.866667pt;}
.yb5{bottom:685.853333pt;}
.y19e{bottom:690.526667pt;}
.y1da{bottom:693.866667pt;}
.y126{bottom:698.573333pt;}
.yb4{bottom:701.853333pt;}
.y19d{bottom:702.526667pt;}
.y1d9{bottom:706.200000pt;}
.y15b{bottom:711.533333pt;}
.y125{bottom:713.240000pt;}
.y19c{bottom:714.526667pt;}
.y1d8{bottom:718.200000pt;}
.yb3{bottom:720.186667pt;}
.y155{bottom:725.533333pt;}
.y19b{bottom:726.526667pt;}
.y124{bottom:729.240000pt;}
.y1d7{bottom:730.200000pt;}
.y19a{bottom:738.566667pt;}
.y1c4{bottom:738.900000pt;}
.y1d6{bottom:742.200000pt;}
.y123{bottom:745.573333pt;}
.y199{bottom:750.900000pt;}
.y1d5{bottom:754.200000pt;}
.y122{bottom:761.573333pt;}
.y198{bottom:762.900000pt;}
.y1d4{bottom:766.560000pt;}
.y3f{bottom:767.226667pt;}
.y1c{bottom:771.560000pt;}
.y197{bottom:774.900000pt;}
.y121{bottom:777.573333pt;}
.y1d3{bottom:778.560000pt;}
.y196{bottom:786.900000pt;}
.y1d2{bottom:790.560000pt;}
.y120{bottom:793.573333pt;}
.y195{bottom:799.233333pt;}
.y1d1{bottom:802.560000pt;}
.y11f{bottom:809.933333pt;}
.y194{bottom:811.233333pt;}
.y1d0{bottom:814.560000pt;}
.y154{bottom:822.226667pt;}
.y193{bottom:823.233333pt;}
.y11e{bottom:825.933333pt;}
.y1cf{bottom:826.893333pt;}
.y153{bottom:833.906667pt;}
.y192{bottom:835.233333pt;}
.y1ce{bottom:838.893333pt;}
.y11d{bottom:841.933333pt;}
.y191{bottom:847.233333pt;}
.y1cd{bottom:850.893333pt;}
.y11c{bottom:858.266667pt;}
.y190{bottom:859.593333pt;}
.y152{bottom:865.933333pt;}
.y18f{bottom:871.593333pt;}
.y11b{bottom:874.266667pt;}
.y14b{bottom:878.933333pt;}
.y18e{bottom:883.593333pt;}
.y107{bottom:885.266667pt;}
.y1a{bottom:887.266667pt;}
.y11a{bottom:890.266667pt;}
.y18d{bottom:895.593333pt;}
.y106{bottom:897.266667pt;}
.y11{bottom:901.933333pt;}
.y18c{bottom:907.593333pt;}
.y105{bottom:909.266667pt;}
.y18b{bottom:919.926667pt;}
.y104{bottom:921.266667pt;}
.y18a{bottom:931.926667pt;}
.y103{bottom:933.600000pt;}
.y189{bottom:943.926667pt;}
.y102{bottom:946.266667pt;}
.ye0{bottom:975.626667pt;}
.yf{bottom:1025.293333pt;}
.y78{bottom:1059.293333pt;}
.y77{bottom:1076.000000pt;}
.y1{bottom:1092.000000pt;}
.y76{bottom:1092.666667pt;}
.h58{height:2.667969pt;}
.hd{height:3.554688pt;}
.h21{height:3.703125pt;}
.h1d{height:4.333333pt;}
.h9{height:5.000000pt;}
.h24{height:5.335938pt;}
.h20{height:6.000000pt;}
.h1e{height:7.406250pt;}
.h23{height:8.700000pt;}
.ha{height:10.671875pt;}
.h26{height:11.109375pt;}
.h4d{height:11.666667pt;}
.h42{height:12.000000pt;}
.h41{height:12.033333pt;}
.h43{height:12.333333pt;}
.h55{height:12.366667pt;}
.h59{height:12.666667pt;}
.h45{height:13.333333pt;}
.h49{height:14.333333pt;}
.h16{height:14.666667pt;}
.h29{height:16.007812pt;}
.h52{height:18.515625pt;}
.h56{height:27.089844pt;}
.h5{height:28.000000pt;}
.h38{height:29.000000pt;}
.h4c{height:29.020000pt;}
.h2f{height:29.033333pt;}
.h3c{height:29.333333pt;}
.h2d{height:30.000000pt;}
.h5a{height:32.000000pt;}
.h19{height:32.015625pt;}
.h5b{height:33.033333pt;}
.hb{height:34.033333pt;}
.h1a{height:34.683594pt;}
.h35{height:34.692708pt;}
.h4e{height:34.979167pt;}
.h2e{height:36.000000pt;}
.h4{height:37.031250pt;}
.h4b{height:38.882812pt;}
.h7{height:39.033333pt;}
.h46{height:39.351562pt;}
.h40{height:40.019531pt;}
.h8{height:42.687500pt;}
.h17{height:43.723958pt;}
.h2a{height:44.000000pt;}
.h1{height:44.270833pt;}
.h6{height:44.437500pt;}
.h57{height:46.666667pt;}
.h2c{height:48.023438pt;}
.h44{height:48.333333pt;}
.h10{height:49.366667pt;}
.h3{height:53.359375pt;}
.h32{height:53.403594pt;}
.h22{height:54.033333pt;}
.h2b{height:56.000000pt;}
.h3b{height:56.027344pt;}
.h36{height:69.958333pt;}
.h2{height:71.033333pt;}
.h33{height:74.703125pt;}
.h13{height:75.260417pt;}
.h11{height:79.687500pt;}
.h3e{height:80.333333pt;}
.h50{height:80.366667pt;}
.h37{height:85.375000pt;}
.h30{height:87.447917pt;}
.hc{height:96.000000pt;}
.h4f{height:96.700000pt;}
.h28{height:104.033333pt;}
.h1f{height:112.033333pt;}
.h18{height:115.700000pt;}
.hf{height:121.744792pt;}
.h15{height:122.427083pt;}
.h14{height:123.366667pt;}
.h27{height:136.026667pt;}
.h31{height:161.040000pt;}
.h12{height:172.733333pt;}
.h4a{height:177.026667pt;}
.h3d{height:177.066667pt;}
.h39{height:207.400000pt;}
.h25{height:257.400000pt;}
.h1c{height:270.400000pt;}
.h47{height:287.773333pt;}
.h51{height:434.800000pt;}
.h3f{height:483.160000pt;}
.h1b{height:536.506667pt;}
.h34{height:683.200000pt;}
.he{height:728.893333pt;}
.h3a{height:738.533333pt;}
.h54{height:860.893333pt;}
.h48{height:903.600000pt;}
.h53{height:953.933333pt;}
.h0{height:1122.666667pt;}
.w22{width:15.000000pt;}
.w8{width:16.000000pt;}
.wc{width:19.000000pt;}
.w2f{width:19.333333pt;}
.w2d{width:28.333333pt;}
.w27{width:28.366667pt;}
.w2a{width:28.666667pt;}
.w29{width:37.366667pt;}
.w2b{width:40.366667pt;}
.w28{width:40.666667pt;}
.w2e{width:40.700000pt;}
.w6{width:51.700000pt;}
.w26{width:52.000000pt;}
.w7{width:55.333333pt;}
.w1c{width:56.033333pt;}
.w13{width:82.033333pt;}
.w3{width:85.700000pt;}
.w15{width:86.366667pt;}
.w1f{width:87.700000pt;}
.w19{width:88.366667pt;}
.w11{width:99.366667pt;}
.wa{width:99.400000pt;}
.w37{width:101.700000pt;}
.w16{width:104.733333pt;}
.w14{width:107.700000pt;}
.w12{width:107.733333pt;}
.w33{width:120.400000pt;}
.w10{width:124.700000pt;}
.w36{width:132.066667pt;}
.w24{width:132.366667pt;}
.w32{width:132.400000pt;}
.w4{width:165.066667pt;}
.w20{width:165.733333pt;}
.w1a{width:167.400000pt;}
.w31{width:189.066667pt;}
.w35{width:198.400000pt;}
.w34{width:201.066667pt;}
.wb{width:202.400000pt;}
.w38{width:210.440000pt;}
.w2c{width:254.440000pt;}
.we{width:301.800000pt;}
.wd{width:336.506667pt;}
.w1b{width:400.840000pt;}
.w21{width:403.173333pt;}
.w5{width:410.173333pt;}
.w25{width:565.266667pt;}
.w9{width:641.293333pt;}
.w39{width:642.600000pt;}
.wf{width:657.293333pt;}
.w18{width:681.266667pt;}
.w30{width:693.293333pt;}
.w1e{width:693.626667pt;}
.w17{width:697.266667pt;}
.w23{width:697.626667pt;}
.w1d{width:712.626667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:4.666667pt;}
.x7{left:7.333333pt;}
.x18{left:8.333333pt;}
.x15{left:9.693333pt;}
.x1a{left:12.000000pt;}
.xb{left:16.320000pt;}
.x26{left:20.986667pt;}
.x24{left:23.333333pt;}
.x2b{left:25.666667pt;}
.x39{left:31.000000pt;}
.x9{left:32.666667pt;}
.xc{left:38.666667pt;}
.x2{left:40.700000pt;}
.xa{left:44.360000pt;}
.x41{left:46.000000pt;}
.x1{left:48.033322pt;}
.x25{left:49.026667pt;}
.x28{left:54.666667pt;}
.x2c{left:55.700000pt;}
.x1d{left:56.700000pt;}
.x27{left:59.700000pt;}
.x3b{left:64.033333pt;}
.x3d{left:67.033333pt;}
.x3a{left:73.366667pt;}
.x3{left:77.366667pt;}
.x20{left:79.700000pt;}
.x1f{left:85.033322pt;}
.x12{left:91.033333pt;}
.xd{left:96.033333pt;}
.x3c{left:97.366667pt;}
.xe{left:112.033333pt;}
.x4{left:126.400000pt;}
.x21{left:129.066667pt;}
.x5{left:154.400000pt;}
.x13{left:165.400000pt;}
.x2d{left:188.066667pt;}
.xf{left:195.440000pt;}
.x2f{left:201.440000pt;}
.x29{left:208.439988pt;}
.x31{left:253.440000pt;}
.x3e{left:256.106667pt;}
.x14{left:264.773333pt;}
.x32{left:281.800000pt;}
.x6{left:291.466667pt;}
.x2a{left:294.133333pt;}
.x22{left:296.466667pt;}
.x42{left:311.473333pt;}
.x33{left:322.466667pt;}
.x34{left:359.840000pt;}
.x16{left:372.506667pt;}
.x35{left:388.506667pt;}
.x1c{left:396.839988pt;}
.x10{left:397.840000pt;}
.x43{left:400.833333pt;}
.x11{left:416.840000pt;}
.x36{left:428.866667pt;}
.x17{left:454.533333pt;}
.x1e{left:494.199988pt;}
.x40{left:499.200000pt;}
.x3f{left:508.906667pt;}
.x2e{left:551.893333pt;}
.x19{left:562.240000pt;}
.x1b{left:648.600000pt;}
.x37{left:683.306667pt;}
.x23{left:697.306667pt;}
.x8{left:701.640000pt;}
.x38{left:711.640000pt;}
}




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