
    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_ca7ff9c959c6ecc354a94108.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_261281dbed5700c1134e2672.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_41399b3e0a79d7b0f1ef123e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_02d5f9c903f81a8dd589fa10.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_013880bcc61aaa67e28beab6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_5240892389a0d9cb54f83fd2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_5a86107f8d9c13a10bc2cfa7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.059082;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_d1ce8e065943faa64eadb6cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_5559a068260a0c1f3f015871.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1cea58677224465688a2df16.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_40a38f2fe01e81c70fe993db.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9b0a85e3e7b96d69eb49f3fe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999512;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_eb18fb3aa5f7f106f4e2b277.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-74.880000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls5{letter-spacing:-2.772000px;}
.ls6{letter-spacing:-2.520000px;}
.ls28{letter-spacing:-1.260000px;}
.ls3{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.828000px;}
.lsc{letter-spacing:-0.804000px;}
.ls29{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.702000px;}
.lsd{letter-spacing:-0.594000px;}
.ls7{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.427800px;}
.ls19{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.085200px;}
.ls15{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.138000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.ls11{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.468000px;}
.ls24{letter-spacing:0.738000px;}
.ls27{letter-spacing:0.792000px;}
.ls14{letter-spacing:0.828000px;}
.ls26{letter-spacing:0.876000px;}
.ls1e{letter-spacing:3.060000px;}
.ls10{letter-spacing:3.780000px;}
.ls1d{letter-spacing:11.700000px;}
.ls1f{letter-spacing:13.860000px;}
.ls22{letter-spacing:25.308000px;}
.ls25{letter-spacing:25.452000px;}
.ls12{letter-spacing:49.788000px;}
.ls21{letter-spacing:52.668000px;}
.ls17{letter-spacing:60.564000px;}
.ls13{letter-spacing:60.588000px;}
.ls23{letter-spacing:203.940000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.wsf{word-spacing:-14.328000px;}
.ws18{word-spacing:-14.238000px;}
.wsc{word-spacing:-13.860000px;}
.ws16{word-spacing:-13.824000px;}
.ws17{word-spacing:-13.680000px;}
.wse{word-spacing:-13.608000px;}
.ws14{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.ws13{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.284000px;}
.ws15{word-spacing:-13.140000px;}
.ws12{word-spacing:-12.996000px;}
.ws6{word-spacing:-12.672000px;}
.ws5{word-spacing:-10.980000px;}
.wsb{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.527600px;}
.ws9{word-spacing:-10.185000px;}
.ws2{word-spacing:-9.978240px;}
.wsa{word-spacing:-9.808800px;}
.ws19{word-spacing:-9.792000px;}
.ws4{word-spacing:-9.000000px;}
.ws1a{word-spacing:-8.280000px;}
.ws11{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
._38{margin-left:-7.935840px;}
._31{margin-left:-6.665040px;}
._30{margin-left:-5.029920px;}
._5{margin-left:-3.916320px;}
._9{margin-left:-2.502000px;}
._2{margin-left:-1.192320px;}
._0{width:1.254960px;}
._1{width:2.742960px;}
._a{width:3.748080px;}
._e{width:4.860000px;}
._4{width:6.592320px;}
._d{width:8.586000px;}
._c{width:9.977040px;}
._b{width:11.020320px;}
._10{width:12.033360px;}
._12{width:15.016320px;}
._11{width:16.470000px;}
._f{width:17.774640px;}
._1a{width:18.865440px;}
._7{width:19.872000px;}
._8{width:21.006000px;}
._14{width:22.094640px;}
._13{width:23.328000px;}
._21{width:24.584160px;}
._18{width:26.622000px;}
._15{width:28.242000px;}
._23{width:29.916000px;}
._1f{width:31.356000px;}
._22{width:32.364000px;}
._16{width:34.104000px;}
._17{width:35.286000px;}
._20{width:36.994320px;}
._1d{width:38.070000px;}
._1e{width:39.420000px;}
._19{width:41.418000px;}
._24{width:42.718320px;}
._1c{width:43.794000px;}
._1b{width:45.414000px;}
._3d{width:47.250000px;}
._27{width:50.004000px;}
._29{width:52.056000px;}
._28{width:53.190000px;}
._25{width:55.890000px;}
._26{width:57.015360px;}
._6{width:59.562000px;}
._2f{width:75.762000px;}
._2a{width:80.086320px;}
._2b{width:81.543360px;}
._39{width:97.266000px;}
._33{width:99.468000px;}
._32{width:100.836000px;}
._2c{width:104.490000px;}
._36{width:107.964000px;}
._35{width:109.458000px;}
._34{width:111.456000px;}
._2e{width:112.861680px;}
._2d{width:113.943360px;}
._3b{width:150.708000px;}
._3a{width:151.974000px;}
._3c{width:186.462000px;}
._37{width:203.693040px;}
._3{width:432.814560px;}
.fc6{color:transparent;}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y153{bottom:5.205000px;}
.y173{bottom:5.220000px;}
.y157{bottom:5.385000px;}
.y159{bottom:5.565000px;}
.y2e{bottom:5.580000px;}
.y15c{bottom:5.745000px;}
.y196{bottom:6.645000px;}
.y1a0{bottom:6.660000px;}
.y19c{bottom:6.840000px;}
.y181{bottom:7.020000px;}
.y1b7{bottom:7.200000px;}
.y194{bottom:7.725000px;}
.y31{bottom:7.740000px;}
.y19a{bottom:7.905000px;}
.y19e{bottom:7.920000px;}
.y193{bottom:8.085000px;}
.y178{bottom:8.460000px;}
.y17f{bottom:8.640000px;}
.y191{bottom:8.805000px;}
.y1ba{bottom:9.000000px;}
.y183{bottom:9.360000px;}
.y1af{bottom:9.900000px;}
.y17c{bottom:11.370000px;}
.y1b4{bottom:12.960000px;}
.y176{bottom:14.580000px;}
.y1b2{bottom:15.120000px;}
.y17a{bottom:15.300000px;}
.y156{bottom:23.205000px;}
.y172{bottom:23.220000px;}
.y155{bottom:23.565000px;}
.y2d{bottom:23.580000px;}
.y30{bottom:25.560000px;}
.y190{bottom:26.625000px;}
.y2c{bottom:41.400000px;}
.y56{bottom:57.060000px;}
.y2b{bottom:68.220000px;}
.y55{bottom:72.540000px;}
.y4{bottom:77.220000px;}
.y2a{bottom:86.070000px;}
.y93{bottom:89.280000px;}
.yc5{bottom:92.160000px;}
.y27d{bottom:92.520000px;}
.y1f4{bottom:93.600000px;}
.yeb{bottom:98.100000px;}
.y49{bottom:99.900000px;}
.y169{bottom:100.980000px;}
.y20e{bottom:102.960000px;}
.y29{bottom:103.890000px;}
.y6{bottom:105.120000px;}
.y113{bottom:106.200000px;}
.y166{bottom:106.560000px;}
.y92{bottom:107.100000px;}
.y1a2{bottom:107.820000px;}
.y53{bottom:108.900000px;}
.yc4{bottom:109.980000px;}
.y27c{bottom:110.340000px;}
.y1f3{bottom:111.600000px;}
.yea{bottom:115.920000px;}
.y239{bottom:116.100000px;}
.y48{bottom:117.720000px;}
.y168{bottom:118.800000px;}
.y22c{bottom:118.980000px;}
.y20d{bottom:120.780000px;}
.y28{bottom:121.890000px;}
.y91{bottom:125.100000px;}
.y52{bottom:126.720000px;}
.y243{bottom:127.800000px;}
.yc3{bottom:127.980000px;}
.y27b{bottom:128.160000px;}
.y1f2{bottom:129.420000px;}
.y1a1{bottom:130.140000px;}
.y112{bottom:133.020000px;}
.y165{bottom:133.380000px;}
.ye9{bottom:133.740000px;}
.y238{bottom:133.920000px;}
.y167{bottom:136.800000px;}
.y1d5{bottom:138.420000px;}
.y20c{bottom:138.600000px;}
.y27{bottom:139.710000px;}
.y90{bottom:142.920000px;}
.y47{bottom:144.540000px;}
.y242{bottom:145.620000px;}
.yc2{bottom:145.800000px;}
.y27a{bottom:145.980000px;}
.y1f1{bottom:147.240000px;}
.y111{bottom:150.840000px;}
.ye8{bottom:151.560000px;}
.y237{bottom:151.740000px;}
.y19f{bottom:152.460000px;}
.y22b{bottom:154.620000px;}
.y1d4{bottom:156.420000px;}
.y20b{bottom:156.600000px;}
.y26{bottom:157.530000px;}
.y164{bottom:160.200000px;}
.y8f{bottom:160.740000px;}
.y46{bottom:162.360000px;}
.yc1{bottom:163.620000px;}
.y279{bottom:163.980000px;}
.y1f0{bottom:165.060000px;}
.y110{bottom:168.660000px;}
.y19d{bottom:172.260000px;}
.y22a{bottom:172.440000px;}
.y1d3{bottom:174.240000px;}
.y20a{bottom:174.420000px;}
.y18{bottom:174.990000px;}
.y25{bottom:175.350000px;}
.ye7{bottom:178.380000px;}
.y8e{bottom:178.560000px;}
.y45{bottom:180.180000px;}
.yc0{bottom:181.440000px;}
.y278{bottom:181.800000px;}
.y1ef{bottom:182.880000px;}
.y163{bottom:187.020000px;}
.y229{bottom:190.260000px;}
.y1d2{bottom:192.060000px;}
.y209{bottom:192.240000px;}
.y19b{bottom:193.140000px;}
.y24{bottom:193.170000px;}
.y10f{bottom:195.480000px;}
.ye6{bottom:196.200000px;}
.y8d{bottom:196.380000px;}
.y44{bottom:198.180000px;}
.ybf{bottom:199.260000px;}
.y277{bottom:199.620000px;}
.y1ee{bottom:200.880000px;}
.y17{bottom:201.810000px;}
.y162{bottom:205.020000px;}
.y51{bottom:207.210000px;}
.y228{bottom:208.290000px;}
.y208{bottom:210.090000px;}
.y23{bottom:210.990000px;}
.y199{bottom:212.985000px;}
.y10e{bottom:213.510000px;}
.y8c{bottom:214.230000px;}
.y43{bottom:216.030000px;}
.ybe{bottom:217.290000px;}
.y276{bottom:217.470000px;}
.y1d1{bottom:218.550000px;}
.y1ed{bottom:218.730000px;}
.y50{bottom:225.030000px;}
.y227{bottom:226.110000px;}
.y161{bottom:227.385000px;}
.y207{bottom:227.910000px;}
.y16{bottom:228.630000px;}
.y22{bottom:228.990000px;}
.ye5{bottom:232.050000px;}
.y8b{bottom:232.230000px;}
.y42{bottom:233.850000px;}
.y198{bottom:234.045000px;}
.ybd{bottom:235.110000px;}
.y275{bottom:235.290000px;}
.y1ec{bottom:236.550000px;}
.y10d{bottom:240.330000px;}
.y299{bottom:242.490000px;}
.y4f{bottom:242.850000px;}
.y1d0{bottom:243.390000px;}
.y160{bottom:245.925000px;}
.y21{bottom:246.810000px;}
.ye4{bottom:249.870000px;}
.y8a{bottom:250.050000px;}
.y41{bottom:251.670000px;}
.ybc{bottom:252.930000px;}
.y274{bottom:253.290000px;}
.y197{bottom:253.665000px;}
.y206{bottom:254.910000px;}
.y15{bottom:255.090000px;}
.y4e{bottom:260.670000px;}
.y1eb{bottom:263.370000px;}
.y298{bottom:263.910000px;}
.y15f{bottom:264.465000px;}
.y20{bottom:264.630000px;}
.y10c{bottom:267.150000px;}
.ye3{bottom:267.690000px;}
.y89{bottom:267.870000px;}
.y40{bottom:269.490000px;}
.ybb{bottom:270.750000px;}
.y273{bottom:271.110000px;}
.y205{bottom:272.730000px;}
.y195{bottom:274.725000px;}
.y4d{bottom:278.490000px;}
.y1ea{bottom:281.190000px;}
.y14{bottom:282.270000px;}
.y1f{bottom:282.450000px;}
.y15e{bottom:283.185000px;}
.y10b{bottom:284.970000px;}
.ye2{bottom:285.510000px;}
.y88{bottom:285.690000px;}
.y3f{bottom:287.490000px;}
.yba{bottom:288.570000px;}
.y272{bottom:288.930000px;}
.y204{bottom:290.550000px;}
.y192{bottom:294.345000px;}
.y4c{bottom:296.490000px;}
.y1e9{bottom:299.010000px;}
.y297{bottom:299.730000px;}
.y1e{bottom:300.270000px;}
.y15d{bottom:301.725000px;}
.y10a{bottom:302.790000px;}
.y87{bottom:303.510000px;}
.y3e{bottom:305.310000px;}
.y226{bottom:306.390000px;}
.y271{bottom:306.750000px;}
.y203{bottom:308.370000px;}
.y13{bottom:309.315000px;}
.y4b{bottom:314.310000px;}
.yb9{bottom:315.390000px;}
.y18f{bottom:315.405000px;}
.y1e8{bottom:317.010000px;}
.y1d{bottom:318.315000px;}
.y15b{bottom:320.265000px;}
.y109{bottom:320.610000px;}
.ye1{bottom:321.330000px;}
.y86{bottom:321.510000px;}
.y296{bottom:321.690000px;}
.y3d{bottom:323.130000px;}
.y225{bottom:324.390000px;}
.y270{bottom:324.570000px;}
.y202{bottom:326.190000px;}
.y12{bottom:327.135000px;}
.y4a{bottom:332.130000px;}
.yb8{bottom:333.390000px;}
.y1e7{bottom:334.830000px;}
.y1c{bottom:336.135000px;}
.y108{bottom:338.610000px;}
.y15a{bottom:338.985000px;}
.ye0{bottom:339.150000px;}
.y85{bottom:339.330000px;}
.y295{bottom:339.510000px;}
.y224{bottom:342.210000px;}
.y26f{bottom:342.390000px;}
.y201{bottom:344.010000px;}
.y11{bottom:344.955000px;}
.y3c{bottom:349.950000px;}
.yb7{bottom:351.210000px;}
.y1e6{bottom:352.650000px;}
.y1b{bottom:353.955000px;}
.y107{bottom:356.430000px;}
.ydf{bottom:356.970000px;}
.y84{bottom:357.150000px;}
.y294{bottom:357.510000px;}
.y158{bottom:357.525000px;}
.y223{bottom:360.030000px;}
.y26e{bottom:360.390000px;}
.y200{bottom:362.010000px;}
.y3b{bottom:367.770000px;}
.yb6{bottom:369.030000px;}
.y18e{bottom:369.750000px;}
.y1e5{bottom:370.470000px;}
.y10{bottom:371.415000px;}
.y1a{bottom:371.775000px;}
.y106{bottom:374.250000px;}
.yde{bottom:374.790000px;}
.y83{bottom:374.970000px;}
.y293{bottom:375.330000px;}
.y154{bottom:376.065000px;}
.y222{bottom:377.850000px;}
.y26d{bottom:378.210000px;}
.y1ff{bottom:379.830000px;}
.y3a{bottom:385.590000px;}
.yb5{bottom:386.850000px;}
.y1e4{bottom:388.290000px;}
.yf{bottom:389.235000px;}
.y19{bottom:389.595000px;}
.ydd{bottom:392.610000px;}
.y82{bottom:392.790000px;}
.y292{bottom:393.150000px;}
.y241{bottom:395.670000px;}
.y26c{bottom:396.030000px;}
.y18d{bottom:396.930000px;}
.y1fe{bottom:397.650000px;}
.y105{bottom:401.070000px;}
.y39{bottom:403.590000px;}
.yb4{bottom:404.670000px;}
.y81{bottom:410.610000px;}
.y291{bottom:410.970000px;}
.y152{bottom:412.605000px;}
.y240{bottom:413.670000px;}
.y26b{bottom:413.850000px;}
.y18c{bottom:414.750000px;}
.y1e3{bottom:414.930000px;}
.y1fd{bottom:415.470000px;}
.y104{bottom:418.890000px;}
.y38{bottom:421.410000px;}
.yb3{bottom:422.670000px;}
.y80{bottom:428.610000px;}
.y290{bottom:428.790000px;}
.y23f{bottom:431.490000px;}
.y26a{bottom:431.670000px;}
.y18b{bottom:432.570000px;}
.y1fc{bottom:433.290000px;}
.ydc{bottom:437.070000px;}
.y37{bottom:439.230000px;}
.yb2{bottom:440.490000px;}
.y1e2{bottom:441.795000px;}
.y151{bottom:445.575000px;}
.y103{bottom:445.935000px;}
.y7f{bottom:446.475000px;}
.y28f{bottom:446.655000px;}
.y269{bottom:449.715000px;}
.y18a{bottom:450.435000px;}
.y1fb{bottom:451.335000px;}
.y36{bottom:457.095000px;}
.yb1{bottom:458.355000px;}
.y102{bottom:463.755000px;}
.ydb{bottom:464.295000px;}
.y28e{bottom:464.655000px;}
.y268{bottom:467.535000px;}
.y189{bottom:468.435000px;}
.y1e1{bottom:468.615000px;}
.y1fa{bottom:469.155000px;}
.y1cf{bottom:471.675000px;}
.y134{bottom:472.755000px;}
.y7e{bottom:473.295000px;}
.y35{bottom:474.915000px;}
.yb0{bottom:476.175000px;}
.yda{bottom:482.115000px;}
.y28d{bottom:482.475000px;}
.y267{bottom:485.355000px;}
.y188{bottom:486.255000px;}
.y1f9{bottom:486.975000px;}
.y101{bottom:490.575000px;}
.y7d{bottom:491.115000px;}
.y34{bottom:492.915000px;}
.y1c6{bottom:493.455000px;}
.y221{bottom:493.995000px;}
.y1e0{bottom:495.795000px;}
.yd9{bottom:499.935000px;}
.y28c{bottom:500.295000px;}
.y1ce{bottom:502.275000px;}
.yaf{bottom:502.995000px;}
.y266{bottom:503.175000px;}
.y187{bottom:504.075000px;}
.y1f8{bottom:504.795000px;}
.y133{bottom:508.395000px;}
.y7c{bottom:508.935000px;}
.y33{bottom:510.735000px;}
.y1c5{bottom:511.275000px;}
.y220{bottom:511.815000px;}
.y1df{bottom:513.615000px;}
.y100{bottom:517.395000px;}
.yd8{bottom:517.935000px;}
.y28b{bottom:518.115000px;}
.y1cd{bottom:520.275000px;}
.yae{bottom:520.815000px;}
.y265{bottom:520.995000px;}
.y186{bottom:521.895000px;}
.y1f7{bottom:522.615000px;}
.y132{bottom:526.215000px;}
.y7b{bottom:526.935000px;}
.y1c4{bottom:529.275000px;}
.y150{bottom:529.635000px;}
.y21f{bottom:529.815000px;}
.y32{bottom:529.995000px;}
.y1de{bottom:531.435000px;}
.yff{bottom:535.215000px;}
.yd7{bottom:535.755000px;}
.y28a{bottom:535.935000px;}
.y1cc{bottom:538.095000px;}
.yad{bottom:538.815000px;}
.y185{bottom:539.715000px;}
.y1f6{bottom:540.435000px;}
.y131{bottom:544.035000px;}
.y7a{bottom:544.755000px;}
.y1c3{bottom:547.095000px;}
.y14f{bottom:547.455000px;}
.y21e{bottom:547.635000px;}
.y1dd{bottom:549.435000px;}
.yd6{bottom:553.575000px;}
.y289{bottom:553.935000px;}
.y1cb{bottom:555.915000px;}
.y2f{bottom:556.455000px;}
.yac{bottom:556.635000px;}
.y264{bottom:556.815000px;}
.y1f5{bottom:558.435000px;}
.yfe{bottom:562.035000px;}
.y79{bottom:562.575000px;}
.y1c2{bottom:564.915000px;}
.y14e{bottom:565.275000px;}
.y21d{bottom:565.455000px;}
.y184{bottom:566.355000px;}
.y130{bottom:571.035000px;}
.yd5{bottom:571.395000px;}
.y288{bottom:571.755000px;}
.y1ca{bottom:573.735000px;}
.yab{bottom:574.455000px;}
.y263{bottom:574.635000px;}
.y1dc{bottom:575.895000px;}
.yfd{bottom:580.035000px;}
.y78{bottom:580.395000px;}
.y1c1{bottom:582.735000px;}
.y14d{bottom:583.095000px;}
.y21c{bottom:583.275000px;}
.y182{bottom:588.675000px;}
.y12f{bottom:588.855000px;}
.yd4{bottom:589.215000px;}
.y287{bottom:589.575000px;}
.y1c9{bottom:591.555000px;}
.yaa{bottom:592.275000px;}
.y262{bottom:592.455000px;}
.y77{bottom:598.215000px;}
.y1c0{bottom:600.555000px;}
.y1db{bottom:600.735000px;}
.y14c{bottom:601.095000px;}
.ye{bottom:603.975000px;}
.y12e{bottom:606.675000px;}
.yfc{bottom:606.855000px;}
.yd3{bottom:607.035000px;}
.y23e{bottom:607.215000px;}
.y286{bottom:607.395000px;}
.y1c8{bottom:609.555000px;}
.ya9{bottom:610.095000px;}
.y261{bottom:610.275000px;}
.y180{bottom:610.995000px;}
.y236{bottom:616.035000px;}
.y1bf{bottom:618.555000px;}
.y14b{bottom:618.915000px;}
.y21b{bottom:619.095000px;}
.y12d{bottom:624.495000px;}
.y76{bottom:624.675000px;}
.yd2{bottom:625.035000px;}
.y285{bottom:625.215000px;}
.ya8{bottom:628.095000px;}
.y17e{bottom:630.975000px;}
.y235{bottom:634.035000px;}
.y1be{bottom:636.375000px;}
.y14a{bottom:636.735000px;}
.y21a{bottom:636.915000px;}
.y12c{bottom:642.315000px;}
.y23d{bottom:643.035000px;}
.ya7{bottom:645.915000px;}
.y260{bottom:646.095000px;}
.yfb{bottom:651.495000px;}
.yd1{bottom:651.855000px;}
.y75{bottom:652.035000px;}
.y17d{bottom:652.755000px;}
.y1bd{bottom:654.195000px;}
.y149{bottom:654.555000px;}
.y219{bottom:654.735000px;}
.y12b{bottom:660.135000px;}
.y23c{bottom:660.855000px;}
.y284{bottom:661.035000px;}
.ya6{bottom:663.735000px;}
.y25f{bottom:663.915000px;}
.yfa{bottom:669.315000px;}
.yd0{bottom:669.675000px;}
.y74{bottom:669.855000px;}
.y218{bottom:672.555000px;}
.y17b{bottom:674.175000px;}
.y12a{bottom:678.165000px;}
.y23b{bottom:678.705000px;}
.y283{bottom:678.885000px;}
.y1bc{bottom:680.685000px;}
.y1c7{bottom:681.045000px;}
.y148{bottom:681.405000px;}
.ya5{bottom:681.585000px;}
.y25e{bottom:681.765000px;}
.ycf{bottom:687.525000px;}
.y73{bottom:687.705000px;}
.y217{bottom:690.405000px;}
.y129{bottom:695.985000px;}
.yf9{bottom:696.165000px;}
.y23a{bottom:696.525000px;}
.y282{bottom:696.705000px;}
.y179{bottom:698.505000px;}
.y147{bottom:699.225000px;}
.ya4{bottom:699.405000px;}
.y25d{bottom:699.585000px;}
.yce{bottom:705.345000px;}
.y72{bottom:705.525000px;}
.y1bb{bottom:707.505000px;}
.y216{bottom:708.225000px;}
.y128{bottom:713.805000px;}
.yf8{bottom:714.165000px;}
.y234{bottom:714.345000px;}
.y281{bottom:714.525000px;}
.ya3{bottom:717.225000px;}
.y25c{bottom:717.405000px;}
.ycd{bottom:723.165000px;}
.y71{bottom:723.345000px;}
.y215{bottom:726.225000px;}
.y177{bottom:726.765000px;}
.y1b9{bottom:729.825000px;}
.y127{bottom:731.625000px;}
.y233{bottom:732.165000px;}
.y280{bottom:732.345000px;}
.y146{bottom:735.045000px;}
.y25b{bottom:735.225000px;}
.yf7{bottom:740.985000px;}
.y70{bottom:741.165000px;}
.ya2{bottom:743.865000px;}
.y214{bottom:744.045000px;}
.y175{bottom:748.185000px;}
.y126{bottom:749.445000px;}
.y232{bottom:750.165000px;}
.y1b8{bottom:751.785000px;}
.y145{bottom:752.865000px;}
.y25a{bottom:753.225000px;}
.yf6{bottom:758.805000px;}
.ycc{bottom:758.985000px;}
.y6f{bottom:759.165000px;}
.y125{bottom:767.445000px;}
.y231{bottom:767.985000px;}
.y27f{bottom:768.165000px;}
.y144{bottom:770.685000px;}
.y213{bottom:770.865000px;}
.y259{bottom:771.045000px;}
.ya1{bottom:772.485000px;}
.y1b6{bottom:773.385000px;}
.y174{bottom:775.725000px;}
.ycb{bottom:776.805000px;}
.y6e{bottom:776.985000px;}
.yf5{bottom:785.625000px;}
.y230{bottom:785.805000px;}
.y27e{bottom:785.985000px;}
.y143{bottom:788.505000px;}
.y212{bottom:788.685000px;}
.y258{bottom:788.865000px;}
.y1b5{bottom:793.725000px;}
.y124{bottom:794.265000px;}
.yca{bottom:794.625000px;}
.y6d{bottom:794.805000px;}
.y22f{bottom:803.625000px;}
.ya0{bottom:803.805000px;}
.y142{bottom:806.505000px;}
.y257{bottom:806.685000px;}
.y123{bottom:812.085000px;}
.yc9{bottom:812.445000px;}
.y6c{bottom:812.625000px;}
.y1b3{bottom:814.605000px;}
.y22e{bottom:821.445000px;}
.y9f{bottom:821.625000px;}
.y211{bottom:824.505000px;}
.y122{bottom:829.905000px;}
.y6b{bottom:830.445000px;}
.y141{bottom:833.325000px;}
.y9e{bottom:839.445000px;}
.y1b1{bottom:840.525000px;}
.y210{bottom:842.325000px;}
.y256{bottom:842.505000px;}
.y171{bottom:845.025000px;}
.y121{bottom:847.725000px;}
.yc8{bottom:848.265000px;}
.y6a{bottom:848.445000px;}
.y140{bottom:851.145000px;}
.y22d{bottom:857.265000px;}
.y9d{bottom:857.445000px;}
.y255{bottom:860.325000px;}
.y69{bottom:866.265000px;}
.y1da{bottom:866.985000px;}
.y1b0{bottom:868.605000px;}
.y13f{bottom:868.965000px;}
.y170{bottom:869.145000px;}
.y20f{bottom:870.585000px;}
.y120{bottom:874.545000px;}
.yc7{bottom:874.725000px;}
.yf4{bottom:875.085000px;}
.y9c{bottom:875.265000px;}
.y254{bottom:878.145000px;}
.y68{bottom:884.085000px;}
.y1d9{bottom:884.805000px;}
.y13e{bottom:886.785000px;}
.y16f{bottom:887.145000px;}
.y1ae{bottom:889.485000px;}
.y11f{bottom:892.545000px;}
.yf3{bottom:892.905000px;}
.y9b{bottom:893.085000px;}
.y253{bottom:895.965000px;}
.y67{bottom:901.905000px;}
.y1d8{bottom:902.625000px;}
.y13d{bottom:904.605000px;}
.y16e{bottom:904.965000px;}
.y11e{bottom:910.365000px;}
.yf2{bottom:910.770000px;}
.y9a{bottom:910.950000px;}
.y1ad{bottom:912.390000px;}
.y252{bottom:913.830000px;}
.y66{bottom:919.770000px;}
.y13c{bottom:922.650000px;}
.y16d{bottom:922.830000px;}
.y1d7{bottom:926.970000px;}
.yf1{bottom:928.590000px;}
.y99{bottom:928.770000px;}
.y1ac{bottom:931.110000px;}
.y251{bottom:931.650000px;}
.y11d{bottom:937.230000px;}
.y65{bottom:937.590000px;}
.y13b{bottom:940.470000px;}
.y16c{bottom:940.650000px;}
.y98{bottom:946.590000px;}
.y250{bottom:949.650000px;}
.y1d6{bottom:951.630000px;}
.y11c{bottom:955.050000px;}
.y64{bottom:955.590000px;}
.y16b{bottom:958.470000px;}
.yf0{bottom:964.410000px;}
.y97{bottom:964.590000px;}
.y13a{bottom:967.290000px;}
.y24f{bottom:967.470000px;}
.y11b{bottom:972.870000px;}
.y63{bottom:973.410000px;}
.y16a{bottom:976.470000px;}
.y1ab{bottom:981.870000px;}
.yef{bottom:982.230000px;}
.y96{bottom:982.410000px;}
.y139{bottom:985.110000px;}
.y24e{bottom:985.290000px;}
.y62{bottom:991.230000px;}
.y11a{bottom:999.870000px;}
.yee{bottom:1000.050000px;}
.y95{bottom:1000.230000px;}
.y138{bottom:1002.930000px;}
.y24d{bottom:1003.110000px;}
.y61{bottom:1009.050000px;}
.yed{bottom:1017.870000px;}
.y94{bottom:1018.050000px;}
.y24c{bottom:1020.930000px;}
.y119{bottom:1026.690000px;}
.yc6{bottom:1026.870000px;}
.yd{bottom:1027.230000px;}
.y137{bottom:1029.570000px;}
.y60{bottom:1035.870000px;}
.y24b{bottom:1038.930000px;}
.y1aa{bottom:1044.870000px;}
.y136{bottom:1047.390000px;}
.y118{bottom:1053.510000px;}
.y5f{bottom:1053.870000px;}
.yc{bottom:1054.050000px;}
.y24a{bottom:1056.750000px;}
.yec{bottom:1062.330000px;}
.y1a9{bottom:1062.690000px;}
.y117{bottom:1071.330000px;}
.y5e{bottom:1071.690000px;}
.yb{bottom:1074.570000px;}
.y135{bottom:1076.010000px;}
.y1a8{bottom:1080.510000px;}
.y5d{bottom:1089.510000px;}
.y249{bottom:1092.390000px;}
.y116{bottom:1098.150000px;}
.y1a7{bottom:1098.330000px;}
.ya{bottom:1104.450000px;}
.y5c{bottom:1107.330000px;}
.y248{bottom:1110.210000px;}
.y5{bottom:1112.940000px;}
.y1a6{bottom:1116.150000px;}
.y115{bottom:1124.970000px;}
.y5b{bottom:1125.150000px;}
.y247{bottom:1128.030000px;}
.y9{bottom:1132.350000px;}
.y1a5{bottom:1133.970000px;}
.y5a{bottom:1142.970000px;}
.y246{bottom:1146.060000px;}
.y1a4{bottom:1152.000000px;}
.y59{bottom:1161.000000px;}
.y245{bottom:1163.880000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y114{bottom:1169.820000px;}
.y58{bottom:1178.820000px;}
.y2{bottom:1181.520000px;}
.y1a3{bottom:1187.640000px;}
.y7{bottom:1191.240000px;}
.y244{bottom:1192.140000px;}
.y57{bottom:1196.640000px;}
.y1{bottom:1196.820000px;}
.y54{bottom:1224.540000px;}
.h15{height:17.805000px;}
.h19{height:17.820000px;}
.h17{height:17.985000px;}
.h24{height:18.885000px;}
.h28{height:18.900000px;}
.h26{height:19.116000px;}
.h20{height:19.245000px;}
.h2d{height:19.440000px;}
.h25{height:20.145000px;}
.h27{height:20.160000px;}
.h23{height:20.325000px;}
.h1e{height:20.685000px;}
.h1b{height:20.700000px;}
.h1f{height:20.865000px;}
.h2e{height:20.880000px;}
.h2f{height:21.240000px;}
.h21{height:21.585000px;}
.h29{height:21.598500px;}
.h2a{height:22.162500px;}
.h1d{height:23.610000px;}
.h2c{height:25.200000px;}
.h1a{height:26.820000px;}
.h2b{height:27.360000px;}
.h1c{height:27.540000px;}
.hb{height:35.332031px;}
.h16{height:35.805000px;}
.h18{height:35.820000px;}
.h22{height:39.225000px;}
.h13{height:40.843828px;}
.h31{height:44.507812px;}
.h10{height:46.785000px;}
.h5{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h12{height:48.410156px;}
.hf{height:52.971680px;}
.he{height:52.998047px;}
.hd{height:54.421875px;}
.h14{height:55.503491px;}
.h32{height:56.033437px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h30{height:70.664062px;}
.h11{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:410.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w26{width:29.556000px;}
.w33{width:30.456000px;}
.we{width:30.981000px;}
.w18{width:30.996000px;}
.wd{width:31.125000px;}
.wa{width:31.140000px;}
.wc{width:31.176000px;}
.wb{width:31.320000px;}
.w24{width:31.500000px;}
.w31{width:33.120000px;}
.w30{width:33.300000px;}
.w16{width:36.180000px;}
.w27{width:39.585000px;}
.w34{width:41.565000px;}
.w23{width:41.580000px;}
.wf{width:41.745000px;}
.w29{width:43.041000px;}
.w25{width:43.200000px;}
.w35{width:44.481000px;}
.w32{width:44.640000px;}
.w19{width:45.165000px;}
.w1b{width:46.281000px;}
.w28{width:49.485000px;}
.w15{width:50.040000px;}
.w17{width:50.580000px;}
.w1e{width:51.510000px;}
.w14{width:52.401000px;}
.w2b{width:52.905000px;}
.w2a{width:53.085000px;}
.w37{width:55.605000px;}
.w36{width:55.785000px;}
.w38{width:56.010000px;}
.w1a{width:59.565000px;}
.w1d{width:60.645000px;}
.w1c{width:72.885000px;}
.w8{width:126.705000px;}
.w7{width:126.936000px;}
.w9{width:137.361000px;}
.w2d{width:146.340000px;}
.w20{width:149.940000px;}
.w21{width:160.590000px;}
.w1f{width:161.299500px;}
.w10{width:165.088500px;}
.w2e{width:169.050000px;}
.w6{width:180.015000px;}
.w2c{width:180.199500px;}
.w12{width:183.450000px;}
.w11{width:191.535000px;}
.w22{width:204.315000px;}
.w3{width:211.933500px;}
.w2f{width:214.260000px;}
.w13{width:233.520000px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.098500px;}
.x3{left:12.090000px;}
.x55{left:40.500000px;}
.x1{left:54.000000px;}
.x11{left:55.440000px;}
.x6{left:58.140000px;}
.x54{left:67.500000px;}
.xb{left:69.481500px;}
.x18{left:81.000000px;}
.x43{left:90.586500px;}
.xe{left:95.256000px;}
.x1b{left:108.036000px;}
.x37{left:110.376000px;}
.x19{left:135.036000px;}
.x1d{left:159.885000px;}
.x1a{left:162.030000px;}
.x4e{left:168.330000px;}
.x9{left:218.910000px;}
.x2b{left:224.505000px;}
.xa{left:228.810000px;}
.x1c{left:231.150000px;}
.x51{left:262.830000px;}
.x50{left:265.935000px;}
.x7{left:267.735000px;}
.x38{left:269.355000px;}
.x44{left:271.515000px;}
.x2e{left:277.815000px;}
.x2a{left:280.155000px;}
.xd{left:282.315000px;}
.x42{left:283.935000px;}
.x47{left:305.535000px;}
.x3a{left:311.655000px;}
.x8{left:322.275000px;}
.x2f{left:328.575000px;}
.x48{left:339.375000px;}
.x1e{left:340.635000px;}
.x3b{left:343.875000px;}
.x30{left:365.475000px;}
.x21{left:372.495000px;}
.x3c{left:376.095000px;}
.x22{left:404.535000px;}
.x2c{left:416.775000px;}
.x45{left:418.575000px;}
.x39{left:420.015000px;}
.x29{left:434.415000px;}
.x23{left:436.395000px;}
.x13{left:439.815000px;}
.x31{left:448.500000px;}
.x3d{left:450.300000px;}
.x1f{left:468.300000px;}
.xf{left:473.505000px;}
.x53{left:487.005000px;}
.x3e{left:490.620000px;}
.x49{left:492.240000px;}
.x32{left:494.580000px;}
.x14{left:500.505000px;}
.x10{left:514.725000px;}
.x15{left:527.505000px;}
.x24{left:532.020000px;}
.x4a{left:534.720000px;}
.x33{left:540.660000px;}
.x16{left:554.505000px;}
.x25{left:563.880000px;}
.x17{left:581.505000px;}
.x46{left:588.360000px;}
.x20{left:595.920000px;}
.x2d{left:600.960000px;}
.x3f{left:625.290000px;}
.x26{left:627.810000px;}
.x4b{left:633.750000px;}
.x34{left:647.970000px;}
.x27{left:659.670000px;}
.x12{left:668.490000px;}
.x40{left:679.110000px;}
.x4c{left:690.270000px;}
.x28{left:702.150000px;}
.x35{left:721.590000px;}
.x52{left:722.670000px;}
.x41{left:732.750000px;}
.x4d{left:746.610000px;}
.x4f{left:767.490000px;}
.x36{left:782.970000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls5{letter-spacing:-2.464000pt;}
.ls6{letter-spacing:-2.240000pt;}
.ls28{letter-spacing:-1.120000pt;}
.ls3{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.736000pt;}
.lsc{letter-spacing:-0.714667pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.624000pt;}
.lsd{letter-spacing:-0.528000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.380267pt;}
.ls19{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.075733pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.122667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls11{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.416000pt;}
.ls24{letter-spacing:0.656000pt;}
.ls27{letter-spacing:0.704000pt;}
.ls14{letter-spacing:0.736000pt;}
.ls26{letter-spacing:0.778667pt;}
.ls1e{letter-spacing:2.720000pt;}
.ls10{letter-spacing:3.360000pt;}
.ls1d{letter-spacing:10.400000pt;}
.ls1f{letter-spacing:12.320000pt;}
.ls22{letter-spacing:22.496000pt;}
.ls25{letter-spacing:22.624000pt;}
.ls12{letter-spacing:44.256000pt;}
.ls21{letter-spacing:46.816000pt;}
.ls17{letter-spacing:53.834667pt;}
.ls13{letter-spacing:53.856000pt;}
.ls23{letter-spacing:181.280000pt;}
.ls0{letter-spacing:946.186667pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.wsf{word-spacing:-12.736000pt;}
.ws18{word-spacing:-12.656000pt;}
.wsc{word-spacing:-12.320000pt;}
.ws16{word-spacing:-12.288000pt;}
.ws17{word-spacing:-12.160000pt;}
.wse{word-spacing:-12.096000pt;}
.ws14{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.ws13{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.808000pt;}
.ws15{word-spacing:-11.680000pt;}
.ws12{word-spacing:-11.552000pt;}
.ws6{word-spacing:-11.264000pt;}
.ws5{word-spacing:-9.760000pt;}
.wsb{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.357867pt;}
.ws9{word-spacing:-9.053333pt;}
.ws2{word-spacing:-8.869547pt;}
.wsa{word-spacing:-8.718933pt;}
.ws19{word-spacing:-8.704000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws1a{word-spacing:-7.360000pt;}
.ws11{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
._38{margin-left:-7.054080pt;}
._31{margin-left:-5.924480pt;}
._30{margin-left:-4.471040pt;}
._5{margin-left:-3.481173pt;}
._9{margin-left:-2.224000pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._1{width:2.438187pt;}
._a{width:3.331627pt;}
._e{width:4.320000pt;}
._4{width:5.859840pt;}
._d{width:7.632000pt;}
._c{width:8.868480pt;}
._b{width:9.795840pt;}
._10{width:10.696320pt;}
._12{width:13.347840pt;}
._11{width:14.640000pt;}
._f{width:15.799680pt;}
._1a{width:16.769280pt;}
._7{width:17.664000pt;}
._8{width:18.672000pt;}
._14{width:19.639680pt;}
._13{width:20.736000pt;}
._21{width:21.852587pt;}
._18{width:23.664000pt;}
._15{width:25.104000pt;}
._23{width:26.592000pt;}
._1f{width:27.872000pt;}
._22{width:28.768000pt;}
._16{width:30.314667pt;}
._17{width:31.365333pt;}
._20{width:32.883840pt;}
._1d{width:33.840000pt;}
._1e{width:35.040000pt;}
._19{width:36.816000pt;}
._24{width:37.971840pt;}
._1c{width:38.928000pt;}
._1b{width:40.368000pt;}
._3d{width:42.000000pt;}
._27{width:44.448000pt;}
._29{width:46.272000pt;}
._28{width:47.280000pt;}
._25{width:49.680000pt;}
._26{width:50.680320pt;}
._6{width:52.944000pt;}
._2f{width:67.344000pt;}
._2a{width:71.187840pt;}
._2b{width:72.482987pt;}
._39{width:86.458667pt;}
._33{width:88.416000pt;}
._32{width:89.632000pt;}
._2c{width:92.880000pt;}
._36{width:95.968000pt;}
._35{width:97.296000pt;}
._34{width:99.072000pt;}
._2e{width:100.321493pt;}
._2d{width:101.282987pt;}
._3b{width:133.962667pt;}
._3a{width:135.088000pt;}
._3c{width:165.744000pt;}
._37{width:181.060480pt;}
._3{width:384.724053pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:4.626667pt;}
.y173{bottom:4.640000pt;}
.y157{bottom:4.786667pt;}
.y159{bottom:4.946667pt;}
.y2e{bottom:4.960000pt;}
.y15c{bottom:5.106667pt;}
.y196{bottom:5.906667pt;}
.y1a0{bottom:5.920000pt;}
.y19c{bottom:6.080000pt;}
.y181{bottom:6.240000pt;}
.y1b7{bottom:6.400000pt;}
.y194{bottom:6.866667pt;}
.y31{bottom:6.880000pt;}
.y19a{bottom:7.026667pt;}
.y19e{bottom:7.040000pt;}
.y193{bottom:7.186667pt;}
.y178{bottom:7.520000pt;}
.y17f{bottom:7.680000pt;}
.y191{bottom:7.826667pt;}
.y1ba{bottom:8.000000pt;}
.y183{bottom:8.320000pt;}
.y1af{bottom:8.800000pt;}
.y17c{bottom:10.106667pt;}
.y1b4{bottom:11.520000pt;}
.y176{bottom:12.960000pt;}
.y1b2{bottom:13.440000pt;}
.y17a{bottom:13.600000pt;}
.y156{bottom:20.626667pt;}
.y172{bottom:20.640000pt;}
.y155{bottom:20.946667pt;}
.y2d{bottom:20.960000pt;}
.y30{bottom:22.720000pt;}
.y190{bottom:23.666667pt;}
.y2c{bottom:36.800000pt;}
.y56{bottom:50.720000pt;}
.y2b{bottom:60.640000pt;}
.y55{bottom:64.480000pt;}
.y4{bottom:68.640000pt;}
.y2a{bottom:76.506667pt;}
.y93{bottom:79.360000pt;}
.yc5{bottom:81.920000pt;}
.y27d{bottom:82.240000pt;}
.y1f4{bottom:83.200000pt;}
.yeb{bottom:87.200000pt;}
.y49{bottom:88.800000pt;}
.y169{bottom:89.760000pt;}
.y20e{bottom:91.520000pt;}
.y29{bottom:92.346667pt;}
.y6{bottom:93.440000pt;}
.y113{bottom:94.400000pt;}
.y166{bottom:94.720000pt;}
.y92{bottom:95.200000pt;}
.y1a2{bottom:95.840000pt;}
.y53{bottom:96.800000pt;}
.yc4{bottom:97.760000pt;}
.y27c{bottom:98.080000pt;}
.y1f3{bottom:99.200000pt;}
.yea{bottom:103.040000pt;}
.y239{bottom:103.200000pt;}
.y48{bottom:104.640000pt;}
.y168{bottom:105.600000pt;}
.y22c{bottom:105.760000pt;}
.y20d{bottom:107.360000pt;}
.y28{bottom:108.346667pt;}
.y91{bottom:111.200000pt;}
.y52{bottom:112.640000pt;}
.y243{bottom:113.600000pt;}
.yc3{bottom:113.760000pt;}
.y27b{bottom:113.920000pt;}
.y1f2{bottom:115.040000pt;}
.y1a1{bottom:115.680000pt;}
.y112{bottom:118.240000pt;}
.y165{bottom:118.560000pt;}
.ye9{bottom:118.880000pt;}
.y238{bottom:119.040000pt;}
.y167{bottom:121.600000pt;}
.y1d5{bottom:123.040000pt;}
.y20c{bottom:123.200000pt;}
.y27{bottom:124.186667pt;}
.y90{bottom:127.040000pt;}
.y47{bottom:128.480000pt;}
.y242{bottom:129.440000pt;}
.yc2{bottom:129.600000pt;}
.y27a{bottom:129.760000pt;}
.y1f1{bottom:130.880000pt;}
.y111{bottom:134.080000pt;}
.ye8{bottom:134.720000pt;}
.y237{bottom:134.880000pt;}
.y19f{bottom:135.520000pt;}
.y22b{bottom:137.440000pt;}
.y1d4{bottom:139.040000pt;}
.y20b{bottom:139.200000pt;}
.y26{bottom:140.026667pt;}
.y164{bottom:142.400000pt;}
.y8f{bottom:142.880000pt;}
.y46{bottom:144.320000pt;}
.yc1{bottom:145.440000pt;}
.y279{bottom:145.760000pt;}
.y1f0{bottom:146.720000pt;}
.y110{bottom:149.920000pt;}
.y19d{bottom:153.120000pt;}
.y22a{bottom:153.280000pt;}
.y1d3{bottom:154.880000pt;}
.y20a{bottom:155.040000pt;}
.y18{bottom:155.546667pt;}
.y25{bottom:155.866667pt;}
.ye7{bottom:158.560000pt;}
.y8e{bottom:158.720000pt;}
.y45{bottom:160.160000pt;}
.yc0{bottom:161.280000pt;}
.y278{bottom:161.600000pt;}
.y1ef{bottom:162.560000pt;}
.y163{bottom:166.240000pt;}
.y229{bottom:169.120000pt;}
.y1d2{bottom:170.720000pt;}
.y209{bottom:170.880000pt;}
.y19b{bottom:171.680000pt;}
.y24{bottom:171.706667pt;}
.y10f{bottom:173.760000pt;}
.ye6{bottom:174.400000pt;}
.y8d{bottom:174.560000pt;}
.y44{bottom:176.160000pt;}
.ybf{bottom:177.120000pt;}
.y277{bottom:177.440000pt;}
.y1ee{bottom:178.560000pt;}
.y17{bottom:179.386667pt;}
.y162{bottom:182.240000pt;}
.y51{bottom:184.186667pt;}
.y228{bottom:185.146667pt;}
.y208{bottom:186.746667pt;}
.y23{bottom:187.546667pt;}
.y199{bottom:189.320000pt;}
.y10e{bottom:189.786667pt;}
.y8c{bottom:190.426667pt;}
.y43{bottom:192.026667pt;}
.ybe{bottom:193.146667pt;}
.y276{bottom:193.306667pt;}
.y1d1{bottom:194.266667pt;}
.y1ed{bottom:194.426667pt;}
.y50{bottom:200.026667pt;}
.y227{bottom:200.986667pt;}
.y161{bottom:202.120000pt;}
.y207{bottom:202.586667pt;}
.y16{bottom:203.226667pt;}
.y22{bottom:203.546667pt;}
.ye5{bottom:206.266667pt;}
.y8b{bottom:206.426667pt;}
.y42{bottom:207.866667pt;}
.y198{bottom:208.040000pt;}
.ybd{bottom:208.986667pt;}
.y275{bottom:209.146667pt;}
.y1ec{bottom:210.266667pt;}
.y10d{bottom:213.626667pt;}
.y299{bottom:215.546667pt;}
.y4f{bottom:215.866667pt;}
.y1d0{bottom:216.346667pt;}
.y160{bottom:218.600000pt;}
.y21{bottom:219.386667pt;}
.ye4{bottom:222.106667pt;}
.y8a{bottom:222.266667pt;}
.y41{bottom:223.706667pt;}
.ybc{bottom:224.826667pt;}
.y274{bottom:225.146667pt;}
.y197{bottom:225.480000pt;}
.y206{bottom:226.586667pt;}
.y15{bottom:226.746667pt;}
.y4e{bottom:231.706667pt;}
.y1eb{bottom:234.106667pt;}
.y298{bottom:234.586667pt;}
.y15f{bottom:235.080000pt;}
.y20{bottom:235.226667pt;}
.y10c{bottom:237.466667pt;}
.ye3{bottom:237.946667pt;}
.y89{bottom:238.106667pt;}
.y40{bottom:239.546667pt;}
.ybb{bottom:240.666667pt;}
.y273{bottom:240.986667pt;}
.y205{bottom:242.426667pt;}
.y195{bottom:244.200000pt;}
.y4d{bottom:247.546667pt;}
.y1ea{bottom:249.946667pt;}
.y14{bottom:250.906667pt;}
.y1f{bottom:251.066667pt;}
.y15e{bottom:251.720000pt;}
.y10b{bottom:253.306667pt;}
.ye2{bottom:253.786667pt;}
.y88{bottom:253.946667pt;}
.y3f{bottom:255.546667pt;}
.yba{bottom:256.506667pt;}
.y272{bottom:256.826667pt;}
.y204{bottom:258.266667pt;}
.y192{bottom:261.640000pt;}
.y4c{bottom:263.546667pt;}
.y1e9{bottom:265.786667pt;}
.y297{bottom:266.426667pt;}
.y1e{bottom:266.906667pt;}
.y15d{bottom:268.200000pt;}
.y10a{bottom:269.146667pt;}
.y87{bottom:269.786667pt;}
.y3e{bottom:271.386667pt;}
.y226{bottom:272.346667pt;}
.y271{bottom:272.666667pt;}
.y203{bottom:274.106667pt;}
.y13{bottom:274.946667pt;}
.y4b{bottom:279.386667pt;}
.yb9{bottom:280.346667pt;}
.y18f{bottom:280.360000pt;}
.y1e8{bottom:281.786667pt;}
.y1d{bottom:282.946667pt;}
.y15b{bottom:284.680000pt;}
.y109{bottom:284.986667pt;}
.ye1{bottom:285.626667pt;}
.y86{bottom:285.786667pt;}
.y296{bottom:285.946667pt;}
.y3d{bottom:287.226667pt;}
.y225{bottom:288.346667pt;}
.y270{bottom:288.506667pt;}
.y202{bottom:289.946667pt;}
.y12{bottom:290.786667pt;}
.y4a{bottom:295.226667pt;}
.yb8{bottom:296.346667pt;}
.y1e7{bottom:297.626667pt;}
.y1c{bottom:298.786667pt;}
.y108{bottom:300.986667pt;}
.y15a{bottom:301.320000pt;}
.ye0{bottom:301.466667pt;}
.y85{bottom:301.626667pt;}
.y295{bottom:301.786667pt;}
.y224{bottom:304.186667pt;}
.y26f{bottom:304.346667pt;}
.y201{bottom:305.786667pt;}
.y11{bottom:306.626667pt;}
.y3c{bottom:311.066667pt;}
.yb7{bottom:312.186667pt;}
.y1e6{bottom:313.466667pt;}
.y1b{bottom:314.626667pt;}
.y107{bottom:316.826667pt;}
.ydf{bottom:317.306667pt;}
.y84{bottom:317.466667pt;}
.y294{bottom:317.786667pt;}
.y158{bottom:317.800000pt;}
.y223{bottom:320.026667pt;}
.y26e{bottom:320.346667pt;}
.y200{bottom:321.786667pt;}
.y3b{bottom:326.906667pt;}
.yb6{bottom:328.026667pt;}
.y18e{bottom:328.666667pt;}
.y1e5{bottom:329.306667pt;}
.y10{bottom:330.146667pt;}
.y1a{bottom:330.466667pt;}
.y106{bottom:332.666667pt;}
.yde{bottom:333.146667pt;}
.y83{bottom:333.306667pt;}
.y293{bottom:333.626667pt;}
.y154{bottom:334.280000pt;}
.y222{bottom:335.866667pt;}
.y26d{bottom:336.186667pt;}
.y1ff{bottom:337.626667pt;}
.y3a{bottom:342.746667pt;}
.yb5{bottom:343.866667pt;}
.y1e4{bottom:345.146667pt;}
.yf{bottom:345.986667pt;}
.y19{bottom:346.306667pt;}
.ydd{bottom:348.986667pt;}
.y82{bottom:349.146667pt;}
.y292{bottom:349.466667pt;}
.y241{bottom:351.706667pt;}
.y26c{bottom:352.026667pt;}
.y18d{bottom:352.826667pt;}
.y1fe{bottom:353.466667pt;}
.y105{bottom:356.506667pt;}
.y39{bottom:358.746667pt;}
.yb4{bottom:359.706667pt;}
.y81{bottom:364.986667pt;}
.y291{bottom:365.306667pt;}
.y152{bottom:366.760000pt;}
.y240{bottom:367.706667pt;}
.y26b{bottom:367.866667pt;}
.y18c{bottom:368.666667pt;}
.y1e3{bottom:368.826667pt;}
.y1fd{bottom:369.306667pt;}
.y104{bottom:372.346667pt;}
.y38{bottom:374.586667pt;}
.yb3{bottom:375.706667pt;}
.y80{bottom:380.986667pt;}
.y290{bottom:381.146667pt;}
.y23f{bottom:383.546667pt;}
.y26a{bottom:383.706667pt;}
.y18b{bottom:384.506667pt;}
.y1fc{bottom:385.146667pt;}
.ydc{bottom:388.506667pt;}
.y37{bottom:390.426667pt;}
.yb2{bottom:391.546667pt;}
.y1e2{bottom:392.706667pt;}
.y151{bottom:396.066667pt;}
.y103{bottom:396.386667pt;}
.y7f{bottom:396.866667pt;}
.y28f{bottom:397.026667pt;}
.y269{bottom:399.746667pt;}
.y18a{bottom:400.386667pt;}
.y1fb{bottom:401.186667pt;}
.y36{bottom:406.306667pt;}
.yb1{bottom:407.426667pt;}
.y102{bottom:412.226667pt;}
.ydb{bottom:412.706667pt;}
.y28e{bottom:413.026667pt;}
.y268{bottom:415.586667pt;}
.y189{bottom:416.386667pt;}
.y1e1{bottom:416.546667pt;}
.y1fa{bottom:417.026667pt;}
.y1cf{bottom:419.266667pt;}
.y134{bottom:420.226667pt;}
.y7e{bottom:420.706667pt;}
.y35{bottom:422.146667pt;}
.yb0{bottom:423.266667pt;}
.yda{bottom:428.546667pt;}
.y28d{bottom:428.866667pt;}
.y267{bottom:431.426667pt;}
.y188{bottom:432.226667pt;}
.y1f9{bottom:432.866667pt;}
.y101{bottom:436.066667pt;}
.y7d{bottom:436.546667pt;}
.y34{bottom:438.146667pt;}
.y1c6{bottom:438.626667pt;}
.y221{bottom:439.106667pt;}
.y1e0{bottom:440.706667pt;}
.yd9{bottom:444.386667pt;}
.y28c{bottom:444.706667pt;}
.y1ce{bottom:446.466667pt;}
.yaf{bottom:447.106667pt;}
.y266{bottom:447.266667pt;}
.y187{bottom:448.066667pt;}
.y1f8{bottom:448.706667pt;}
.y133{bottom:451.906667pt;}
.y7c{bottom:452.386667pt;}
.y33{bottom:453.986667pt;}
.y1c5{bottom:454.466667pt;}
.y220{bottom:454.946667pt;}
.y1df{bottom:456.546667pt;}
.y100{bottom:459.906667pt;}
.yd8{bottom:460.386667pt;}
.y28b{bottom:460.546667pt;}
.y1cd{bottom:462.466667pt;}
.yae{bottom:462.946667pt;}
.y265{bottom:463.106667pt;}
.y186{bottom:463.906667pt;}
.y1f7{bottom:464.546667pt;}
.y132{bottom:467.746667pt;}
.y7b{bottom:468.386667pt;}
.y1c4{bottom:470.466667pt;}
.y150{bottom:470.786667pt;}
.y21f{bottom:470.946667pt;}
.y32{bottom:471.106667pt;}
.y1de{bottom:472.386667pt;}
.yff{bottom:475.746667pt;}
.yd7{bottom:476.226667pt;}
.y28a{bottom:476.386667pt;}
.y1cc{bottom:478.306667pt;}
.yad{bottom:478.946667pt;}
.y185{bottom:479.746667pt;}
.y1f6{bottom:480.386667pt;}
.y131{bottom:483.586667pt;}
.y7a{bottom:484.226667pt;}
.y1c3{bottom:486.306667pt;}
.y14f{bottom:486.626667pt;}
.y21e{bottom:486.786667pt;}
.y1dd{bottom:488.386667pt;}
.yd6{bottom:492.066667pt;}
.y289{bottom:492.386667pt;}
.y1cb{bottom:494.146667pt;}
.y2f{bottom:494.626667pt;}
.yac{bottom:494.786667pt;}
.y264{bottom:494.946667pt;}
.y1f5{bottom:496.386667pt;}
.yfe{bottom:499.586667pt;}
.y79{bottom:500.066667pt;}
.y1c2{bottom:502.146667pt;}
.y14e{bottom:502.466667pt;}
.y21d{bottom:502.626667pt;}
.y184{bottom:503.426667pt;}
.y130{bottom:507.586667pt;}
.yd5{bottom:507.906667pt;}
.y288{bottom:508.226667pt;}
.y1ca{bottom:509.986667pt;}
.yab{bottom:510.626667pt;}
.y263{bottom:510.786667pt;}
.y1dc{bottom:511.906667pt;}
.yfd{bottom:515.586667pt;}
.y78{bottom:515.906667pt;}
.y1c1{bottom:517.986667pt;}
.y14d{bottom:518.306667pt;}
.y21c{bottom:518.466667pt;}
.y182{bottom:523.266667pt;}
.y12f{bottom:523.426667pt;}
.yd4{bottom:523.746667pt;}
.y287{bottom:524.066667pt;}
.y1c9{bottom:525.826667pt;}
.yaa{bottom:526.466667pt;}
.y262{bottom:526.626667pt;}
.y77{bottom:531.746667pt;}
.y1c0{bottom:533.826667pt;}
.y1db{bottom:533.986667pt;}
.y14c{bottom:534.306667pt;}
.ye{bottom:536.866667pt;}
.y12e{bottom:539.266667pt;}
.yfc{bottom:539.426667pt;}
.yd3{bottom:539.586667pt;}
.y23e{bottom:539.746667pt;}
.y286{bottom:539.906667pt;}
.y1c8{bottom:541.826667pt;}
.ya9{bottom:542.306667pt;}
.y261{bottom:542.466667pt;}
.y180{bottom:543.106667pt;}
.y236{bottom:547.586667pt;}
.y1bf{bottom:549.826667pt;}
.y14b{bottom:550.146667pt;}
.y21b{bottom:550.306667pt;}
.y12d{bottom:555.106667pt;}
.y76{bottom:555.266667pt;}
.yd2{bottom:555.586667pt;}
.y285{bottom:555.746667pt;}
.ya8{bottom:558.306667pt;}
.y17e{bottom:560.866667pt;}
.y235{bottom:563.586667pt;}
.y1be{bottom:565.666667pt;}
.y14a{bottom:565.986667pt;}
.y21a{bottom:566.146667pt;}
.y12c{bottom:570.946667pt;}
.y23d{bottom:571.586667pt;}
.ya7{bottom:574.146667pt;}
.y260{bottom:574.306667pt;}
.yfb{bottom:579.106667pt;}
.yd1{bottom:579.426667pt;}
.y75{bottom:579.586667pt;}
.y17d{bottom:580.226667pt;}
.y1bd{bottom:581.506667pt;}
.y149{bottom:581.826667pt;}
.y219{bottom:581.986667pt;}
.y12b{bottom:586.786667pt;}
.y23c{bottom:587.426667pt;}
.y284{bottom:587.586667pt;}
.ya6{bottom:589.986667pt;}
.y25f{bottom:590.146667pt;}
.yfa{bottom:594.946667pt;}
.yd0{bottom:595.266667pt;}
.y74{bottom:595.426667pt;}
.y218{bottom:597.826667pt;}
.y17b{bottom:599.266667pt;}
.y12a{bottom:602.813333pt;}
.y23b{bottom:603.293333pt;}
.y283{bottom:603.453333pt;}
.y1bc{bottom:605.053333pt;}
.y1c7{bottom:605.373333pt;}
.y148{bottom:605.693333pt;}
.ya5{bottom:605.853333pt;}
.y25e{bottom:606.013333pt;}
.ycf{bottom:611.133333pt;}
.y73{bottom:611.293333pt;}
.y217{bottom:613.693333pt;}
.y129{bottom:618.653333pt;}
.yf9{bottom:618.813333pt;}
.y23a{bottom:619.133333pt;}
.y282{bottom:619.293333pt;}
.y179{bottom:620.893333pt;}
.y147{bottom:621.533333pt;}
.ya4{bottom:621.693333pt;}
.y25d{bottom:621.853333pt;}
.yce{bottom:626.973333pt;}
.y72{bottom:627.133333pt;}
.y1bb{bottom:628.893333pt;}
.y216{bottom:629.533333pt;}
.y128{bottom:634.493333pt;}
.yf8{bottom:634.813333pt;}
.y234{bottom:634.973333pt;}
.y281{bottom:635.133333pt;}
.ya3{bottom:637.533333pt;}
.y25c{bottom:637.693333pt;}
.ycd{bottom:642.813333pt;}
.y71{bottom:642.973333pt;}
.y215{bottom:645.533333pt;}
.y177{bottom:646.013333pt;}
.y1b9{bottom:648.733333pt;}
.y127{bottom:650.333333pt;}
.y233{bottom:650.813333pt;}
.y280{bottom:650.973333pt;}
.y146{bottom:653.373333pt;}
.y25b{bottom:653.533333pt;}
.yf7{bottom:658.653333pt;}
.y70{bottom:658.813333pt;}
.ya2{bottom:661.213333pt;}
.y214{bottom:661.373333pt;}
.y175{bottom:665.053333pt;}
.y126{bottom:666.173333pt;}
.y232{bottom:666.813333pt;}
.y1b8{bottom:668.253333pt;}
.y145{bottom:669.213333pt;}
.y25a{bottom:669.533333pt;}
.yf6{bottom:674.493333pt;}
.ycc{bottom:674.653333pt;}
.y6f{bottom:674.813333pt;}
.y125{bottom:682.173333pt;}
.y231{bottom:682.653333pt;}
.y27f{bottom:682.813333pt;}
.y144{bottom:685.053333pt;}
.y213{bottom:685.213333pt;}
.y259{bottom:685.373333pt;}
.ya1{bottom:686.653333pt;}
.y1b6{bottom:687.453333pt;}
.y174{bottom:689.533333pt;}
.ycb{bottom:690.493333pt;}
.y6e{bottom:690.653333pt;}
.yf5{bottom:698.333333pt;}
.y230{bottom:698.493333pt;}
.y27e{bottom:698.653333pt;}
.y143{bottom:700.893333pt;}
.y212{bottom:701.053333pt;}
.y258{bottom:701.213333pt;}
.y1b5{bottom:705.533333pt;}
.y124{bottom:706.013333pt;}
.yca{bottom:706.333333pt;}
.y6d{bottom:706.493333pt;}
.y22f{bottom:714.333333pt;}
.ya0{bottom:714.493333pt;}
.y142{bottom:716.893333pt;}
.y257{bottom:717.053333pt;}
.y123{bottom:721.853333pt;}
.yc9{bottom:722.173333pt;}
.y6c{bottom:722.333333pt;}
.y1b3{bottom:724.093333pt;}
.y22e{bottom:730.173333pt;}
.y9f{bottom:730.333333pt;}
.y211{bottom:732.893333pt;}
.y122{bottom:737.693333pt;}
.y6b{bottom:738.173333pt;}
.y141{bottom:740.733333pt;}
.y9e{bottom:746.173333pt;}
.y1b1{bottom:747.133333pt;}
.y210{bottom:748.733333pt;}
.y256{bottom:748.893333pt;}
.y171{bottom:751.133333pt;}
.y121{bottom:753.533333pt;}
.yc8{bottom:754.013333pt;}
.y6a{bottom:754.173333pt;}
.y140{bottom:756.573333pt;}
.y22d{bottom:762.013333pt;}
.y9d{bottom:762.173333pt;}
.y255{bottom:764.733333pt;}
.y69{bottom:770.013333pt;}
.y1da{bottom:770.653333pt;}
.y1b0{bottom:772.093333pt;}
.y13f{bottom:772.413333pt;}
.y170{bottom:772.573333pt;}
.y20f{bottom:773.853333pt;}
.y120{bottom:777.373333pt;}
.yc7{bottom:777.533333pt;}
.yf4{bottom:777.853333pt;}
.y9c{bottom:778.013333pt;}
.y254{bottom:780.573333pt;}
.y68{bottom:785.853333pt;}
.y1d9{bottom:786.493333pt;}
.y13e{bottom:788.253333pt;}
.y16f{bottom:788.573333pt;}
.y1ae{bottom:790.653333pt;}
.y11f{bottom:793.373333pt;}
.yf3{bottom:793.693333pt;}
.y9b{bottom:793.853333pt;}
.y253{bottom:796.413333pt;}
.y67{bottom:801.693333pt;}
.y1d8{bottom:802.333333pt;}
.y13d{bottom:804.093333pt;}
.y16e{bottom:804.413333pt;}
.y11e{bottom:809.213333pt;}
.yf2{bottom:809.573333pt;}
.y9a{bottom:809.733333pt;}
.y1ad{bottom:811.013333pt;}
.y252{bottom:812.293333pt;}
.y66{bottom:817.573333pt;}
.y13c{bottom:820.133333pt;}
.y16d{bottom:820.293333pt;}
.y1d7{bottom:823.973333pt;}
.yf1{bottom:825.413333pt;}
.y99{bottom:825.573333pt;}
.y1ac{bottom:827.653333pt;}
.y251{bottom:828.133333pt;}
.y11d{bottom:833.093333pt;}
.y65{bottom:833.413333pt;}
.y13b{bottom:835.973333pt;}
.y16c{bottom:836.133333pt;}
.y98{bottom:841.413333pt;}
.y250{bottom:844.133333pt;}
.y1d6{bottom:845.893333pt;}
.y11c{bottom:848.933333pt;}
.y64{bottom:849.413333pt;}
.y16b{bottom:851.973333pt;}
.yf0{bottom:857.253333pt;}
.y97{bottom:857.413333pt;}
.y13a{bottom:859.813333pt;}
.y24f{bottom:859.973333pt;}
.y11b{bottom:864.773333pt;}
.y63{bottom:865.253333pt;}
.y16a{bottom:867.973333pt;}
.y1ab{bottom:872.773333pt;}
.yef{bottom:873.093333pt;}
.y96{bottom:873.253333pt;}
.y139{bottom:875.653333pt;}
.y24e{bottom:875.813333pt;}
.y62{bottom:881.093333pt;}
.y11a{bottom:888.773333pt;}
.yee{bottom:888.933333pt;}
.y95{bottom:889.093333pt;}
.y138{bottom:891.493333pt;}
.y24d{bottom:891.653333pt;}
.y61{bottom:896.933333pt;}
.yed{bottom:904.773333pt;}
.y94{bottom:904.933333pt;}
.y24c{bottom:907.493333pt;}
.y119{bottom:912.613333pt;}
.yc6{bottom:912.773333pt;}
.yd{bottom:913.093333pt;}
.y137{bottom:915.173333pt;}
.y60{bottom:920.773333pt;}
.y24b{bottom:923.493333pt;}
.y1aa{bottom:928.773333pt;}
.y136{bottom:931.013333pt;}
.y118{bottom:936.453333pt;}
.y5f{bottom:936.773333pt;}
.yc{bottom:936.933333pt;}
.y24a{bottom:939.333333pt;}
.yec{bottom:944.293333pt;}
.y1a9{bottom:944.613333pt;}
.y117{bottom:952.293333pt;}
.y5e{bottom:952.613333pt;}
.yb{bottom:955.173333pt;}
.y135{bottom:956.453333pt;}
.y1a8{bottom:960.453333pt;}
.y5d{bottom:968.453333pt;}
.y249{bottom:971.013333pt;}
.y116{bottom:976.133333pt;}
.y1a7{bottom:976.293333pt;}
.ya{bottom:981.733333pt;}
.y5c{bottom:984.293333pt;}
.y248{bottom:986.853333pt;}
.y5{bottom:989.280000pt;}
.y1a6{bottom:992.133333pt;}
.y115{bottom:999.973333pt;}
.y5b{bottom:1000.133333pt;}
.y247{bottom:1002.693333pt;}
.y9{bottom:1006.533333pt;}
.y1a5{bottom:1007.973333pt;}
.y5a{bottom:1015.973333pt;}
.y246{bottom:1018.720000pt;}
.y1a4{bottom:1024.000000pt;}
.y59{bottom:1032.000000pt;}
.y245{bottom:1034.560000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y114{bottom:1039.840000pt;}
.y58{bottom:1047.840000pt;}
.y2{bottom:1050.240000pt;}
.y1a3{bottom:1055.680000pt;}
.y7{bottom:1058.880000pt;}
.y244{bottom:1059.680000pt;}
.y57{bottom:1063.680000pt;}
.y1{bottom:1063.840000pt;}
.y54{bottom:1088.480000pt;}
.h15{height:15.826667pt;}
.h19{height:15.840000pt;}
.h17{height:15.986667pt;}
.h24{height:16.786667pt;}
.h28{height:16.800000pt;}
.h26{height:16.992000pt;}
.h20{height:17.106667pt;}
.h2d{height:17.280000pt;}
.h25{height:17.906667pt;}
.h27{height:17.920000pt;}
.h23{height:18.066667pt;}
.h1e{height:18.386667pt;}
.h1b{height:18.400000pt;}
.h1f{height:18.546667pt;}
.h2e{height:18.560000pt;}
.h2f{height:18.880000pt;}
.h21{height:19.186667pt;}
.h29{height:19.198667pt;}
.h2a{height:19.700000pt;}
.h1d{height:20.986667pt;}
.h2c{height:22.400000pt;}
.h1a{height:23.840000pt;}
.h2b{height:24.320000pt;}
.h1c{height:24.480000pt;}
.hb{height:31.406250pt;}
.h16{height:31.826667pt;}
.h18{height:31.840000pt;}
.h22{height:34.866667pt;}
.h13{height:36.305625pt;}
.h31{height:39.562500pt;}
.h10{height:41.586667pt;}
.h5{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h12{height:43.031250pt;}
.hf{height:47.085938pt;}
.he{height:47.109375pt;}
.hd{height:48.375000pt;}
.h14{height:49.336436pt;}
.h32{height:49.807500pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h30{height:62.812500pt;}
.h11{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:365.173333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w26{width:26.272000pt;}
.w33{width:27.072000pt;}
.we{width:27.538667pt;}
.w18{width:27.552000pt;}
.wd{width:27.666667pt;}
.wa{width:27.680000pt;}
.wc{width:27.712000pt;}
.wb{width:27.840000pt;}
.w24{width:28.000000pt;}
.w31{width:29.440000pt;}
.w30{width:29.600000pt;}
.w16{width:32.160000pt;}
.w27{width:35.186667pt;}
.w34{width:36.946667pt;}
.w23{width:36.960000pt;}
.wf{width:37.106667pt;}
.w29{width:38.258667pt;}
.w25{width:38.400000pt;}
.w35{width:39.538667pt;}
.w32{width:39.680000pt;}
.w19{width:40.146667pt;}
.w1b{width:41.138667pt;}
.w28{width:43.986667pt;}
.w15{width:44.480000pt;}
.w17{width:44.960000pt;}
.w1e{width:45.786667pt;}
.w14{width:46.578667pt;}
.w2b{width:47.026667pt;}
.w2a{width:47.186667pt;}
.w37{width:49.426667pt;}
.w36{width:49.586667pt;}
.w38{width:49.786667pt;}
.w1a{width:52.946667pt;}
.w1d{width:53.906667pt;}
.w1c{width:64.786667pt;}
.w8{width:112.626667pt;}
.w7{width:112.832000pt;}
.w9{width:122.098667pt;}
.w2d{width:130.080000pt;}
.w20{width:133.280000pt;}
.w21{width:142.746667pt;}
.w1f{width:143.377333pt;}
.w10{width:146.745333pt;}
.w2e{width:150.266667pt;}
.w6{width:160.013333pt;}
.w2c{width:160.177333pt;}
.w12{width:163.066667pt;}
.w11{width:170.253333pt;}
.w22{width:181.613333pt;}
.w3{width:188.385333pt;}
.w2f{width:190.453333pt;}
.w13{width:207.573333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.198667pt;}
.x3{left:10.746667pt;}
.x55{left:36.000000pt;}
.x1{left:48.000000pt;}
.x11{left:49.280000pt;}
.x6{left:51.680000pt;}
.x54{left:60.000000pt;}
.xb{left:61.761333pt;}
.x18{left:72.000000pt;}
.x43{left:80.521333pt;}
.xe{left:84.672000pt;}
.x1b{left:96.032000pt;}
.x37{left:98.112000pt;}
.x19{left:120.032000pt;}
.x1d{left:142.120000pt;}
.x1a{left:144.026667pt;}
.x4e{left:149.626667pt;}
.x9{left:194.586667pt;}
.x2b{left:199.560000pt;}
.xa{left:203.386667pt;}
.x1c{left:205.466667pt;}
.x51{left:233.626667pt;}
.x50{left:236.386667pt;}
.x7{left:237.986667pt;}
.x38{left:239.426667pt;}
.x44{left:241.346667pt;}
.x2e{left:246.946667pt;}
.x2a{left:249.026667pt;}
.xd{left:250.946667pt;}
.x42{left:252.386667pt;}
.x47{left:271.586667pt;}
.x3a{left:277.026667pt;}
.x8{left:286.466667pt;}
.x2f{left:292.066667pt;}
.x48{left:301.666667pt;}
.x1e{left:302.786667pt;}
.x3b{left:305.666667pt;}
.x30{left:324.866667pt;}
.x21{left:331.106667pt;}
.x3c{left:334.306667pt;}
.x22{left:359.586667pt;}
.x2c{left:370.466667pt;}
.x45{left:372.066667pt;}
.x39{left:373.346667pt;}
.x29{left:386.146667pt;}
.x23{left:387.906667pt;}
.x13{left:390.946667pt;}
.x31{left:398.666667pt;}
.x3d{left:400.266667pt;}
.x1f{left:416.266667pt;}
.xf{left:420.893333pt;}
.x53{left:432.893333pt;}
.x3e{left:436.106667pt;}
.x49{left:437.546667pt;}
.x32{left:439.626667pt;}
.x14{left:444.893333pt;}
.x10{left:457.533333pt;}
.x15{left:468.893333pt;}
.x24{left:472.906667pt;}
.x4a{left:475.306667pt;}
.x33{left:480.586667pt;}
.x16{left:492.893333pt;}
.x25{left:501.226667pt;}
.x17{left:516.893333pt;}
.x46{left:522.986667pt;}
.x20{left:529.706667pt;}
.x2d{left:534.186667pt;}
.x3f{left:555.813333pt;}
.x26{left:558.053333pt;}
.x4b{left:563.333333pt;}
.x34{left:575.973333pt;}
.x27{left:586.373333pt;}
.x12{left:594.213333pt;}
.x40{left:603.653333pt;}
.x4c{left:613.573333pt;}
.x28{left:624.133333pt;}
.x35{left:641.413333pt;}
.x52{left:642.373333pt;}
.x41{left:651.333333pt;}
.x4d{left:663.653333pt;}
.x4f{left:682.213333pt;}
.x36{left:695.973333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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