
    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_3918f7af96144f5e3d2f4f47.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_f08db6bbcc8e60d494ee8ca2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_43edf4ef88148b13fa7725bb.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_18578d71d89ea45148143de5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_a81db81901dd05f2478bfcd3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_873312fbb97c8d6bbdeb40ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_d78b050bb6af9f3698c50822.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_d6ee83e80b600096ea4152d3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6a89a7b8ca3382d158c6a553.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3ba090ae2f7f82b4e46ab5b6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8d86b7dcbf3243f80059d6ad.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_36ed05b6b2f3ed9ef5d26916.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.324707;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_585d98d257fe42f2bfc76bde.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.850586;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:-81.780000px;}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-3.600000px;}
.ls26{letter-spacing:-2.400000px;}
.ls1e{letter-spacing:-1.632000px;}
.ls4{letter-spacing:-1.620000px;}
.ls3{letter-spacing:-1.398000px;}
.ls11{letter-spacing:-0.816000px;}
.ls6{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.024000px;}
.ls29{letter-spacing:0.084000px;}
.ls1{letter-spacing:0.204000px;}
.ls1b{letter-spacing:0.480000px;}
.ls28{letter-spacing:0.552000px;}
.ls27{letter-spacing:0.576000px;}
.lse{letter-spacing:0.624000px;}
.ls21{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.816000px;}
.ls25{letter-spacing:1.152000px;}
.ls5{letter-spacing:1.200000px;}
.ls8{letter-spacing:1.260000px;}
.lsc{letter-spacing:1.572000px;}
.ls10{letter-spacing:1.632000px;}
.ls24{letter-spacing:1.716000px;}
.ls14{letter-spacing:1.734000px;}
.lsb{letter-spacing:1.752000px;}
.ls23{letter-spacing:2.304000px;}
.ls0{letter-spacing:2.400000px;}
.ls9{letter-spacing:2.460000px;}
.ls15{letter-spacing:13.704000px;}
.ls16{letter-spacing:18.504000px;}
.ls1c{letter-spacing:23.184000px;}
.ls17{letter-spacing:23.364000px;}
.ls22{letter-spacing:25.200000px;}
.ls18{letter-spacing:28.134000px;}
.ls12{letter-spacing:32.934000px;}
.ls1a{letter-spacing:37.734000px;}
.ls19{letter-spacing:42.534000px;}
.lsf{letter-spacing:52.134000px;}
.ls20{letter-spacing:85.734000px;}
.lsa{letter-spacing:847.080000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws0{word-spacing:-22.837500px;}
.ws1{word-spacing:-21.439500px;}
.ws2{word-spacing:-20.400000px;}
.ws9{word-spacing:-19.632000px;}
.ws7{word-spacing:-19.200000px;}
.wsa{word-spacing:-18.816000px;}
.ws8{word-spacing:-18.792000px;}
.ws6{word-spacing:-18.024000px;}
.ws5{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.976000px;}
.ws4{word-spacing:-17.208000px;}
.wsb{word-spacing:-17.184000px;}
.ws10{word-spacing:-16.416000px;}
.wsd{word-spacing:-16.368000px;}
.wsf{word-spacing:-15.600000px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-13.019400px;}
._a{margin-left:-8.984100px;}
._b{margin-left:-7.900500px;}
._d{margin-left:-6.561000px;}
._9{margin-left:-5.118750px;}
._6{margin-left:-4.039050px;}
._3{margin-left:-2.883600px;}
._1{margin-left:-1.441800px;}
._0{width:1.802250px;}
._2{width:3.244050px;}
._4{width:4.246950px;}
._5{width:5.552100px;}
._7{width:6.563850px;}
._8{width:8.046150px;}
._11{width:10.075050px;}
._f{width:11.520000px;}
._1c{width:14.170650px;}
._31{width:15.403500px;}
._10{width:16.519050px;}
._12{width:20.786100px;}
._1b{width:24.258000px;}
._16{width:25.350600px;}
._2d{width:26.622750px;}
._1a{width:29.883900px;}
._2c{width:34.284150px;}
._21{width:35.419050px;}
._32{width:39.328800px;}
._1e{width:40.387050px;}
._33{width:43.917000px;}
._13{width:48.655500px;}
._17{width:49.943250px;}
._14{width:53.455500px;}
._18{width:54.743250px;}
._2f{width:59.604300px;}
._15{width:63.787800px;}
._2e{width:69.345750px;}
._2b{width:72.772650px;}
._2a{width:78.459000px;}
._29{width:83.745750px;}
._25{width:97.987050px;}
._24{width:102.888000px;}
._28{width:107.779500px;}
._22{width:121.747950px;}
._23{width:135.713250px;}
._37{width:154.602900px;}
._30{width:160.089600px;}
._20{width:164.791950px;}
._35{width:169.058550px;}
._36{width:170.208000px;}
._1d{width:183.930000px;}
._26{width:226.434600px;}
._34{width:260.700000px;}
._1f{width:309.593250px;}
._27{width:745.835100px;}
._e{width:827.820000px;}
._19{width:847.140000px;}
.fc6{color:rgb(31,73,125);}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(33,37,41);}
.fc7{color:rgb(34,34,34);}
.fc5{color:rgb(39,39,39);}
.fc4{color:rgb(5,16,62);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:9.600000px;}
.fs1{font-size:48.000000px;}
.fsb{font-size:52.800000px;}
.fs3{font-size:62.400000px;}
.fsc{font-size:67.200000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:76.800000px;}
.fsd{font-size:81.750000px;}
.fs9{font-size:86.550000px;}
.fs7{font-size:91.350000px;}
.fs8{font-size:96.150000px;}
.fs4{font-size:110.550000px;}
.fs2{font-size:120.150000px;}
.fs6{font-size:139.350000px;}
.y35a{bottom:-4.815000px;}
.y0{bottom:0.000000px;}
.y208{bottom:3.585000px;}
.y172{bottom:3.600000px;}
.y1b2{bottom:3.615000px;}
.y198{bottom:3.645000px;}
.y1d0{bottom:4.800000px;}
.y2eb{bottom:4.815000px;}
.y2fe{bottom:4.830000px;}
.y21e{bottom:4.845000px;}
.y5{bottom:4.875000px;}
.y249{bottom:8.400000px;}
.y292{bottom:8.415000px;}
.y2b4{bottom:8.430000px;}
.y273{bottom:9.600000px;}
.y2f3{bottom:12.000000px;}
.y2ee{bottom:13.200000px;}
.y2f1{bottom:13.215000px;}
.y10d{bottom:13.230000px;}
.y2ef{bottom:13.245000px;}
.y111{bottom:14.400000px;}
.y254{bottom:14.415000px;}
.y113{bottom:14.430000px;}
.y10e{bottom:14.445000px;}
.y314{bottom:15.600000px;}
.y344{bottom:16.785000px;}
.y347{bottom:16.800000px;}
.y340{bottom:16.830000px;}
.y2e4{bottom:18.000000px;}
.y24f{bottom:18.045000px;}
.y245{bottom:19.185000px;}
.y22f{bottom:19.200000px;}
.y29b{bottom:19.230000px;}
.y258{bottom:22.800000px;}
.y2d2{bottom:22.830000px;}
.y31c{bottom:22.845000px;}
.y2e9{bottom:23.985000px;}
.y1b1{bottom:24.000000px;}
.y19f{bottom:24.030000px;}
.y171{bottom:24.045000px;}
.y1b9{bottom:25.200000px;}
.y1ac{bottom:25.230000px;}
.y1a9{bottom:25.245000px;}
.y2c9{bottom:28.800000px;}
.y32b{bottom:28.830000px;}
.y2e0{bottom:28.845000px;}
.y291{bottom:30.000000px;}
.y330{bottom:30.030000px;}
.y2b0{bottom:30.045000px;}
.y31e{bottom:31.230000px;}
.y320{bottom:31.245000px;}
.y33d{bottom:32.430000px;}
.y2e3{bottom:33.600000px;}
.y2cc{bottom:33.630000px;}
.y248{bottom:33.645000px;}
.y24d{bottom:34.845000px;}
.y22a{bottom:36.045000px;}
.y2b2{bottom:37.245000px;}
.y26f{bottom:38.430000px;}
.y24a{bottom:38.445000px;}
.y22e{bottom:39.630000px;}
.y2ba{bottom:39.645000px;}
.y331{bottom:42.045000px;}
.y2d1{bottom:43.230000px;}
.y278{bottom:43.245000px;}
.y110{bottom:44.430000px;}
.y1b0{bottom:44.445000px;}
.y32d{bottom:44.475000px;}
.y112{bottom:45.630000px;}
.y115{bottom:45.645000px;}
.y2fd{bottom:45.660000px;}
.y11a{bottom:45.675000px;}
.y1a8{bottom:45.690000px;}
.y222{bottom:46.830000px;}
.y313{bottom:46.845000px;}
.y31b{bottom:46.875000px;}
.y318{bottom:48.030000px;}
.y26c{bottom:48.045000px;}
.y31d{bottom:48.075000px;}
.y343{bottom:49.230000px;}
.y33f{bottom:49.260000px;}
.y317{bottom:50.475000px;}
.y335{bottom:52.830000px;}
.y333{bottom:52.845000px;}
.y32f{bottom:54.030000px;}
.y309{bottom:54.045000px;}
.y338{bottom:54.090000px;}
.y3{bottom:55.275000px;}
.y33c{bottom:57.645000px;}
.y247{bottom:58.845000px;}
.y26e{bottom:58.875000px;}
.y244{bottom:60.030000px;}
.y24c{bottom:60.045000px;}
.y29a{bottom:60.060000px;}
.y2df{bottom:60.075000px;}
.y2af{bottom:60.090000px;}
.y4{bottom:61.200000px;}
.y22d{bottom:61.230000px;}
.y290{bottom:61.245000px;}
.y30a{bottom:62.430000px;}
.y324{bottom:62.445000px;}
.y2d0{bottom:63.660000px;}
.y277{bottom:64.845000px;}
.y302{bottom:66.030000px;}
.y1af{bottom:66.045000px;}
.y207{bottom:66.060000px;}
.y197{bottom:66.075000px;}
.y21f{bottom:68.475000px;}
.y316{bottom:69.675000px;}
.y342{bottom:73.230000px;}
.y33e{bottom:73.260000px;}
.y346{bottom:73.275000px;}
.y308{bottom:74.430000px;}
.y2bb{bottom:74.475000px;}
.y29c{bottom:75.660000px;}
.y117{bottom:75.675000px;}
.y119{bottom:76.875000px;}
.y334{bottom:78.075000px;}
.y332{bottom:78.090000px;}
.y2d3{bottom:79.260000px;}
.y279{bottom:79.275000px;}
.y257{bottom:79.290000px;}
.y2cb{bottom:84.075000px;}
.y336{bottom:85.275000px;}
.y2e2{bottom:85.290000px;}
.y299{bottom:85.305000px;}
.y2b9{bottom:85.320000px;}
.y206{bottom:86.460000px;}
.y19e{bottom:86.475000px;}
.y1ae{bottom:86.490000px;}
.y201{bottom:86.505000px;}
.y196{bottom:86.520000px;}
.y204{bottom:87.675000px;}
.y1cf{bottom:87.690000px;}
.y2fc{bottom:87.705000px;}
.y2cf{bottom:88.905000px;}
.y276{bottom:90.090000px;}
.y2ae{bottom:91.275000px;}
.y28f{bottom:92.475000px;}
.y259{bottom:93.675000px;}
.y26b{bottom:94.875000px;}
.y341{bottom:97.260000px;}
.y345{bottom:97.275000px;}
.y256{bottom:104.475000px;}
.y1e0{bottom:106.875000px;}
.y19d{bottom:106.905000px;}
.y195{bottom:106.920000px;}
.y301{bottom:108.075000px;}
.y200{bottom:108.105000px;}
.y1a7{bottom:108.120000px;}
.y298{bottom:110.505000px;}
.y2b8{bottom:110.520000px;}
.y22c{bottom:111.705000px;}
.y2ce{bottom:114.105000px;}
.y275{bottom:115.320000px;}
.y2c8{bottom:121.320000px;}
.y28e{bottom:122.520000px;}
.y26a{bottom:124.905000px;}
.y368{bottom:124.912500px;}
.y307{bottom:124.920000px;}
.y19c{bottom:127.305000px;}
.y1ff{bottom:128.505000px;}
.y92{bottom:128.512500px;}
.y1ce{bottom:128.520000px;}
.y2fb{bottom:128.535000px;}
.y194{bottom:128.550000px;}
.y1a6{bottom:128.565000px;}
.y255{bottom:129.720000px;}
.y35c{bottom:129.750000px;}
.y134{bottom:130.950000px;}
.y35f{bottom:132.150000px;}
.y102{bottom:133.350000px;}
.y243{bottom:136.905000px;}
.y49{bottom:138.150000px;}
.y238{bottom:145.305000px;}
.y1a{bottom:145.350000px;}
.y300{bottom:148.905000px;}
.y1df{bottom:148.920000px;}
.y2fa{bottom:148.935000px;}
.y193{bottom:148.950000px;}
.y154{bottom:150.150000px;}
.y167{bottom:152.550000px;}
.y28d{bottom:153.720000px;}
.y2ad{bottom:153.750000px;}
.y173{bottom:154.950000px;}
.y269{bottom:156.150000px;}
.y91{bottom:159.750000px;}
.y1eb{bottom:160.950000px;}
.y133{bottom:162.150000px;}
.yc8{bottom:163.350000px;}
.y101{bottom:164.550000px;}
.y34b{bottom:165.750000px;}
.y306{bottom:166.950000px;}
.y242{bottom:168.135000px;}
.y217{bottom:168.150000px;}
.y19b{bottom:169.350000px;}
.yd8{bottom:169.380000px;}
.y192{bottom:169.395000px;}
.y1cd{bottom:170.550000px;}
.y2f9{bottom:170.580000px;}
.y48{bottom:174.180000px;}
.y35b{bottom:175.380000px;}
.y311{bottom:176.580000px;}
.y35e{bottom:177.780000px;}
.y14d{bottom:178.980000px;}
.y19{bottom:180.180000px;}
.yb5{bottom:181.380000px;}
.y2c7{bottom:182.550000px;}
.y5e{bottom:182.580000px;}
.y28c{bottom:184.950000px;}
.y272{bottom:184.980000px;}
.y2ac{bottom:184.995000px;}
.y329{bottom:186.180000px;}
.y305{bottom:187.350000px;}
.y268{bottom:187.380000px;}
.y1fc{bottom:188.580000px;}
.y1de{bottom:189.750000px;}
.y1f3{bottom:189.780000px;}
.y191{bottom:189.795000px;}
.y90{bottom:190.980000px;}
.y1a5{bottom:190.995000px;}
.yc7{bottom:193.380000px;}
.y77{bottom:194.580000px;}
.y141{bottom:195.795000px;}
.y359{bottom:196.995000px;}
.y166{bottom:198.180000px;}
.yd7{bottom:200.580000px;}
.y241{bottom:204.180000px;}
.y252{bottom:205.380000px;}
.y2c3{bottom:205.395000px;}
.y312{bottom:206.580000px;}
.y304{bottom:207.795000px;}
.y132{bottom:209.025000px;}
.y19a{bottom:210.180000px;}
.y14c{bottom:210.225000px;}
.y203{bottom:211.380000px;}
.y1cc{bottom:211.395000px;}
.ya9{bottom:211.425000px;}
.y1a4{bottom:211.440000px;}
.yb4{bottom:212.625000px;}
.y354{bottom:213.825000px;}
.y2de{bottom:214.995000px;}
.y28b{bottom:216.195000px;}
.y18{bottom:216.225000px;}
.y267{bottom:218.580000px;}
.y310{bottom:218.625000px;}
.y47{bottom:221.025000px;}
.y237{bottom:222.180000px;}
.y8f{bottom:222.225000px;}
.y364{bottom:223.425000px;}
.y323{bottom:224.625000px;}
.y13f{bottom:225.825000px;}
.y118{bottom:227.025000px;}
.y303{bottom:228.180000px;}
.y76{bottom:228.225000px;}
.y216{bottom:229.425000px;}
.y2c2{bottom:230.640000px;}
.y1dd{bottom:231.795000px;}
.y190{bottom:231.825000px;}
.y1fb{bottom:234.225000px;}
.y251{bottom:235.425000px;}
.y2d9{bottom:236.625000px;}
.y131{bottom:239.025000px;}
.y240{bottom:240.210000px;}
.yc6{bottom:240.225000px;}
.y14b{bottom:241.425000px;}
.ya8{bottom:242.625000px;}
.y165{bottom:243.825000px;}
.y353{bottom:245.025000px;}
.y2dd{bottom:246.225000px;}
.y236{bottom:247.410000px;}
.y2ab{bottom:247.425000px;}
.y28a{bottom:247.440000px;}
.y266{bottom:249.825000px;}
.y226{bottom:249.855000px;}
.y199{bottom:252.225000px;}
.y17{bottom:252.255000px;}
.y18f{bottom:252.270000px;}
.y1cb{bottom:253.425000px;}
.yd6{bottom:253.455000px;}
.y2f{bottom:254.655000px;}
.y2c1{bottom:255.825000px;}
.y295{bottom:255.855000px;}
.y13e{bottom:257.070000px;}
.y145{bottom:258.255000px;}
.y5d{bottom:259.455000px;}
.y23f{bottom:260.625000px;}
.y367{bottom:263.055000px;}
.y1e1{bottom:264.255000px;}
.y271{bottom:265.455000px;}
.y46{bottom:266.670000px;}
.y125{bottom:267.870000px;}
.y100{bottom:269.055000px;}
.y130{bottom:270.255000px;}
.yc5{bottom:271.455000px;}
.y1dc{bottom:272.625000px;}
.ya7{bottom:272.655000px;}
.y18e{bottom:272.670000px;}
.y1ab{bottom:273.855000px;}
.y1a3{bottom:273.870000px;}
.y16f{bottom:275.070000px;}
.y215{bottom:276.255000px;}
.y75{bottom:277.455000px;}
.y2dc{bottom:277.470000px;}
.y24e{bottom:278.655000px;}
.y2aa{bottom:278.670000px;}
.y1fa{bottom:279.855000px;}
.y23e{bottom:281.055000px;}
.y225{bottom:281.070000px;}
.y228{bottom:282.255000px;}
.yed{bottom:283.455000px;}
.yd5{bottom:284.655000px;}
.y30f{bottom:285.855000px;}
.y294{bottom:287.070000px;}
.y16{bottom:288.300000px;}
.yb3{bottom:289.500000px;}
.y164{bottom:290.700000px;}
.y352{bottom:291.900000px;}
.y289{bottom:293.070000px;}
.y202{bottom:294.255000px;}
.y1ca{bottom:294.270000px;}
.y18d{bottom:294.300000px;}
.y1a2{bottom:294.315000px;}
.y270{bottom:295.500000px;}
.y250{bottom:296.700000px;}
.y235{bottom:297.855000px;}
.y45{bottom:297.900000px;}
.y8e{bottom:299.100000px;}
.yff{bottom:300.300000px;}
.y2a2{bottom:301.500000px;}
.yc4{bottom:302.700000px;}
.ya6{bottom:303.900000px;}
.y2e{bottom:305.100000px;}
.y2c0{bottom:306.270000px;}
.y16e{bottom:306.300000px;}
.y214{bottom:307.500000px;}
.y2a9{bottom:308.700000px;}
.y293{bottom:309.900000px;}
.y26d{bottom:311.100000px;}
.y2cd{bottom:312.300000px;}
.y328{bottom:313.500000px;}
.yec{bottom:314.700000px;}
.y18c{bottom:314.715000px;}
.y224{bottom:315.900000px;}
.y23d{bottom:317.085000px;}
.y12f{bottom:317.100000px;}
.y14a{bottom:318.300000px;}
.y152{bottom:319.500000px;}
.yb2{bottom:320.700000px;}
.y116{bottom:321.900000px;}
.y234{bottom:323.085000px;}
.y15{bottom:323.100000px;}
.y74{bottom:325.500000px;}
.y1f9{bottom:326.700000px;}
.y227{bottom:329.130000px;}
.y8d{bottom:330.330000px;}
.y2bf{bottom:331.515000px;}
.y2b3{bottom:331.530000px;}
.y30e{bottom:331.545000px;}
.y13d{bottom:333.930000px;}
.y1db{bottom:335.100000px;}
.ya5{bottom:335.130000px;}
.y18b{bottom:335.145000px;}
.y1c9{bottom:336.300000px;}
.y163{bottom:336.330000px;}
.y23c{bottom:337.500000px;}
.y2c6{bottom:337.515000px;}
.y223{bottom:337.530000px;}
.y5c{bottom:337.545000px;}
.y281{bottom:339.900000px;}
.y44{bottom:343.530000px;}
.y2d8{bottom:343.545000px;}
.y322{bottom:344.730000px;}
.y24b{bottom:345.930000px;}
.yeb{bottom:345.945000px;}
.y36c{bottom:347.130000px;}
.y2a1{bottom:347.145000px;}
.yc3{bottom:348.330000px;}
.y149{bottom:349.530000px;}
.y151{bottom:350.730000px;}
.y358{bottom:351.945000px;}
.y2b5{bottom:353.130000px;}
.y30b{bottom:354.330000px;}
.y1f2{bottom:355.530000px;}
.y18a{bottom:355.545000px;}
.y73{bottom:356.730000px;}
.y1a1{bottom:356.745000px;}
.y2b1{bottom:357.930000px;}
.y14{bottom:359.130000px;}
.y337{bottom:361.530000px;}
.y2d{bottom:361.545000px;}
.y265{bottom:362.730000px;}
.y288{bottom:362.745000px;}
.y13c{bottom:365.130000px;}
.y280{bottom:365.145000px;}
.ya4{bottom:366.330000px;}
.y2d7{bottom:368.745000px;}
.y213{bottom:368.775000px;}
.y25e{bottom:371.130000px;}
.y1f8{bottom:372.375000px;}
.y233{bottom:373.530000px;}
.y2f6{bottom:374.775000px;}
.y5b{bottom:375.975000px;}
.y1c8{bottom:377.145000px;}
.y124{bottom:377.175000px;}
.y1a0{bottom:377.190000px;}
.yea{bottom:378.375000px;}
.y23b{bottom:379.530000px;}
.yc2{bottom:379.575000px;}
.y148{bottom:380.775000px;}
.y2be{bottom:381.945000px;}
.y144{bottom:381.975000px;}
.y2c5{bottom:383.145000px;}
.yfe{bottom:383.175000px;}
.y321{bottom:385.575000px;}
.y72{bottom:386.775000px;}
.y287{bottom:389.145000px;}
.y27f{bottom:390.345000px;}
.y43{bottom:390.375000px;}
.y8c{bottom:391.575000px;}
.y2c{bottom:392.775000px;}
.yd4{bottom:393.975000px;}
.y13b{bottom:396.375000px;}
.y183{bottom:397.575000px;}
.y189{bottom:397.590000px;}
.y232{bottom:398.760000px;}
.y23a{bottom:399.960000px;}
.y13{bottom:399.975000px;}
.y366{bottom:401.175000px;}
.y2a8{bottom:401.190000px;}
.y221{bottom:402.375000px;}
.y2c4{bottom:403.575000px;}
.y35d{bottom:404.775000px;}
.y2bd{bottom:407.175000px;}
.ye9{bottom:408.405000px;}
.y12e{bottom:409.605000px;}
.yc1{bottom:410.820000px;}
.ya3{bottom:412.005000px;}
.y162{bottom:413.205000px;}
.y5a{bottom:414.405000px;}
.y27e{bottom:415.575000px;}
.y114{bottom:415.605000px;}
.y286{bottom:416.775000px;}
.y1da{bottom:417.975000px;}
.y71{bottom:418.005000px;}
.y188{bottom:418.020000px;}
.y1c7{bottom:419.175000px;}
.y182{bottom:419.205000px;}
.y2d6{bottom:419.220000px;}
.y239{bottom:420.375000px;}
.y25d{bottom:421.605000px;}
.y246{bottom:422.805000px;}
.y8b{bottom:422.820000px;}
.y231{bottom:423.960000px;}
.y220{bottom:424.005000px;}
.y264{bottom:425.205000px;}
.y31f{bottom:426.405000px;}
.y13a{bottom:427.605000px;}
.y357{bottom:428.820000px;}
.y351{bottom:430.005000px;}
.y212{bottom:431.205000px;}
.y2e1{bottom:432.405000px;}
.y2a7{bottom:432.420000px;}
.y29d{bottom:433.605000px;}
.y42{bottom:436.005000px;}
.y2b{bottom:438.405000px;}
.y187{bottom:438.420000px;}
.ye8{bottom:439.605000px;}
.y1c6{bottom:439.620000px;}
.y12{bottom:440.820000px;}
.yc0{bottom:442.005000px;}
.yb1{bottom:443.205000px;}
.y285{bottom:443.220000px;}
.y161{bottom:444.405000px;}
.y2d5{bottom:444.420000px;}
.yfd{bottom:445.605000px;}
.y25c{bottom:446.805000px;}
.y2db{bottom:446.820000px;}
.y2a0{bottom:448.020000px;}
.y70{bottom:449.250000px;}
.y59{bottom:452.850000px;}
.y8a{bottom:454.050000px;}
.y263{bottom:456.420000px;}
.y12d{bottom:456.450000px;}
.y15d{bottom:457.650000px;}
.ya2{bottom:458.850000px;}
.y1c5{bottom:460.020000px;}
.y181{bottom:460.050000px;}
.y1f5{bottom:460.065000px;}
.y211{bottom:462.450000px;}
.y2a6{bottom:463.650000px;}
.y1f7{bottom:464.850000px;}
.y27d{bottom:466.020000px;}
.y21d{bottom:466.050000px;}
.y2da{bottom:467.250000px;}
.y284{bottom:469.620000px;}
.y2a{bottom:469.650000px;}
.y2d4{bottom:469.665000px;}
.ybf{bottom:472.050000px;}
.y139{bottom:473.250000px;}
.y143{bottom:474.450000px;}
.y350{bottom:475.650000px;}
.y11{bottom:476.850000px;}
.yfc{bottom:478.050000px;}
.y180{bottom:480.450000px;}
.y1d9{bottom:480.465000px;}
.y186{bottom:480.495000px;}
.y41{bottom:481.650000px;}
.y6f{bottom:482.850000px;}
.y2f5{bottom:484.050000px;}
.y123{bottom:485.250000px;}
.y262{bottom:486.450000px;}
.yd3{bottom:487.680000px;}
.y365{bottom:488.880000px;}
.ya1{bottom:490.080000px;}
.y27c{bottom:491.250000px;}
.y58{bottom:491.280000px;}
.y1d1{bottom:492.480000px;}
.y210{bottom:493.695000px;}
.y2a5{bottom:494.895000px;}
.y25b{bottom:497.250000px;}
.y1f6{bottom:498.480000px;}
.y29f{bottom:498.495000px;}
.y2ca{bottom:499.680000px;}
.y230{bottom:499.695000px;}
.y1d8{bottom:500.850000px;}
.y29{bottom:500.880000px;}
.y185{bottom:500.895000px;}
.y1c4{bottom:502.050000px;}
.y12c{bottom:502.080000px;}
.ybe{bottom:503.280000px;}
.y283{bottom:504.450000px;}
.y138{bottom:504.480000px;}
.y153{bottom:505.695000px;}
.yfb{bottom:509.280000px;}
.y1f4{bottom:512.880000px;}
.y2f4{bottom:514.080000px;}
.y30d{bottom:515.280000px;}
.y10{bottom:516.480000px;}
.y27b{bottom:516.495000px;}
.y261{bottom:517.680000px;}
.y21c{bottom:517.695000px;}
.yd2{bottom:518.880000px;}
.y147{bottom:520.080000px;}
.ya0{bottom:521.280000px;}
.y1d7{bottom:521.295000px;}
.y184{bottom:521.340000px;}
.y16d{bottom:522.480000px;}
.y1c3{bottom:522.495000px;}
.y29e{bottom:523.695000px;}
.y20f{bottom:524.880000px;}
.y369{bottom:526.080000px;}
.y2a4{bottom:526.095000px;}
.y40{bottom:528.525000px;}
.y57{bottom:529.725000px;}
.y89{bottom:530.925000px;}
.y12b{bottom:533.325000px;}
.ybd{bottom:534.525000px;}
.ye7{bottom:535.725000px;}
.y160{bottom:536.925000px;}
.y282{bottom:538.095000px;}
.y28{bottom:539.325000px;}
.yfa{bottom:540.525000px;}
.y27a{bottom:541.695000px;}
.y10f{bottom:541.725000px;}
.y1c2{bottom:542.895000px;}
.y17f{bottom:542.925000px;}
.y1ea{bottom:542.940000px;}
.y2f2{bottom:545.325000px;}
.y2a3{bottom:546.525000px;}
.y21b{bottom:547.725000px;}
.y260{bottom:548.925000px;}
.yd1{bottom:550.125000px;}
.y9f{bottom:551.325000px;}
.y34f{bottom:552.525000px;}
.yf{bottom:556.125000px;}
.y348{bottom:558.525000px;}
.y6e{bottom:562.125000px;}
.y17e{bottom:563.325000px;}
.y1d6{bottom:563.340000px;}
.y12a{bottom:564.525000px;}
.ybc{bottom:565.725000px;}
.y3f{bottom:566.955000px;}
.y56{bottom:568.155000px;}
.y25f{bottom:569.325000px;}
.y16c{bottom:569.355000px;}
.y25a{bottom:572.925000px;}
.yf9{bottom:572.955000px;}
.y2f0{bottom:575.355000px;}
.y2bc{bottom:576.555000px;}
.y36b{bottom:577.755000px;}
.y21a{bottom:578.955000px;}
.y15c{bottom:580.155000px;}
.y146{bottom:581.355000px;}
.y142{bottom:582.555000px;}
.y1d5{bottom:583.725000px;}
.y1aa{bottom:583.755000px;}
.y1e9{bottom:583.770000px;}
.y1c1{bottom:584.925000px;}
.y17d{bottom:584.955000px;}
.y27{bottom:586.155000px;}
.y363{bottom:592.155000px;}
.y88{bottom:593.355000px;}
.yd0{bottom:595.755000px;}
.y3e{bottom:596.955000px;}
.y9e{bottom:598.155000px;}
.y356{bottom:599.355000px;}
.y16b{bottom:600.555000px;}
.y20e{bottom:601.755000px;}
.ye{bottom:604.155000px;}
.y1d4{bottom:604.170000px;}
.y1b8{bottom:605.355000px;}
.y17c{bottom:605.370000px;}
.y55{bottom:606.600000px;}
.y122{bottom:607.800000px;}
.y6d{bottom:610.200000px;}
.y137{bottom:612.600000px;}
.y15f{bottom:613.800000px;}
.y2ff{bottom:615.000000px;}
.y36a{bottom:618.600000px;}
.y26{bottom:622.200000px;}
.y87{bottom:624.600000px;}
.y1d3{bottom:625.770000px;}
.yd{bottom:625.800000px;}
.y1e8{bottom:625.815000px;}
.ycf{bottom:627.000000px;}
.ybb{bottom:628.200000px;}
.y9d{bottom:629.400000px;}
.ye6{bottom:630.600000px;}
.y3d{bottom:633.000000px;}
.y30c{bottom:634.200000px;}
.y360{bottom:635.400000px;}
.yf8{bottom:636.600000px;}
.y362{bottom:637.800000px;}
.y121{bottom:639.000000px;}
.y6c{bottom:641.400000px;}
.yb0{bottom:643.800000px;}
.y15e{bottom:645.000000px;}
.y17b{bottom:646.200000px;}
.y1d2{bottom:646.215000px;}
.y54{bottom:646.230000px;}
.y1f1{bottom:646.245000px;}
.y86{bottom:655.830000px;}
.y129{bottom:657.030000px;}
.y25{bottom:658.230000px;}
.yba{bottom:659.445000px;}
.y9c{bottom:660.630000px;}
.ye5{bottom:661.830000px;}
.y20d{bottom:664.230000px;}
.y1b7{bottom:666.630000px;}
.y1e7{bottom:666.645000px;}
.yf7{bottom:667.830000px;}
.y1c0{bottom:667.845000px;}
.y3c{bottom:669.030000px;}
.y31a{bottom:670.230000px;}
.yc{bottom:672.630000px;}
.yaf{bottom:675.030000px;}
.y34e{bottom:676.230000px;}
.y361{bottom:679.830000px;}
.y53{bottom:684.630000px;}
.y120{bottom:685.875000px;}
.y85{bottom:687.075000px;}
.y17a{bottom:688.245000px;}
.y15b{bottom:688.275000px;}
.yce{bottom:689.475000px;}
.y9b{bottom:690.675000px;}
.y16a{bottom:691.875000px;}
.ye4{bottom:694.275000px;}
.y24{bottom:696.675000px;}
.yf6{bottom:700.275000px;}
.y10c{bottom:702.675000px;}
.y6b{bottom:703.875000px;}
.y3b{bottom:705.075000px;}
.yb{bottom:706.275000px;}
.y34d{bottom:707.475000px;}
.y179{bottom:708.675000px;}
.y1e6{bottom:708.690000px;}
.y2ed{bottom:709.875000px;}
.y11f{bottom:715.875000px;}
.y84{bottom:718.275000px;}
.y15a{bottom:719.475000px;}
.yb9{bottom:720.675000px;}
.y9a{bottom:721.875000px;}
.y52{bottom:723.075000px;}
.ye3{bottom:724.275000px;}
.y177{bottom:729.075000px;}
.y1b6{bottom:729.105000px;}
.y1f0{bottom:729.120000px;}
.yf5{bottom:731.505000px;}
.y10b{bottom:733.905000px;}
.y6a{bottom:735.105000px;}
.y150{bottom:736.305000px;}
.y127{bottom:737.505000px;}
.y34c{bottom:738.705000px;}
.y3a{bottom:739.905000px;}
.y20c{bottom:743.505000px;}
.y11e{bottom:747.105000px;}
.y1b5{bottom:749.505000px;}
.y1e5{bottom:749.520000px;}
.y176{bottom:750.705000px;}
.y1bf{bottom:750.720000px;}
.yae{bottom:751.905000px;}
.ya{bottom:753.105000px;}
.ye2{bottom:755.505000px;}
.y2ec{bottom:760.320000px;}
.y39{bottom:761.505000px;}
.y83{bottom:763.905000px;}
.y69{bottom:765.105000px;}
.ycd{bottom:766.350000px;}
.y136{bottom:767.550000px;}
.y99{bottom:768.750000px;}
.y169{bottom:769.950000px;}
.y1be{bottom:771.120000px;}
.y175{bottom:771.150000px;}
.y32e{bottom:775.950000px;}
.y20b{bottom:777.150000px;}
.y219{bottom:780.750000px;}
.y9{bottom:783.150000px;}
.y23{bottom:784.350000px;}
.y10a{bottom:786.750000px;}
.ye1{bottom:787.950000px;}
.y36d{bottom:789.150000px;}
.y178{bottom:791.550000px;}
.y1e4{bottom:791.565000px;}
.y1fe{bottom:792.750000px;}
.y82{bottom:795.150000px;}
.y38{bottom:796.350000px;}
.ycc{bottom:797.550000px;}
.yb8{bottom:798.750000px;}
.y51{bottom:799.950000px;}
.y319{bottom:801.150000px;}
.y20a{bottom:808.380000px;}
.y1bd{bottom:811.950000px;}
.y1b4{bottom:811.980000px;}
.y174{bottom:811.995000px;}
.y218{bottom:813.195000px;}
.y126{bottom:814.380000px;}
.y22{bottom:815.580000px;}
.y109{bottom:817.980000px;}
.ye0{bottom:820.380000px;}
.y209{bottom:822.780000px;}
.y81{bottom:826.380000px;}
.y68{bottom:827.580000px;}
.ycb{bottom:828.780000px;}
.yad{bottom:829.980000px;}
.y11d{bottom:831.195000px;}
.y37{bottom:832.380000px;}
.y1e3{bottom:832.395000px;}
.y1bc{bottom:833.595000px;}
.yf4{bottom:837.195000px;}
.y50{bottom:838.380000px;}
.y2f8{bottom:843.195000px;}
.y14f{bottom:844.380000px;}
.y98{bottom:845.625000px;}
.y168{bottom:846.825000px;}
.y108{bottom:848.025000px;}
.y2ea{bottom:850.425000px;}
.ydf{bottom:851.625000px;}
.y1ef{bottom:852.825000px;}
.y1bb{bottom:853.995000px;}
.y1b3{bottom:854.025000px;}
.y80{bottom:857.625000px;}
.y67{bottom:858.825000px;}
.yac{bottom:860.025000px;}
.y21{bottom:861.225000px;}
.y36{bottom:868.425000px;}
.y159{bottom:874.425000px;}
.y1e2{bottom:874.440000px;}
.y14e{bottom:875.625000px;}
.y4f{bottom:876.825000px;}
.y32c{bottom:880.425000px;}
.yde{bottom:882.825000px;}
.y7f{bottom:888.855000px;}
.y66{bottom:890.070000px;}
.yab{bottom:891.255000px;}
.y20{bottom:892.455000px;}
.y2e8{bottom:893.670000px;}
.y1ba{bottom:894.825000px;}
.y1ee{bottom:894.870000px;}
.y107{bottom:900.855000px;}
.yf3{bottom:903.255000px;}
.y35{bottom:904.455000px;}
.y34a{bottom:905.655000px;}
.y205{bottom:905.670000px;}
.y135{bottom:906.855000px;}
.y355{bottom:908.070000px;}
.y4e{bottom:915.255000px;}
.y7e{bottom:918.855000px;}
.y65{bottom:921.255000px;}
.y97{bottom:922.455000px;}
.y1f{bottom:923.655000px;}
.yf2{bottom:924.900000px;}
.y106{bottom:932.100000px;}
.y33b{bottom:933.300000px;}
.y158{bottom:935.700000px;}
.y349{bottom:936.900000px;}
.yb7{bottom:938.100000px;}
.y34{bottom:939.300000px;}
.y22b{bottom:940.500000px;}
.yf1{bottom:946.500000px;}
.ydd{bottom:947.700000px;}
.y32a{bottom:948.900000px;}
.y64{bottom:952.500000px;}
.y96{bottom:953.700000px;}
.y1e{bottom:954.900000px;}
.y1ed{bottom:957.300000px;}
.y1fd{bottom:959.700000px;}
.y105{bottom:963.300000px;}
.y7d{bottom:965.730000px;}
.y157{bottom:966.945000px;}
.yaa{bottom:969.330000px;}
.y274{bottom:971.730000px;}
.y33{bottom:975.330000px;}
.y11c{bottom:976.530000px;}
.y2e7{bottom:977.730000px;}
.y1ec{bottom:977.745000px;}
.ydc{bottom:978.945000px;}
.y63{bottom:983.730000px;}
.y170{bottom:984.930000px;}
.y140{bottom:984.945000px;}
.yf0{bottom:989.730000px;}
.y1d{bottom:993.330000px;}
.y7c{bottom:996.945000px;}
.y95{bottom:999.330000px;}
.y128{bottom:1000.530000px;}
.y297{bottom:1000.545000px;}
.y2b7{bottom:1001.730000px;}
.y33a{bottom:1008.975000px;}
.y32{bottom:1011.375000px;}
.y62{bottom:1013.775000px;}
.yca{bottom:1014.975000px;}
.y11b{bottom:1016.175000px;}
.y315{bottom:1018.575000px;}
.y104{bottom:1024.575000px;}
.y7b{bottom:1028.175000px;}
.y94{bottom:1030.575000px;}
.y4d{bottom:1031.775000px;}
.yef{bottom:1032.975000px;}
.y1c{bottom:1042.575000px;}
.ydb{bottom:1043.820000px;}
.y61{bottom:1045.005000px;}
.yc9{bottom:1046.205000px;}
.y31{bottom:1047.405000px;}
.y1ad{bottom:1052.205000px;}
.yee{bottom:1054.605000px;}
.y103{bottom:1055.820000px;}
.y8{bottom:1057.005000px;}
.y7a{bottom:1058.205000px;}
.y156{bottom:1059.405000px;}
.yb6{bottom:1061.820000px;}
.y30{bottom:1067.820000px;}
.y229{bottom:1069.005000px;}
.y4c{bottom:1070.205000px;}
.y2e6{bottom:1073.820000px;}
.yda{bottom:1075.005000px;}
.y60{bottom:1076.205000px;}
.y93{bottom:1077.405000px;}
.y327{bottom:1078.605000px;}
.y79{bottom:1089.450000px;}
.y155{bottom:1091.850000px;}
.y1b{bottom:1093.050000px;}
.y7{bottom:1103.850000px;}
.y2e5{bottom:1105.050000px;}
.yd9{bottom:1106.250000px;}
.y5f{bottom:1107.450000px;}
.y4b{bottom:1108.650000px;}
.y326{bottom:1112.250000px;}
.y339{bottom:1114.650000px;}
.y2f7{bottom:1118.250000px;}
.y253{bottom:1124.280000px;}
.y296{bottom:1129.080000px;}
.y2b6{bottom:1130.280000px;}
.y4a{bottom:1132.695000px;}
.y78{bottom:1137.480000px;}
.y6{bottom:1138.695000px;}
.y325{bottom:1142.280000px;}
.y2{bottom:1199.925000px;}
.y1{bottom:1220.355000px;}
.ha{height:9.675000px;}
.h3a{height:20.400000px;}
.h3b{height:20.437500px;}
.h4{height:21.600000px;}
.h38{height:21.637500px;}
.h4a{height:25.200000px;}
.h49{height:25.237500px;}
.h55{height:28.800000px;}
.h54{height:28.837500px;}
.h53{height:30.000000px;}
.h17{height:30.037500px;}
.h43{height:31.200000px;}
.h18{height:31.237500px;}
.h5f{height:39.637500px;}
.h31{height:40.837500px;}
.h52{height:42.037500px;}
.h5{height:47.109375px;}
.h46{height:51.630000px;}
.h1f{height:51.794531px;}
.h3d{height:52.837500px;}
.h68{height:54.022500px;}
.h10{height:54.878906px;}
.h5e{height:56.437500px;}
.h5c{height:56.475000px;}
.h59{height:60.075000px;}
.h19{height:61.237500px;}
.h7{height:61.242188px;}
.h1e{height:61.275000px;}
.h1b{height:62.437500px;}
.h1a{height:62.475000px;}
.h14{height:63.210938px;}
.h3c{height:63.637500px;}
.h29{height:63.949219px;}
.h42{height:64.471875px;}
.h21{height:64.546875px;}
.h5b{height:64.837500px;}
.h5d{height:64.875000px;}
.h69{height:65.920312px;}
.h61{height:66.075000px;}
.h15{height:67.425000px;}
.hf{height:70.628906px;}
.h3{height:70.664062px;}
.h13{height:71.613281px;}
.he{height:72.562500px;}
.h16{height:74.004654px;}
.h63{height:74.475000px;}
.h67{height:74.953125px;}
.h40{height:75.675000px;}
.h41{height:76.875000px;}
.h20{height:77.400000px;}
.h60{height:79.275000px;}
.h6c{height:80.233154px;}
.h12{height:81.032666px;}
.h37{height:82.875000px;}
.h39{height:85.275000px;}
.h5a{height:86.475000px;}
.h11{height:87.226172px;}
.h64{height:90.097500px;}
.hc{height:92.063672px;}
.h1c{height:92.512500px;}
.h6a{height:93.168604px;}
.h1d{height:93.675000px;}
.h6d{height:94.365967px;}
.hd{height:96.901172px;}
.h4e{height:100.912500px;}
.h51{height:102.075000px;}
.h62{height:102.112500px;}
.h27{height:103.275000px;}
.h2e{height:103.312500px;}
.h6b{height:108.498779px;}
.h9{height:111.413672px;}
.h65{height:114.075000px;}
.h66{height:114.112500px;}
.h6{height:117.920654px;}
.h8{height:121.088672px;}
.h36{height:124.897500px;}
.h35{height:124.912500px;}
.h4b{height:127.350000px;}
.h3e{height:128.512500px;}
.h4f{height:130.950000px;}
.h47{height:132.112500px;}
.hb{height:136.696362px;}
.h44{height:146.512500px;}
.h32{height:165.750000px;}
.h56{height:207.825000px;}
.h57{height:228.195000px;}
.h58{height:245.025000px;}
.h24{height:289.455000px;}
.h33{height:311.100000px;}
.h34{height:331.500000px;}
.h2c{height:331.545000px;}
.h25{height:393.975000px;}
.h4d{height:423.975000px;}
.h3f{height:440.820000px;}
.h50{height:486.450000px;}
.h23{height:538.125000px;}
.h48{height:558.525000px;}
.h4c{height:565.725000px;}
.h45{height:589.755000px;}
.h26{height:600.570000px;}
.h30{height:642.600000px;}
.h2b{height:663.000000px;}
.h22{height:828.780000px;}
.h2d{height:891.225000px;}
.h28{height:891.270000px;}
.h2a{height:911.670000px;}
.h2f{height:994.530000px;}
.h1{height:1262.250000px;}
.h2{height:1262.399908px;}
.h0{height:1262.400000px;}
.w43{width:30.037500px;}
.w42{width:31.237500px;}
.w44{width:31.275000px;}
.w41{width:32.437500px;}
.w39{width:33.637500px;}
.w3a{width:34.837500px;}
.w3b{width:34.875000px;}
.w45{width:36.037500px;}
.w3{width:50.400000px;}
.w21{width:51.675000px;}
.w20{width:52.875000px;}
.w22{width:54.075000px;}
.w31{width:58.875000px;}
.w2f{width:67.275000px;}
.w36{width:72.075000px;}
.w35{width:78.112500px;}
.w30{width:90.112500px;}
.w32{width:90.150000px;}
.w23{width:97.312500px;}
.w33{width:104.512500px;}
.w5{width:109.350000px;}
.w25{width:114.150000px;}
.w2b{width:134.587500px;}
.w29{width:147.787500px;}
.w28{width:148.987500px;}
.w1d{width:149.025000px;}
.w9{width:154.980000px;}
.w2a{width:161.025000px;}
.w11{width:165.825000px;}
.wf{width:168.225000px;}
.w17{width:173.025000px;}
.w1b{width:179.025000px;}
.w1f{width:183.855000px;}
.w7{width:185.025000px;}
.w8{width:186.270000px;}
.w13{width:189.870000px;}
.w3f{width:195.870000px;}
.w6{width:197.070000px;}
.wc{width:235.500000px;}
.w3c{width:254.745000px;}
.w26{width:255.930000px;}
.w27{width:276.375000px;}
.w40{width:289.575000px;}
.w3e{width:290.775000px;}
.w2e{width:301.620000px;}
.w38{width:335.250000px;}
.w4{width:340.050000px;}
.wd{width:444.600000px;}
.w2c{width:454.200000px;}
.wa{width:523.905000px;}
.w10{width:564.750000px;}
.w14{width:565.950000px;}
.w18{width:580.350000px;}
.w46{width:600.825000px;}
.w1e{width:616.395000px;}
.w24{width:646.455000px;}
.wb{width:680.100000px;}
.w19{width:707.745000px;}
.w34{width:718.545000px;}
.w2d{width:719.745000px;}
.we{width:732.975000px;}
.w1a{width:744.975000px;}
.w16{width:754.575000px;}
.w15{width:754.620000px;}
.w12{width:755.820000px;}
.w1c{width:765.420000px;}
.w37{width:766.620000px;}
.w3d{width:776.220000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2e{left:2.400000px;}
.x30{left:3.600000px;}
.x38{left:4.800000px;}
.x3c{left:6.000000px;}
.x2f{left:7.185000px;}
.x22{left:8.400000px;}
.x2c{left:9.600000px;}
.x2b{left:10.800000px;}
.x29{left:18.000000px;}
.x27{left:19.200000px;}
.x20{left:20.205000px;}
.x3{left:22.620000px;}
.x31{left:28.830000px;}
.x2d{left:30.045000px;}
.x68{left:32.437500px;}
.x5f{left:48.060000px;}
.x41{left:58.875000px;}
.x3b{left:63.675000px;}
.x3d{left:74.512500px;}
.x59{left:75.712500px;}
.x62{left:79.305000px;}
.x34{left:85.320000px;}
.x52{left:86.512500px;}
.x3a{left:88.912500px;}
.x1{left:106.949987px;}
.x7{left:109.349987px;}
.x25{left:111.749987px;}
.x42{left:115.350000px;}
.x6c{left:116.549987px;}
.x24{left:117.749987px;}
.x23{left:123.749987px;}
.x1d{left:124.949987px;}
.x1e{left:128.587487px;}
.x1f{left:134.587487px;}
.x61{left:144.195000px;}
.x69{left:146.587500px;}
.xf{left:148.987487px;}
.x5{left:158.624987px;}
.x21{left:159.824987px;}
.x1b{left:161.024987px;}
.x6b{left:170.624987px;}
.xb{left:171.824987px;}
.x36{left:174.225000px;}
.xa{left:177.824987px;}
.x19{left:192.269987px;}
.x40{left:212.700000px;}
.x13{left:215.099987px;}
.x26{left:216.300000px;}
.x4a{left:221.100000px;}
.x4c{left:223.500000px;}
.x3f{left:242.744987px;}
.x1c{left:246.344987px;}
.x3e{left:248.745000px;}
.x39{left:253.545000px;}
.x37{left:254.744987px;}
.x32{left:263.145000px;}
.x10{left:270.374987px;}
.x9{left:273.974987px;}
.x8{left:275.174987px;}
.x43{left:289.575000px;}
.x33{left:297.975000px;}
.xd{left:331.649987px;}
.x35{left:342.450000px;}
.x44{left:343.650000px;}
.x5e{left:365.295000px;}
.x4d{left:372.495000px;}
.x14{left:376.094987px;}
.xc{left:390.524987px;}
.x45{left:396.525000px;}
.x63{left:397.725000px;}
.x1a{left:398.924987px;}
.x11{left:403.724987px;}
.x53{left:409.770000px;}
.x16{left:412.154987px;}
.x18{left:413.354987px;}
.x28{left:414.570000px;}
.x17{left:415.754987px;}
.x15{left:416.969987px;}
.x64{left:430.155000px;}
.x4{left:446.999987px;}
.x46{left:449.400000px;}
.x65{left:461.400000px;}
.x12{left:468.644987px;}
.x4b{left:477.030000px;}
.x54{left:478.245000px;}
.x5a{left:480.645000px;}
.x66{left:493.875000px;}
.x47{left:503.475000px;}
.x5b{left:515.475000px;}
.x67{left:525.120000px;}
.x4e{left:534.720000px;}
.x51{left:540.704987px;}
.x5c{left:550.350000px;}
.x58{left:556.350000px;}
.x48{left:557.550000px;}
.x60{left:561.150000px;}
.x55{left:569.550000px;}
.x5d{left:585.195000px;}
.x2a{left:600.780000px;}
.x49{left:610.425000px;}
.x56{left:629.625000px;}
.xe{left:646.469987px;}
.x4f{left:682.500000px;}
.x6{left:695.729987px;}
.x57{left:720.975000px;}
.x2{left:734.400000px;}
.x6a{left:761.819987px;}
.x50{left:787.049987px;}
@media print{
.v1{vertical-align:-72.693333pt;}
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-3.200000pt;}
.ls26{letter-spacing:-2.133333pt;}
.ls1e{letter-spacing:-1.450667pt;}
.ls4{letter-spacing:-1.440000pt;}
.ls3{letter-spacing:-1.242667pt;}
.ls11{letter-spacing:-0.725333pt;}
.ls6{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.021333pt;}
.ls29{letter-spacing:0.074667pt;}
.ls1{letter-spacing:0.181333pt;}
.ls1b{letter-spacing:0.426667pt;}
.ls28{letter-spacing:0.490667pt;}
.ls27{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.554667pt;}
.ls21{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.725333pt;}
.ls25{letter-spacing:1.024000pt;}
.ls5{letter-spacing:1.066667pt;}
.ls8{letter-spacing:1.120000pt;}
.lsc{letter-spacing:1.397333pt;}
.ls10{letter-spacing:1.450667pt;}
.ls24{letter-spacing:1.525333pt;}
.ls14{letter-spacing:1.541333pt;}
.lsb{letter-spacing:1.557333pt;}
.ls23{letter-spacing:2.048000pt;}
.ls0{letter-spacing:2.133333pt;}
.ls9{letter-spacing:2.186667pt;}
.ls15{letter-spacing:12.181333pt;}
.ls16{letter-spacing:16.448000pt;}
.ls1c{letter-spacing:20.608000pt;}
.ls17{letter-spacing:20.768000pt;}
.ls22{letter-spacing:22.400000pt;}
.ls18{letter-spacing:25.008000pt;}
.ls12{letter-spacing:29.274667pt;}
.ls1a{letter-spacing:33.541333pt;}
.ls19{letter-spacing:37.808000pt;}
.lsf{letter-spacing:46.341333pt;}
.ls20{letter-spacing:76.208000pt;}
.lsa{letter-spacing:752.960000pt;}
.wse{word-spacing:-64.000000pt;}
.ws0{word-spacing:-20.300000pt;}
.ws1{word-spacing:-19.057333pt;}
.ws2{word-spacing:-18.133333pt;}
.ws9{word-spacing:-17.450667pt;}
.ws7{word-spacing:-17.066667pt;}
.wsa{word-spacing:-16.725333pt;}
.ws8{word-spacing:-16.704000pt;}
.ws6{word-spacing:-16.021333pt;}
.ws5{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.978667pt;}
.ws4{word-spacing:-15.296000pt;}
.wsb{word-spacing:-15.274667pt;}
.ws10{word-spacing:-14.592000pt;}
.wsd{word-spacing:-14.549333pt;}
.wsf{word-spacing:-13.866667pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-11.572800pt;}
._a{margin-left:-7.985867pt;}
._b{margin-left:-7.022667pt;}
._d{margin-left:-5.832000pt;}
._9{margin-left:-4.550000pt;}
._6{margin-left:-3.590267pt;}
._3{margin-left:-2.563200pt;}
._1{margin-left:-1.281600pt;}
._0{width:1.602000pt;}
._2{width:2.883600pt;}
._4{width:3.775067pt;}
._5{width:4.935200pt;}
._7{width:5.834533pt;}
._8{width:7.152133pt;}
._11{width:8.955600pt;}
._f{width:10.240000pt;}
._1c{width:12.596133pt;}
._31{width:13.692000pt;}
._10{width:14.683600pt;}
._12{width:18.476533pt;}
._1b{width:21.562667pt;}
._16{width:22.533867pt;}
._2d{width:23.664667pt;}
._1a{width:26.563467pt;}
._2c{width:30.474800pt;}
._21{width:31.483600pt;}
._32{width:34.958933pt;}
._1e{width:35.899600pt;}
._33{width:39.037333pt;}
._13{width:43.249333pt;}
._17{width:44.394000pt;}
._14{width:47.516000pt;}
._18{width:48.660667pt;}
._2f{width:52.981600pt;}
._15{width:56.700267pt;}
._2e{width:61.640667pt;}
._2b{width:64.686800pt;}
._2a{width:69.741333pt;}
._29{width:74.440667pt;}
._25{width:87.099600pt;}
._24{width:91.456000pt;}
._28{width:95.804000pt;}
._22{width:108.220400pt;}
._23{width:120.634000pt;}
._37{width:137.424800pt;}
._30{width:142.301867pt;}
._20{width:146.481733pt;}
._35{width:150.274267pt;}
._36{width:151.296000pt;}
._1d{width:163.493333pt;}
._26{width:201.275200pt;}
._34{width:231.733333pt;}
._1f{width:275.194000pt;}
._27{width:662.964533pt;}
._e{width:735.840000pt;}
._19{width:753.013333pt;}
.fs5{font-size:8.533333pt;}
.fs1{font-size:42.666667pt;}
.fsb{font-size:46.933333pt;}
.fs3{font-size:55.466667pt;}
.fsc{font-size:59.733333pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:68.266667pt;}
.fsd{font-size:72.666667pt;}
.fs9{font-size:76.933333pt;}
.fs7{font-size:81.200000pt;}
.fs8{font-size:85.466667pt;}
.fs4{font-size:98.266667pt;}
.fs2{font-size:106.800000pt;}
.fs6{font-size:123.866667pt;}
.y35a{bottom:-4.280000pt;}
.y0{bottom:0.000000pt;}
.y208{bottom:3.186667pt;}
.y172{bottom:3.200000pt;}
.y1b2{bottom:3.213333pt;}
.y198{bottom:3.240000pt;}
.y1d0{bottom:4.266667pt;}
.y2eb{bottom:4.280000pt;}
.y2fe{bottom:4.293333pt;}
.y21e{bottom:4.306667pt;}
.y5{bottom:4.333333pt;}
.y249{bottom:7.466667pt;}
.y292{bottom:7.480000pt;}
.y2b4{bottom:7.493333pt;}
.y273{bottom:8.533333pt;}
.y2f3{bottom:10.666667pt;}
.y2ee{bottom:11.733333pt;}
.y2f1{bottom:11.746667pt;}
.y10d{bottom:11.760000pt;}
.y2ef{bottom:11.773333pt;}
.y111{bottom:12.800000pt;}
.y254{bottom:12.813333pt;}
.y113{bottom:12.826667pt;}
.y10e{bottom:12.840000pt;}
.y314{bottom:13.866667pt;}
.y344{bottom:14.920000pt;}
.y347{bottom:14.933333pt;}
.y340{bottom:14.960000pt;}
.y2e4{bottom:16.000000pt;}
.y24f{bottom:16.040000pt;}
.y245{bottom:17.053333pt;}
.y22f{bottom:17.066667pt;}
.y29b{bottom:17.093333pt;}
.y258{bottom:20.266667pt;}
.y2d2{bottom:20.293333pt;}
.y31c{bottom:20.306667pt;}
.y2e9{bottom:21.320000pt;}
.y1b1{bottom:21.333333pt;}
.y19f{bottom:21.360000pt;}
.y171{bottom:21.373333pt;}
.y1b9{bottom:22.400000pt;}
.y1ac{bottom:22.426667pt;}
.y1a9{bottom:22.440000pt;}
.y2c9{bottom:25.600000pt;}
.y32b{bottom:25.626667pt;}
.y2e0{bottom:25.640000pt;}
.y291{bottom:26.666667pt;}
.y330{bottom:26.693333pt;}
.y2b0{bottom:26.706667pt;}
.y31e{bottom:27.760000pt;}
.y320{bottom:27.773333pt;}
.y33d{bottom:28.826667pt;}
.y2e3{bottom:29.866667pt;}
.y2cc{bottom:29.893333pt;}
.y248{bottom:29.906667pt;}
.y24d{bottom:30.973333pt;}
.y22a{bottom:32.040000pt;}
.y2b2{bottom:33.106667pt;}
.y26f{bottom:34.160000pt;}
.y24a{bottom:34.173333pt;}
.y22e{bottom:35.226667pt;}
.y2ba{bottom:35.240000pt;}
.y331{bottom:37.373333pt;}
.y2d1{bottom:38.426667pt;}
.y278{bottom:38.440000pt;}
.y110{bottom:39.493333pt;}
.y1b0{bottom:39.506667pt;}
.y32d{bottom:39.533333pt;}
.y112{bottom:40.560000pt;}
.y115{bottom:40.573333pt;}
.y2fd{bottom:40.586667pt;}
.y11a{bottom:40.600000pt;}
.y1a8{bottom:40.613333pt;}
.y222{bottom:41.626667pt;}
.y313{bottom:41.640000pt;}
.y31b{bottom:41.666667pt;}
.y318{bottom:42.693333pt;}
.y26c{bottom:42.706667pt;}
.y31d{bottom:42.733333pt;}
.y343{bottom:43.760000pt;}
.y33f{bottom:43.786667pt;}
.y317{bottom:44.866667pt;}
.y335{bottom:46.960000pt;}
.y333{bottom:46.973333pt;}
.y32f{bottom:48.026667pt;}
.y309{bottom:48.040000pt;}
.y338{bottom:48.080000pt;}
.y3{bottom:49.133333pt;}
.y33c{bottom:51.240000pt;}
.y247{bottom:52.306667pt;}
.y26e{bottom:52.333333pt;}
.y244{bottom:53.360000pt;}
.y24c{bottom:53.373333pt;}
.y29a{bottom:53.386667pt;}
.y2df{bottom:53.400000pt;}
.y2af{bottom:53.413333pt;}
.y4{bottom:54.400000pt;}
.y22d{bottom:54.426667pt;}
.y290{bottom:54.440000pt;}
.y30a{bottom:55.493333pt;}
.y324{bottom:55.506667pt;}
.y2d0{bottom:56.586667pt;}
.y277{bottom:57.640000pt;}
.y302{bottom:58.693333pt;}
.y1af{bottom:58.706667pt;}
.y207{bottom:58.720000pt;}
.y197{bottom:58.733333pt;}
.y21f{bottom:60.866667pt;}
.y316{bottom:61.933333pt;}
.y342{bottom:65.093333pt;}
.y33e{bottom:65.120000pt;}
.y346{bottom:65.133333pt;}
.y308{bottom:66.160000pt;}
.y2bb{bottom:66.200000pt;}
.y29c{bottom:67.253333pt;}
.y117{bottom:67.266667pt;}
.y119{bottom:68.333333pt;}
.y334{bottom:69.400000pt;}
.y332{bottom:69.413333pt;}
.y2d3{bottom:70.453333pt;}
.y279{bottom:70.466667pt;}
.y257{bottom:70.480000pt;}
.y2cb{bottom:74.733333pt;}
.y336{bottom:75.800000pt;}
.y2e2{bottom:75.813333pt;}
.y299{bottom:75.826667pt;}
.y2b9{bottom:75.840000pt;}
.y206{bottom:76.853333pt;}
.y19e{bottom:76.866667pt;}
.y1ae{bottom:76.880000pt;}
.y201{bottom:76.893333pt;}
.y196{bottom:76.906667pt;}
.y204{bottom:77.933333pt;}
.y1cf{bottom:77.946667pt;}
.y2fc{bottom:77.960000pt;}
.y2cf{bottom:79.026667pt;}
.y276{bottom:80.080000pt;}
.y2ae{bottom:81.133333pt;}
.y28f{bottom:82.200000pt;}
.y259{bottom:83.266667pt;}
.y26b{bottom:84.333333pt;}
.y341{bottom:86.453333pt;}
.y345{bottom:86.466667pt;}
.y256{bottom:92.866667pt;}
.y1e0{bottom:95.000000pt;}
.y19d{bottom:95.026667pt;}
.y195{bottom:95.040000pt;}
.y301{bottom:96.066667pt;}
.y200{bottom:96.093333pt;}
.y1a7{bottom:96.106667pt;}
.y298{bottom:98.226667pt;}
.y2b8{bottom:98.240000pt;}
.y22c{bottom:99.293333pt;}
.y2ce{bottom:101.426667pt;}
.y275{bottom:102.506667pt;}
.y2c8{bottom:107.840000pt;}
.y28e{bottom:108.906667pt;}
.y26a{bottom:111.026667pt;}
.y368{bottom:111.033333pt;}
.y307{bottom:111.040000pt;}
.y19c{bottom:113.160000pt;}
.y1ff{bottom:114.226667pt;}
.y92{bottom:114.233333pt;}
.y1ce{bottom:114.240000pt;}
.y2fb{bottom:114.253333pt;}
.y194{bottom:114.266667pt;}
.y1a6{bottom:114.280000pt;}
.y255{bottom:115.306667pt;}
.y35c{bottom:115.333333pt;}
.y134{bottom:116.400000pt;}
.y35f{bottom:117.466667pt;}
.y102{bottom:118.533333pt;}
.y243{bottom:121.693333pt;}
.y49{bottom:122.800000pt;}
.y238{bottom:129.160000pt;}
.y1a{bottom:129.200000pt;}
.y300{bottom:132.360000pt;}
.y1df{bottom:132.373333pt;}
.y2fa{bottom:132.386667pt;}
.y193{bottom:132.400000pt;}
.y154{bottom:133.466667pt;}
.y167{bottom:135.600000pt;}
.y28d{bottom:136.640000pt;}
.y2ad{bottom:136.666667pt;}
.y173{bottom:137.733333pt;}
.y269{bottom:138.800000pt;}
.y91{bottom:142.000000pt;}
.y1eb{bottom:143.066667pt;}
.y133{bottom:144.133333pt;}
.yc8{bottom:145.200000pt;}
.y101{bottom:146.266667pt;}
.y34b{bottom:147.333333pt;}
.y306{bottom:148.400000pt;}
.y242{bottom:149.453333pt;}
.y217{bottom:149.466667pt;}
.y19b{bottom:150.533333pt;}
.yd8{bottom:150.560000pt;}
.y192{bottom:150.573333pt;}
.y1cd{bottom:151.600000pt;}
.y2f9{bottom:151.626667pt;}
.y48{bottom:154.826667pt;}
.y35b{bottom:155.893333pt;}
.y311{bottom:156.960000pt;}
.y35e{bottom:158.026667pt;}
.y14d{bottom:159.093333pt;}
.y19{bottom:160.160000pt;}
.yb5{bottom:161.226667pt;}
.y2c7{bottom:162.266667pt;}
.y5e{bottom:162.293333pt;}
.y28c{bottom:164.400000pt;}
.y272{bottom:164.426667pt;}
.y2ac{bottom:164.440000pt;}
.y329{bottom:165.493333pt;}
.y305{bottom:166.533333pt;}
.y268{bottom:166.560000pt;}
.y1fc{bottom:167.626667pt;}
.y1de{bottom:168.666667pt;}
.y1f3{bottom:168.693333pt;}
.y191{bottom:168.706667pt;}
.y90{bottom:169.760000pt;}
.y1a5{bottom:169.773333pt;}
.yc7{bottom:171.893333pt;}
.y77{bottom:172.960000pt;}
.y141{bottom:174.040000pt;}
.y359{bottom:175.106667pt;}
.y166{bottom:176.160000pt;}
.yd7{bottom:178.293333pt;}
.y241{bottom:181.493333pt;}
.y252{bottom:182.560000pt;}
.y2c3{bottom:182.573333pt;}
.y312{bottom:183.626667pt;}
.y304{bottom:184.706667pt;}
.y132{bottom:185.800000pt;}
.y19a{bottom:186.826667pt;}
.y14c{bottom:186.866667pt;}
.y203{bottom:187.893333pt;}
.y1cc{bottom:187.906667pt;}
.ya9{bottom:187.933333pt;}
.y1a4{bottom:187.946667pt;}
.yb4{bottom:189.000000pt;}
.y354{bottom:190.066667pt;}
.y2de{bottom:191.106667pt;}
.y28b{bottom:192.173333pt;}
.y18{bottom:192.200000pt;}
.y267{bottom:194.293333pt;}
.y310{bottom:194.333333pt;}
.y47{bottom:196.466667pt;}
.y237{bottom:197.493333pt;}
.y8f{bottom:197.533333pt;}
.y364{bottom:198.600000pt;}
.y323{bottom:199.666667pt;}
.y13f{bottom:200.733333pt;}
.y118{bottom:201.800000pt;}
.y303{bottom:202.826667pt;}
.y76{bottom:202.866667pt;}
.y216{bottom:203.933333pt;}
.y2c2{bottom:205.013333pt;}
.y1dd{bottom:206.040000pt;}
.y190{bottom:206.066667pt;}
.y1fb{bottom:208.200000pt;}
.y251{bottom:209.266667pt;}
.y2d9{bottom:210.333333pt;}
.y131{bottom:212.466667pt;}
.y240{bottom:213.520000pt;}
.yc6{bottom:213.533333pt;}
.y14b{bottom:214.600000pt;}
.ya8{bottom:215.666667pt;}
.y165{bottom:216.733333pt;}
.y353{bottom:217.800000pt;}
.y2dd{bottom:218.866667pt;}
.y236{bottom:219.920000pt;}
.y2ab{bottom:219.933333pt;}
.y28a{bottom:219.946667pt;}
.y266{bottom:222.066667pt;}
.y226{bottom:222.093333pt;}
.y199{bottom:224.200000pt;}
.y17{bottom:224.226667pt;}
.y18f{bottom:224.240000pt;}
.y1cb{bottom:225.266667pt;}
.yd6{bottom:225.293333pt;}
.y2f{bottom:226.360000pt;}
.y2c1{bottom:227.400000pt;}
.y295{bottom:227.426667pt;}
.y13e{bottom:228.506667pt;}
.y145{bottom:229.560000pt;}
.y5d{bottom:230.626667pt;}
.y23f{bottom:231.666667pt;}
.y367{bottom:233.826667pt;}
.y1e1{bottom:234.893333pt;}
.y271{bottom:235.960000pt;}
.y46{bottom:237.040000pt;}
.y125{bottom:238.106667pt;}
.y100{bottom:239.160000pt;}
.y130{bottom:240.226667pt;}
.yc5{bottom:241.293333pt;}
.y1dc{bottom:242.333333pt;}
.ya7{bottom:242.360000pt;}
.y18e{bottom:242.373333pt;}
.y1ab{bottom:243.426667pt;}
.y1a3{bottom:243.440000pt;}
.y16f{bottom:244.506667pt;}
.y215{bottom:245.560000pt;}
.y75{bottom:246.626667pt;}
.y2dc{bottom:246.640000pt;}
.y24e{bottom:247.693333pt;}
.y2aa{bottom:247.706667pt;}
.y1fa{bottom:248.760000pt;}
.y23e{bottom:249.826667pt;}
.y225{bottom:249.840000pt;}
.y228{bottom:250.893333pt;}
.yed{bottom:251.960000pt;}
.yd5{bottom:253.026667pt;}
.y30f{bottom:254.093333pt;}
.y294{bottom:255.173333pt;}
.y16{bottom:256.266667pt;}
.yb3{bottom:257.333333pt;}
.y164{bottom:258.400000pt;}
.y352{bottom:259.466667pt;}
.y289{bottom:260.506667pt;}
.y202{bottom:261.560000pt;}
.y1ca{bottom:261.573333pt;}
.y18d{bottom:261.600000pt;}
.y1a2{bottom:261.613333pt;}
.y270{bottom:262.666667pt;}
.y250{bottom:263.733333pt;}
.y235{bottom:264.760000pt;}
.y45{bottom:264.800000pt;}
.y8e{bottom:265.866667pt;}
.yff{bottom:266.933333pt;}
.y2a2{bottom:268.000000pt;}
.yc4{bottom:269.066667pt;}
.ya6{bottom:270.133333pt;}
.y2e{bottom:271.200000pt;}
.y2c0{bottom:272.240000pt;}
.y16e{bottom:272.266667pt;}
.y214{bottom:273.333333pt;}
.y2a9{bottom:274.400000pt;}
.y293{bottom:275.466667pt;}
.y26d{bottom:276.533333pt;}
.y2cd{bottom:277.600000pt;}
.y328{bottom:278.666667pt;}
.yec{bottom:279.733333pt;}
.y18c{bottom:279.746667pt;}
.y224{bottom:280.800000pt;}
.y23d{bottom:281.853333pt;}
.y12f{bottom:281.866667pt;}
.y14a{bottom:282.933333pt;}
.y152{bottom:284.000000pt;}
.yb2{bottom:285.066667pt;}
.y116{bottom:286.133333pt;}
.y234{bottom:287.186667pt;}
.y15{bottom:287.200000pt;}
.y74{bottom:289.333333pt;}
.y1f9{bottom:290.400000pt;}
.y227{bottom:292.560000pt;}
.y8d{bottom:293.626667pt;}
.y2bf{bottom:294.680000pt;}
.y2b3{bottom:294.693333pt;}
.y30e{bottom:294.706667pt;}
.y13d{bottom:296.826667pt;}
.y1db{bottom:297.866667pt;}
.ya5{bottom:297.893333pt;}
.y18b{bottom:297.906667pt;}
.y1c9{bottom:298.933333pt;}
.y163{bottom:298.960000pt;}
.y23c{bottom:300.000000pt;}
.y2c6{bottom:300.013333pt;}
.y223{bottom:300.026667pt;}
.y5c{bottom:300.040000pt;}
.y281{bottom:302.133333pt;}
.y44{bottom:305.360000pt;}
.y2d8{bottom:305.373333pt;}
.y322{bottom:306.426667pt;}
.y24b{bottom:307.493333pt;}
.yeb{bottom:307.506667pt;}
.y36c{bottom:308.560000pt;}
.y2a1{bottom:308.573333pt;}
.yc3{bottom:309.626667pt;}
.y149{bottom:310.693333pt;}
.y151{bottom:311.760000pt;}
.y358{bottom:312.840000pt;}
.y2b5{bottom:313.893333pt;}
.y30b{bottom:314.960000pt;}
.y1f2{bottom:316.026667pt;}
.y18a{bottom:316.040000pt;}
.y73{bottom:317.093333pt;}
.y1a1{bottom:317.106667pt;}
.y2b1{bottom:318.160000pt;}
.y14{bottom:319.226667pt;}
.y337{bottom:321.360000pt;}
.y2d{bottom:321.373333pt;}
.y265{bottom:322.426667pt;}
.y288{bottom:322.440000pt;}
.y13c{bottom:324.560000pt;}
.y280{bottom:324.573333pt;}
.ya4{bottom:325.626667pt;}
.y2d7{bottom:327.773333pt;}
.y213{bottom:327.800000pt;}
.y25e{bottom:329.893333pt;}
.y1f8{bottom:331.000000pt;}
.y233{bottom:332.026667pt;}
.y2f6{bottom:333.133333pt;}
.y5b{bottom:334.200000pt;}
.y1c8{bottom:335.240000pt;}
.y124{bottom:335.266667pt;}
.y1a0{bottom:335.280000pt;}
.yea{bottom:336.333333pt;}
.y23b{bottom:337.360000pt;}
.yc2{bottom:337.400000pt;}
.y148{bottom:338.466667pt;}
.y2be{bottom:339.506667pt;}
.y144{bottom:339.533333pt;}
.y2c5{bottom:340.573333pt;}
.yfe{bottom:340.600000pt;}
.y321{bottom:342.733333pt;}
.y72{bottom:343.800000pt;}
.y287{bottom:345.906667pt;}
.y27f{bottom:346.973333pt;}
.y43{bottom:347.000000pt;}
.y8c{bottom:348.066667pt;}
.y2c{bottom:349.133333pt;}
.yd4{bottom:350.200000pt;}
.y13b{bottom:352.333333pt;}
.y183{bottom:353.400000pt;}
.y189{bottom:353.413333pt;}
.y232{bottom:354.453333pt;}
.y23a{bottom:355.520000pt;}
.y13{bottom:355.533333pt;}
.y366{bottom:356.600000pt;}
.y2a8{bottom:356.613333pt;}
.y221{bottom:357.666667pt;}
.y2c4{bottom:358.733333pt;}
.y35d{bottom:359.800000pt;}
.y2bd{bottom:361.933333pt;}
.ye9{bottom:363.026667pt;}
.y12e{bottom:364.093333pt;}
.yc1{bottom:365.173333pt;}
.ya3{bottom:366.226667pt;}
.y162{bottom:367.293333pt;}
.y5a{bottom:368.360000pt;}
.y27e{bottom:369.400000pt;}
.y114{bottom:369.426667pt;}
.y286{bottom:370.466667pt;}
.y1da{bottom:371.533333pt;}
.y71{bottom:371.560000pt;}
.y188{bottom:371.573333pt;}
.y1c7{bottom:372.600000pt;}
.y182{bottom:372.626667pt;}
.y2d6{bottom:372.640000pt;}
.y239{bottom:373.666667pt;}
.y25d{bottom:374.760000pt;}
.y246{bottom:375.826667pt;}
.y8b{bottom:375.840000pt;}
.y231{bottom:376.853333pt;}
.y220{bottom:376.893333pt;}
.y264{bottom:377.960000pt;}
.y31f{bottom:379.026667pt;}
.y13a{bottom:380.093333pt;}
.y357{bottom:381.173333pt;}
.y351{bottom:382.226667pt;}
.y212{bottom:383.293333pt;}
.y2e1{bottom:384.360000pt;}
.y2a7{bottom:384.373333pt;}
.y29d{bottom:385.426667pt;}
.y42{bottom:387.560000pt;}
.y2b{bottom:389.693333pt;}
.y187{bottom:389.706667pt;}
.ye8{bottom:390.760000pt;}
.y1c6{bottom:390.773333pt;}
.y12{bottom:391.840000pt;}
.yc0{bottom:392.893333pt;}
.yb1{bottom:393.960000pt;}
.y285{bottom:393.973333pt;}
.y161{bottom:395.026667pt;}
.y2d5{bottom:395.040000pt;}
.yfd{bottom:396.093333pt;}
.y25c{bottom:397.160000pt;}
.y2db{bottom:397.173333pt;}
.y2a0{bottom:398.240000pt;}
.y70{bottom:399.333333pt;}
.y59{bottom:402.533333pt;}
.y8a{bottom:403.600000pt;}
.y263{bottom:405.706667pt;}
.y12d{bottom:405.733333pt;}
.y15d{bottom:406.800000pt;}
.ya2{bottom:407.866667pt;}
.y1c5{bottom:408.906667pt;}
.y181{bottom:408.933333pt;}
.y1f5{bottom:408.946667pt;}
.y211{bottom:411.066667pt;}
.y2a6{bottom:412.133333pt;}
.y1f7{bottom:413.200000pt;}
.y27d{bottom:414.240000pt;}
.y21d{bottom:414.266667pt;}
.y2da{bottom:415.333333pt;}
.y284{bottom:417.440000pt;}
.y2a{bottom:417.466667pt;}
.y2d4{bottom:417.480000pt;}
.ybf{bottom:419.600000pt;}
.y139{bottom:420.666667pt;}
.y143{bottom:421.733333pt;}
.y350{bottom:422.800000pt;}
.y11{bottom:423.866667pt;}
.yfc{bottom:424.933333pt;}
.y180{bottom:427.066667pt;}
.y1d9{bottom:427.080000pt;}
.y186{bottom:427.106667pt;}
.y41{bottom:428.133333pt;}
.y6f{bottom:429.200000pt;}
.y2f5{bottom:430.266667pt;}
.y123{bottom:431.333333pt;}
.y262{bottom:432.400000pt;}
.yd3{bottom:433.493333pt;}
.y365{bottom:434.560000pt;}
.ya1{bottom:435.626667pt;}
.y27c{bottom:436.666667pt;}
.y58{bottom:436.693333pt;}
.y1d1{bottom:437.760000pt;}
.y210{bottom:438.840000pt;}
.y2a5{bottom:439.906667pt;}
.y25b{bottom:442.000000pt;}
.y1f6{bottom:443.093333pt;}
.y29f{bottom:443.106667pt;}
.y2ca{bottom:444.160000pt;}
.y230{bottom:444.173333pt;}
.y1d8{bottom:445.200000pt;}
.y29{bottom:445.226667pt;}
.y185{bottom:445.240000pt;}
.y1c4{bottom:446.266667pt;}
.y12c{bottom:446.293333pt;}
.ybe{bottom:447.360000pt;}
.y283{bottom:448.400000pt;}
.y138{bottom:448.426667pt;}
.y153{bottom:449.506667pt;}
.yfb{bottom:452.693333pt;}
.y1f4{bottom:455.893333pt;}
.y2f4{bottom:456.960000pt;}
.y30d{bottom:458.026667pt;}
.y10{bottom:459.093333pt;}
.y27b{bottom:459.106667pt;}
.y261{bottom:460.160000pt;}
.y21c{bottom:460.173333pt;}
.yd2{bottom:461.226667pt;}
.y147{bottom:462.293333pt;}
.ya0{bottom:463.360000pt;}
.y1d7{bottom:463.373333pt;}
.y184{bottom:463.413333pt;}
.y16d{bottom:464.426667pt;}
.y1c3{bottom:464.440000pt;}
.y29e{bottom:465.506667pt;}
.y20f{bottom:466.560000pt;}
.y369{bottom:467.626667pt;}
.y2a4{bottom:467.640000pt;}
.y40{bottom:469.800000pt;}
.y57{bottom:470.866667pt;}
.y89{bottom:471.933333pt;}
.y12b{bottom:474.066667pt;}
.ybd{bottom:475.133333pt;}
.ye7{bottom:476.200000pt;}
.y160{bottom:477.266667pt;}
.y282{bottom:478.306667pt;}
.y28{bottom:479.400000pt;}
.yfa{bottom:480.466667pt;}
.y27a{bottom:481.506667pt;}
.y10f{bottom:481.533333pt;}
.y1c2{bottom:482.573333pt;}
.y17f{bottom:482.600000pt;}
.y1ea{bottom:482.613333pt;}
.y2f2{bottom:484.733333pt;}
.y2a3{bottom:485.800000pt;}
.y21b{bottom:486.866667pt;}
.y260{bottom:487.933333pt;}
.yd1{bottom:489.000000pt;}
.y9f{bottom:490.066667pt;}
.y34f{bottom:491.133333pt;}
.yf{bottom:494.333333pt;}
.y348{bottom:496.466667pt;}
.y6e{bottom:499.666667pt;}
.y17e{bottom:500.733333pt;}
.y1d6{bottom:500.746667pt;}
.y12a{bottom:501.800000pt;}
.ybc{bottom:502.866667pt;}
.y3f{bottom:503.960000pt;}
.y56{bottom:505.026667pt;}
.y25f{bottom:506.066667pt;}
.y16c{bottom:506.093333pt;}
.y25a{bottom:509.266667pt;}
.yf9{bottom:509.293333pt;}
.y2f0{bottom:511.426667pt;}
.y2bc{bottom:512.493333pt;}
.y36b{bottom:513.560000pt;}
.y21a{bottom:514.626667pt;}
.y15c{bottom:515.693333pt;}
.y146{bottom:516.760000pt;}
.y142{bottom:517.826667pt;}
.y1d5{bottom:518.866667pt;}
.y1aa{bottom:518.893333pt;}
.y1e9{bottom:518.906667pt;}
.y1c1{bottom:519.933333pt;}
.y17d{bottom:519.960000pt;}
.y27{bottom:521.026667pt;}
.y363{bottom:526.360000pt;}
.y88{bottom:527.426667pt;}
.yd0{bottom:529.560000pt;}
.y3e{bottom:530.626667pt;}
.y9e{bottom:531.693333pt;}
.y356{bottom:532.760000pt;}
.y16b{bottom:533.826667pt;}
.y20e{bottom:534.893333pt;}
.ye{bottom:537.026667pt;}
.y1d4{bottom:537.040000pt;}
.y1b8{bottom:538.093333pt;}
.y17c{bottom:538.106667pt;}
.y55{bottom:539.200000pt;}
.y122{bottom:540.266667pt;}
.y6d{bottom:542.400000pt;}
.y137{bottom:544.533333pt;}
.y15f{bottom:545.600000pt;}
.y2ff{bottom:546.666667pt;}
.y36a{bottom:549.866667pt;}
.y26{bottom:553.066667pt;}
.y87{bottom:555.200000pt;}
.y1d3{bottom:556.240000pt;}
.yd{bottom:556.266667pt;}
.y1e8{bottom:556.280000pt;}
.ycf{bottom:557.333333pt;}
.ybb{bottom:558.400000pt;}
.y9d{bottom:559.466667pt;}
.ye6{bottom:560.533333pt;}
.y3d{bottom:562.666667pt;}
.y30c{bottom:563.733333pt;}
.y360{bottom:564.800000pt;}
.yf8{bottom:565.866667pt;}
.y362{bottom:566.933333pt;}
.y121{bottom:568.000000pt;}
.y6c{bottom:570.133333pt;}
.yb0{bottom:572.266667pt;}
.y15e{bottom:573.333333pt;}
.y17b{bottom:574.400000pt;}
.y1d2{bottom:574.413333pt;}
.y54{bottom:574.426667pt;}
.y1f1{bottom:574.440000pt;}
.y86{bottom:582.960000pt;}
.y129{bottom:584.026667pt;}
.y25{bottom:585.093333pt;}
.yba{bottom:586.173333pt;}
.y9c{bottom:587.226667pt;}
.ye5{bottom:588.293333pt;}
.y20d{bottom:590.426667pt;}
.y1b7{bottom:592.560000pt;}
.y1e7{bottom:592.573333pt;}
.yf7{bottom:593.626667pt;}
.y1c0{bottom:593.640000pt;}
.y3c{bottom:594.693333pt;}
.y31a{bottom:595.760000pt;}
.yc{bottom:597.893333pt;}
.yaf{bottom:600.026667pt;}
.y34e{bottom:601.093333pt;}
.y361{bottom:604.293333pt;}
.y53{bottom:608.560000pt;}
.y120{bottom:609.666667pt;}
.y85{bottom:610.733333pt;}
.y17a{bottom:611.773333pt;}
.y15b{bottom:611.800000pt;}
.yce{bottom:612.866667pt;}
.y9b{bottom:613.933333pt;}
.y16a{bottom:615.000000pt;}
.ye4{bottom:617.133333pt;}
.y24{bottom:619.266667pt;}
.yf6{bottom:622.466667pt;}
.y10c{bottom:624.600000pt;}
.y6b{bottom:625.666667pt;}
.y3b{bottom:626.733333pt;}
.yb{bottom:627.800000pt;}
.y34d{bottom:628.866667pt;}
.y179{bottom:629.933333pt;}
.y1e6{bottom:629.946667pt;}
.y2ed{bottom:631.000000pt;}
.y11f{bottom:636.333333pt;}
.y84{bottom:638.466667pt;}
.y15a{bottom:639.533333pt;}
.yb9{bottom:640.600000pt;}
.y9a{bottom:641.666667pt;}
.y52{bottom:642.733333pt;}
.ye3{bottom:643.800000pt;}
.y177{bottom:648.066667pt;}
.y1b6{bottom:648.093333pt;}
.y1f0{bottom:648.106667pt;}
.yf5{bottom:650.226667pt;}
.y10b{bottom:652.360000pt;}
.y6a{bottom:653.426667pt;}
.y150{bottom:654.493333pt;}
.y127{bottom:655.560000pt;}
.y34c{bottom:656.626667pt;}
.y3a{bottom:657.693333pt;}
.y20c{bottom:660.893333pt;}
.y11e{bottom:664.093333pt;}
.y1b5{bottom:666.226667pt;}
.y1e5{bottom:666.240000pt;}
.y176{bottom:667.293333pt;}
.y1bf{bottom:667.306667pt;}
.yae{bottom:668.360000pt;}
.ya{bottom:669.426667pt;}
.ye2{bottom:671.560000pt;}
.y2ec{bottom:675.840000pt;}
.y39{bottom:676.893333pt;}
.y83{bottom:679.026667pt;}
.y69{bottom:680.093333pt;}
.ycd{bottom:681.200000pt;}
.y136{bottom:682.266667pt;}
.y99{bottom:683.333333pt;}
.y169{bottom:684.400000pt;}
.y1be{bottom:685.440000pt;}
.y175{bottom:685.466667pt;}
.y32e{bottom:689.733333pt;}
.y20b{bottom:690.800000pt;}
.y219{bottom:694.000000pt;}
.y9{bottom:696.133333pt;}
.y23{bottom:697.200000pt;}
.y10a{bottom:699.333333pt;}
.ye1{bottom:700.400000pt;}
.y36d{bottom:701.466667pt;}
.y178{bottom:703.600000pt;}
.y1e4{bottom:703.613333pt;}
.y1fe{bottom:704.666667pt;}
.y82{bottom:706.800000pt;}
.y38{bottom:707.866667pt;}
.ycc{bottom:708.933333pt;}
.yb8{bottom:710.000000pt;}
.y51{bottom:711.066667pt;}
.y319{bottom:712.133333pt;}
.y20a{bottom:718.560000pt;}
.y1bd{bottom:721.733333pt;}
.y1b4{bottom:721.760000pt;}
.y174{bottom:721.773333pt;}
.y218{bottom:722.840000pt;}
.y126{bottom:723.893333pt;}
.y22{bottom:724.960000pt;}
.y109{bottom:727.093333pt;}
.ye0{bottom:729.226667pt;}
.y209{bottom:731.360000pt;}
.y81{bottom:734.560000pt;}
.y68{bottom:735.626667pt;}
.ycb{bottom:736.693333pt;}
.yad{bottom:737.760000pt;}
.y11d{bottom:738.840000pt;}
.y37{bottom:739.893333pt;}
.y1e3{bottom:739.906667pt;}
.y1bc{bottom:740.973333pt;}
.yf4{bottom:744.173333pt;}
.y50{bottom:745.226667pt;}
.y2f8{bottom:749.506667pt;}
.y14f{bottom:750.560000pt;}
.y98{bottom:751.666667pt;}
.y168{bottom:752.733333pt;}
.y108{bottom:753.800000pt;}
.y2ea{bottom:755.933333pt;}
.ydf{bottom:757.000000pt;}
.y1ef{bottom:758.066667pt;}
.y1bb{bottom:759.106667pt;}
.y1b3{bottom:759.133333pt;}
.y80{bottom:762.333333pt;}
.y67{bottom:763.400000pt;}
.yac{bottom:764.466667pt;}
.y21{bottom:765.533333pt;}
.y36{bottom:771.933333pt;}
.y159{bottom:777.266667pt;}
.y1e2{bottom:777.280000pt;}
.y14e{bottom:778.333333pt;}
.y4f{bottom:779.400000pt;}
.y32c{bottom:782.600000pt;}
.yde{bottom:784.733333pt;}
.y7f{bottom:790.093333pt;}
.y66{bottom:791.173333pt;}
.yab{bottom:792.226667pt;}
.y20{bottom:793.293333pt;}
.y2e8{bottom:794.373333pt;}
.y1ba{bottom:795.400000pt;}
.y1ee{bottom:795.440000pt;}
.y107{bottom:800.760000pt;}
.yf3{bottom:802.893333pt;}
.y35{bottom:803.960000pt;}
.y34a{bottom:805.026667pt;}
.y205{bottom:805.040000pt;}
.y135{bottom:806.093333pt;}
.y355{bottom:807.173333pt;}
.y4e{bottom:813.560000pt;}
.y7e{bottom:816.760000pt;}
.y65{bottom:818.893333pt;}
.y97{bottom:819.960000pt;}
.y1f{bottom:821.026667pt;}
.yf2{bottom:822.133333pt;}
.y106{bottom:828.533333pt;}
.y33b{bottom:829.600000pt;}
.y158{bottom:831.733333pt;}
.y349{bottom:832.800000pt;}
.yb7{bottom:833.866667pt;}
.y34{bottom:834.933333pt;}
.y22b{bottom:836.000000pt;}
.yf1{bottom:841.333333pt;}
.ydd{bottom:842.400000pt;}
.y32a{bottom:843.466667pt;}
.y64{bottom:846.666667pt;}
.y96{bottom:847.733333pt;}
.y1e{bottom:848.800000pt;}
.y1ed{bottom:850.933333pt;}
.y1fd{bottom:853.066667pt;}
.y105{bottom:856.266667pt;}
.y7d{bottom:858.426667pt;}
.y157{bottom:859.506667pt;}
.yaa{bottom:861.626667pt;}
.y274{bottom:863.760000pt;}
.y33{bottom:866.960000pt;}
.y11c{bottom:868.026667pt;}
.y2e7{bottom:869.093333pt;}
.y1ec{bottom:869.106667pt;}
.ydc{bottom:870.173333pt;}
.y63{bottom:874.426667pt;}
.y170{bottom:875.493333pt;}
.y140{bottom:875.506667pt;}
.yf0{bottom:879.760000pt;}
.y1d{bottom:882.960000pt;}
.y7c{bottom:886.173333pt;}
.y95{bottom:888.293333pt;}
.y128{bottom:889.360000pt;}
.y297{bottom:889.373333pt;}
.y2b7{bottom:890.426667pt;}
.y33a{bottom:896.866667pt;}
.y32{bottom:899.000000pt;}
.y62{bottom:901.133333pt;}
.yca{bottom:902.200000pt;}
.y11b{bottom:903.266667pt;}
.y315{bottom:905.400000pt;}
.y104{bottom:910.733333pt;}
.y7b{bottom:913.933333pt;}
.y94{bottom:916.066667pt;}
.y4d{bottom:917.133333pt;}
.yef{bottom:918.200000pt;}
.y1c{bottom:926.733333pt;}
.ydb{bottom:927.840000pt;}
.y61{bottom:928.893333pt;}
.yc9{bottom:929.960000pt;}
.y31{bottom:931.026667pt;}
.y1ad{bottom:935.293333pt;}
.yee{bottom:937.426667pt;}
.y103{bottom:938.506667pt;}
.y8{bottom:939.560000pt;}
.y7a{bottom:940.626667pt;}
.y156{bottom:941.693333pt;}
.yb6{bottom:943.840000pt;}
.y30{bottom:949.173333pt;}
.y229{bottom:950.226667pt;}
.y4c{bottom:951.293333pt;}
.y2e6{bottom:954.506667pt;}
.yda{bottom:955.560000pt;}
.y60{bottom:956.626667pt;}
.y93{bottom:957.693333pt;}
.y327{bottom:958.760000pt;}
.y79{bottom:968.400000pt;}
.y155{bottom:970.533333pt;}
.y1b{bottom:971.600000pt;}
.y7{bottom:981.200000pt;}
.y2e5{bottom:982.266667pt;}
.yd9{bottom:983.333333pt;}
.y5f{bottom:984.400000pt;}
.y4b{bottom:985.466667pt;}
.y326{bottom:988.666667pt;}
.y339{bottom:990.800000pt;}
.y2f7{bottom:994.000000pt;}
.y253{bottom:999.360000pt;}
.y296{bottom:1003.626667pt;}
.y2b6{bottom:1004.693333pt;}
.y4a{bottom:1006.840000pt;}
.y78{bottom:1011.093333pt;}
.y6{bottom:1012.173333pt;}
.y325{bottom:1015.360000pt;}
.y2{bottom:1066.600000pt;}
.y1{bottom:1084.760000pt;}
.ha{height:8.600000pt;}
.h3a{height:18.133333pt;}
.h3b{height:18.166667pt;}
.h4{height:19.200000pt;}
.h38{height:19.233333pt;}
.h4a{height:22.400000pt;}
.h49{height:22.433333pt;}
.h55{height:25.600000pt;}
.h54{height:25.633333pt;}
.h53{height:26.666667pt;}
.h17{height:26.700000pt;}
.h43{height:27.733333pt;}
.h18{height:27.766667pt;}
.h5f{height:35.233333pt;}
.h31{height:36.300000pt;}
.h52{height:37.366667pt;}
.h5{height:41.875000pt;}
.h46{height:45.893333pt;}
.h1f{height:46.039583pt;}
.h3d{height:46.966667pt;}
.h68{height:48.020000pt;}
.h10{height:48.781250pt;}
.h5e{height:50.166667pt;}
.h5c{height:50.200000pt;}
.h59{height:53.400000pt;}
.h19{height:54.433333pt;}
.h7{height:54.437500pt;}
.h1e{height:54.466667pt;}
.h1b{height:55.500000pt;}
.h1a{height:55.533333pt;}
.h14{height:56.187500pt;}
.h3c{height:56.566667pt;}
.h29{height:56.843750pt;}
.h42{height:57.308333pt;}
.h21{height:57.375000pt;}
.h5b{height:57.633333pt;}
.h5d{height:57.666667pt;}
.h69{height:58.595833pt;}
.h61{height:58.733333pt;}
.h15{height:59.933333pt;}
.hf{height:62.781250pt;}
.h3{height:62.812500pt;}
.h13{height:63.656250pt;}
.he{height:64.500000pt;}
.h16{height:65.781915pt;}
.h63{height:66.200000pt;}
.h67{height:66.625000pt;}
.h40{height:67.266667pt;}
.h41{height:68.333333pt;}
.h20{height:68.800000pt;}
.h60{height:70.466667pt;}
.h6c{height:71.318359pt;}
.h12{height:72.029036pt;}
.h37{height:73.666667pt;}
.h39{height:75.800000pt;}
.h5a{height:76.866667pt;}
.h11{height:77.534375pt;}
.h64{height:80.086667pt;}
.hc{height:81.834375pt;}
.h1c{height:82.233333pt;}
.h6a{height:82.816536pt;}
.h1d{height:83.266667pt;}
.h6d{height:83.880859pt;}
.hd{height:86.134375pt;}
.h4e{height:89.700000pt;}
.h51{height:90.733333pt;}
.h62{height:90.766667pt;}
.h27{height:91.800000pt;}
.h2e{height:91.833333pt;}
.h6b{height:96.443359pt;}
.h9{height:99.034375pt;}
.h65{height:101.400000pt;}
.h66{height:101.433333pt;}
.h6{height:104.818359pt;}
.h8{height:107.634375pt;}
.h36{height:111.020000pt;}
.h35{height:111.033333pt;}
.h4b{height:113.200000pt;}
.h3e{height:114.233333pt;}
.h4f{height:116.400000pt;}
.h47{height:117.433333pt;}
.hb{height:121.507878pt;}
.h44{height:130.233333pt;}
.h32{height:147.333333pt;}
.h56{height:184.733333pt;}
.h57{height:202.840000pt;}
.h58{height:217.800000pt;}
.h24{height:257.293333pt;}
.h33{height:276.533333pt;}
.h34{height:294.666667pt;}
.h2c{height:294.706667pt;}
.h25{height:350.200000pt;}
.h4d{height:376.866667pt;}
.h3f{height:391.840000pt;}
.h50{height:432.400000pt;}
.h23{height:478.333333pt;}
.h48{height:496.466667pt;}
.h4c{height:502.866667pt;}
.h45{height:524.226667pt;}
.h26{height:533.840000pt;}
.h30{height:571.200000pt;}
.h2b{height:589.333333pt;}
.h22{height:736.693333pt;}
.h2d{height:792.200000pt;}
.h28{height:792.240000pt;}
.h2a{height:810.373333pt;}
.h2f{height:884.026667pt;}
.h1{height:1122.000000pt;}
.h2{height:1122.133252pt;}
.h0{height:1122.133333pt;}
.w43{width:26.700000pt;}
.w42{width:27.766667pt;}
.w44{width:27.800000pt;}
.w41{width:28.833333pt;}
.w39{width:29.900000pt;}
.w3a{width:30.966667pt;}
.w3b{width:31.000000pt;}
.w45{width:32.033333pt;}
.w3{width:44.800000pt;}
.w21{width:45.933333pt;}
.w20{width:47.000000pt;}
.w22{width:48.066667pt;}
.w31{width:52.333333pt;}
.w2f{width:59.800000pt;}
.w36{width:64.066667pt;}
.w35{width:69.433333pt;}
.w30{width:80.100000pt;}
.w32{width:80.133333pt;}
.w23{width:86.500000pt;}
.w33{width:92.900000pt;}
.w5{width:97.200000pt;}
.w25{width:101.466667pt;}
.w2b{width:119.633333pt;}
.w29{width:131.366667pt;}
.w28{width:132.433333pt;}
.w1d{width:132.466667pt;}
.w9{width:137.760000pt;}
.w2a{width:143.133333pt;}
.w11{width:147.400000pt;}
.wf{width:149.533333pt;}
.w17{width:153.800000pt;}
.w1b{width:159.133333pt;}
.w1f{width:163.426667pt;}
.w7{width:164.466667pt;}
.w8{width:165.573333pt;}
.w13{width:168.773333pt;}
.w3f{width:174.106667pt;}
.w6{width:175.173333pt;}
.wc{width:209.333333pt;}
.w3c{width:226.440000pt;}
.w26{width:227.493333pt;}
.w27{width:245.666667pt;}
.w40{width:257.400000pt;}
.w3e{width:258.466667pt;}
.w2e{width:268.106667pt;}
.w38{width:298.000000pt;}
.w4{width:302.266667pt;}
.wd{width:395.200000pt;}
.w2c{width:403.733333pt;}
.wa{width:465.693333pt;}
.w10{width:502.000000pt;}
.w14{width:503.066667pt;}
.w18{width:515.866667pt;}
.w46{width:534.066667pt;}
.w1e{width:547.906667pt;}
.w24{width:574.626667pt;}
.wb{width:604.533333pt;}
.w19{width:629.106667pt;}
.w34{width:638.706667pt;}
.w2d{width:639.773333pt;}
.we{width:651.533333pt;}
.w1a{width:662.200000pt;}
.w16{width:670.733333pt;}
.w15{width:670.773333pt;}
.w12{width:671.840000pt;}
.w1c{width:680.373333pt;}
.w37{width:681.440000pt;}
.w3d{width:689.973333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2e{left:2.133333pt;}
.x30{left:3.200000pt;}
.x38{left:4.266667pt;}
.x3c{left:5.333333pt;}
.x2f{left:6.386667pt;}
.x22{left:7.466667pt;}
.x2c{left:8.533333pt;}
.x2b{left:9.600000pt;}
.x29{left:16.000000pt;}
.x27{left:17.066667pt;}
.x20{left:17.960000pt;}
.x3{left:20.106667pt;}
.x31{left:25.626667pt;}
.x2d{left:26.706667pt;}
.x68{left:28.833333pt;}
.x5f{left:42.720000pt;}
.x41{left:52.333333pt;}
.x3b{left:56.600000pt;}
.x3d{left:66.233333pt;}
.x59{left:67.300000pt;}
.x62{left:70.493333pt;}
.x34{left:75.840000pt;}
.x52{left:76.900000pt;}
.x3a{left:79.033333pt;}
.x1{left:95.066655pt;}
.x7{left:97.199988pt;}
.x25{left:99.333322pt;}
.x42{left:102.533333pt;}
.x6c{left:103.599988pt;}
.x24{left:104.666655pt;}
.x23{left:109.999988pt;}
.x1d{left:111.066655pt;}
.x1e{left:114.299988pt;}
.x1f{left:119.633322pt;}
.x61{left:128.173333pt;}
.x69{left:130.300000pt;}
.xf{left:132.433322pt;}
.x5{left:140.999988pt;}
.x21{left:142.066655pt;}
.x1b{left:143.133322pt;}
.x6b{left:151.666655pt;}
.xb{left:152.733322pt;}
.x36{left:154.866667pt;}
.xa{left:158.066655pt;}
.x19{left:170.906655pt;}
.x40{left:189.066667pt;}
.x13{left:191.199988pt;}
.x26{left:192.266667pt;}
.x4a{left:196.533333pt;}
.x4c{left:198.666667pt;}
.x3f{left:215.773322pt;}
.x1c{left:218.973322pt;}
.x3e{left:221.106667pt;}
.x39{left:225.373333pt;}
.x37{left:226.439988pt;}
.x32{left:233.906667pt;}
.x10{left:240.333322pt;}
.x9{left:243.533322pt;}
.x8{left:244.599988pt;}
.x43{left:257.400000pt;}
.x33{left:264.866667pt;}
.xd{left:294.799988pt;}
.x35{left:304.400000pt;}
.x44{left:305.466667pt;}
.x5e{left:324.706667pt;}
.x4d{left:331.106667pt;}
.x14{left:334.306655pt;}
.xc{left:347.133322pt;}
.x45{left:352.466667pt;}
.x63{left:353.533333pt;}
.x1a{left:354.599988pt;}
.x11{left:358.866655pt;}
.x53{left:364.240000pt;}
.x16{left:366.359988pt;}
.x18{left:367.426655pt;}
.x28{left:368.506667pt;}
.x17{left:369.559988pt;}
.x15{left:370.639988pt;}
.x64{left:382.360000pt;}
.x4{left:397.333322pt;}
.x46{left:399.466667pt;}
.x65{left:410.133333pt;}
.x12{left:416.573322pt;}
.x4b{left:424.026667pt;}
.x54{left:425.106667pt;}
.x5a{left:427.240000pt;}
.x66{left:439.000000pt;}
.x47{left:447.533333pt;}
.x5b{left:458.200000pt;}
.x67{left:466.773333pt;}
.x4e{left:475.306667pt;}
.x51{left:480.626655pt;}
.x5c{left:489.200000pt;}
.x58{left:494.533333pt;}
.x48{left:495.600000pt;}
.x60{left:498.800000pt;}
.x55{left:506.266667pt;}
.x5d{left:520.173333pt;}
.x2a{left:534.026667pt;}
.x49{left:542.600000pt;}
.x56{left:559.666667pt;}
.xe{left:574.639988pt;}
.x4f{left:606.666667pt;}
.x6{left:618.426655pt;}
.x57{left:640.866667pt;}
.x2{left:652.800000pt;}
.x6a{left:677.173322pt;}
.x50{left:699.599988pt;}
}




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