
    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_c274844f3eed49e46a6a53d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_4719ae2d834c316dbdaa50b3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_63690e72b0562a9ef8dab000.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9ef4b80486dd96b7b79aca95.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_413c72b263c51ffb9cb926ea.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c57c5434101f635555b19602.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ad32c0579c58953d02758b56.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8a56212ce5c09f760ee5af1d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b4805c29f3634e9d6bf9dd11.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_129b97f2bc6909b57e5a0952.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_1853793ea1907337b4874b7d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c70f2693f905c2924181c74f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3d{letter-spacing:-2.880000px;}
.ls23{letter-spacing:-2.160000px;}
.ls20{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.828000px;}
.ls1a{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.720000px;}
.ls3a{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.576000px;}
.ls24{letter-spacing:-0.504000px;}
.ls50{letter-spacing:-0.457800px;}
.ls4b{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.288000px;}
.ls43{letter-spacing:-0.252000px;}
.ls10{letter-spacing:-0.216000px;}
.ls4c{letter-spacing:-0.152400px;}
.lsf{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.108000px;}
.ls28{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.027360px;}
.ls4f{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.027360px;}
.ls1f{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.109440px;}
.ls27{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.152640px;}
.ls3{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.220800px;}
.ls4{letter-spacing:0.229440px;}
.ls21{letter-spacing:0.256200px;}
.ls47{letter-spacing:0.262080px;}
.ls48{letter-spacing:0.262200px;}
.ls1b{letter-spacing:0.288000px;}
.ls4e{letter-spacing:0.305280px;}
.ls4d{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.442080px;}
.ls13{letter-spacing:0.504000px;}
.ls44{letter-spacing:0.567360px;}
.ls32{letter-spacing:0.576000px;}
.ls3f{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.792000px;}
.lse{letter-spacing:0.864000px;}
.ls26{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.152000px;}
.ls1e{letter-spacing:1.440000px;}
.ls2d{letter-spacing:2.880000px;}
.ls3e{letter-spacing:3.600000px;}
.ls52{letter-spacing:4.320000px;}
.ls2f{letter-spacing:5.760000px;}
.ls51{letter-spacing:6.480000px;}
.ls39{letter-spacing:9.360000px;}
.ls35{letter-spacing:10.080000px;}
.ls34{letter-spacing:10.800000px;}
.ls11{letter-spacing:10.944000px;}
.ls22{letter-spacing:11.520000px;}
.ls40{letter-spacing:11.664000px;}
.ls46{letter-spacing:11.825280px;}
.ls53{letter-spacing:12.240000px;}
.ls45{letter-spacing:12.545280px;}
.ls42{letter-spacing:13.265280px;}
.ls2c{letter-spacing:15.120000px;}
.ls30{letter-spacing:18.000000px;}
.ls3c{letter-spacing:18.720000px;}
.lsc{letter-spacing:18.864000px;}
.ls2e{letter-spacing:25.200000px;}
.ls38{letter-spacing:28.800000px;}
.ls2a{letter-spacing:32.724000px;}
.lsb{letter-spacing:33.240000px;}
.ls19{letter-spacing:33.984000px;}
.ls49{letter-spacing:36.305280px;}
.ls14{letter-spacing:38.304000px;}
.ls29{letter-spacing:43.344000px;}
.ls33{letter-spacing:46.224000px;}
.ls4a{letter-spacing:49.985280px;}
.ls37{letter-spacing:53.424000px;}
.ls36{letter-spacing:54.864000px;}
.ls41{letter-spacing:59.345280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-72.000000px;}
.ws1c{word-spacing:-66.240000px;}
.wsf{word-spacing:-18.864000px;}
.wsa{word-spacing:-18.720000px;}
.ws1a{word-spacing:-18.648000px;}
.ws16{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.432000px;}
.ws15{word-spacing:-18.288000px;}
.ws12{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.496000px;}
.ws17{word-spacing:-17.280000px;}
.ws9{word-spacing:-17.208000px;}
.ws21{word-spacing:-16.865400px;}
.ws1d{word-spacing:-16.822200px;}
.ws22{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws20{word-spacing:-16.407600px;}
.ws1e{word-spacing:-16.254600px;}
.ws23{word-spacing:-16.102200px;}
.ws3{word-spacing:-15.948000px;}
.ws19{word-spacing:-15.840000px;}
.wse{word-spacing:-15.226440px;}
.ws14{word-spacing:-14.440800px;}
.wsc{word-spacing:-14.220000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.392000px;}
.ws1b{word-spacing:-13.248000px;}
.ws1f{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-14.320320px;}
._d{margin-left:-12.362160px;}
._3{margin-left:-11.162400px;}
._b{margin-left:-9.900000px;}
._7{margin-left:-8.898000px;}
._a{margin-left:-7.735680px;}
._c{margin-left:-6.210240px;}
._8{margin-left:-4.621920px;}
._9{margin-left:-2.397840px;}
._0{margin-left:-1.126080px;}
._6{width:1.494000px;}
._1e{width:2.952000px;}
._5{width:4.320000px;}
._1d{width:5.520000px;}
._1a{width:6.552000px;}
._19{width:8.400000px;}
._13{width:10.008000px;}
._4{width:11.520000px;}
._18{width:12.579840px;}
._16{width:13.752000px;}
._e{width:15.048000px;}
._21{width:16.983840px;}
._1{width:18.000000px;}
._14{width:19.002000px;}
._11{width:20.160000px;}
._12{width:22.152000px;}
._15{width:23.640000px;}
._17{width:25.200000px;}
._f{width:26.496000px;}
._10{width:27.580080px;}
._1c{width:28.584000px;}
._1b{width:29.686080px;}
._29{width:31.032000px;}
._22{width:32.904000px;}
._23{width:33.978000px;}
._24{width:35.220000px;}
._25{width:36.360000px;}
._26{width:37.656000px;}
._2c{width:39.024000px;}
._27{width:40.032000px;}
._28{width:41.490000px;}
._2e{width:42.984000px;}
._2f{width:44.424000px;}
._35{width:45.565920px;}
._2d{width:46.702080px;}
._2a{width:48.240000px;}
._1f{width:50.112000px;}
._20{width:51.264000px;}
._32{width:52.632000px;}
._33{width:53.784000px;}
._36{width:54.864000px;}
._34{width:55.908000px;}
._2b{width:57.672000px;}
._38{width:69.255360px;}
._39{width:70.611840px;}
._37{width:76.078080px;}
._3a{width:80.383680px;}
._30{width:384.948000px;}
._31{width:402.600000px;}
.fc2{color:rgb(54,95,145);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1ea{bottom:3.600000px;}
.y1e6{bottom:3.780000px;}
.yf0{bottom:3.960000px;}
.y23e{bottom:4.005000px;}
.y145{bottom:4.134000px;}
.ye7{bottom:4.140000px;}
.y106{bottom:4.500000px;}
.y25b{bottom:5.214000px;}
.y230{bottom:5.220000px;}
.y242{bottom:5.265000px;}
.y1ae{bottom:6.480000px;}
.y17f{bottom:6.660000px;}
.y1b2{bottom:6.840000px;}
.y279{bottom:7.020000px;}
.y19b{bottom:7.200000px;}
.y199{bottom:7.920000px;}
.yaf{bottom:10.080000px;}
.yb5{bottom:10.260000px;}
.y80{bottom:10.440000px;}
.yb3{bottom:10.485000px;}
.y8c{bottom:13.500000px;}
.yce{bottom:13.545000px;}
.yde{bottom:14.400000px;}
.y159{bottom:16.014000px;}
.y272{bottom:17.280000px;}
.y12b{bottom:21.420000px;}
.y12a{bottom:21.780000px;}
.y216{bottom:21.825000px;}
.ydd{bottom:21.960000px;}
.y127{bottom:22.320000px;}
.y1f3{bottom:22.500000px;}
.y1e9{bottom:22.680000px;}
.y208{bottom:22.854000px;}
.y16b{bottom:22.860000px;}
.y261{bottom:22.890000px;}
.y245{bottom:23.034000px;}
.yef{bottom:23.040000px;}
.y1d8{bottom:23.070000px;}
.ye5{bottom:23.085000px;}
.y144{bottom:23.214000px;}
.y193{bottom:23.220000px;}
.y83{bottom:23.574000px;}
.y8f{bottom:23.580000px;}
.y247{bottom:24.114000px;}
.y189{bottom:24.120000px;}
.y241{bottom:24.165000px;}
.y1a1{bottom:24.294000px;}
.y17b{bottom:24.300000px;}
.y19f{bottom:25.914000px;}
.y19d{bottom:25.920000px;}
.y198{bottom:26.820000px;}
.y19a{bottom:27.360000px;}
.y1ad{bottom:28.260000px;}
.y294{bottom:28.614000px;}
.y1b1{bottom:28.620000px;}
.y278{bottom:28.794000px;}
.y27b{bottom:28.800000px;}
.y1f5{bottom:32.085000px;}
.y108{bottom:34.200000px;}
.ycd{bottom:34.245000px;}
.y1a6{bottom:34.380000px;}
.y158{bottom:34.914000px;}
.y1a3{bottom:35.460000px;}
.y1e4{bottom:37.290000px;}
.y23b{bottom:40.680000px;}
.y215{bottom:40.725000px;}
.y21f{bottom:40.860000px;}
.y236{bottom:40.905000px;}
.y1e8{bottom:41.580000px;}
.y1f2{bottom:41.625000px;}
.y207{bottom:41.934000px;}
.yee{bottom:41.940000px;}
.y1d7{bottom:41.970000px;}
.y1ee{bottom:41.985000px;}
.y259{bottom:42.114000px;}
.yf9{bottom:42.120000px;}
.ye4{bottom:42.165000px;}
.y250{bottom:42.840000px;}
.y20d{bottom:43.014000px;}
.y22b{bottom:43.020000px;}
.y143{bottom:43.194000px;}
.y8b{bottom:43.200000px;}
.y200{bottom:43.230000px;}
.y1c7{bottom:43.245000px;}
.y192{bottom:43.380000px;}
.y17a{bottom:44.280000px;}
.y1a0{bottom:44.454000px;}
.y1a9{bottom:44.460000px;}
.y19e{bottom:44.505000px;}
.y1ac{bottom:50.040000px;}
.y1b0{bottom:50.400000px;}
.y277{bottom:50.574000px;}
.y27d{bottom:50.580000px;}
.y1ec{bottom:50.985000px;}
.y157{bottom:53.994000px;}
.y82{bottom:54.714000px;}
.y8e{bottom:54.720000px;}
.y1e3{bottom:56.190000px;}
.y1a5{bottom:56.385000px;}
.y2{bottom:57.636000px;}
.y24d{bottom:59.400000px;}
.y226{bottom:59.760000px;}
.y214{bottom:59.805000px;}
.y21e{bottom:59.940000px;}
.y1f1{bottom:60.525000px;}
.y206{bottom:60.834000px;}
.yed{bottom:60.840000px;}
.y1fc{bottom:60.870000px;}
.y1ed{bottom:60.885000px;}
.y244{bottom:61.014000px;}
.yf8{bottom:61.020000px;}
.y1d6{bottom:61.050000px;}
.ye6{bottom:61.065000px;}
.y24f{bottom:61.920000px;}
.y20c{bottom:62.094000px;}
.y21d{bottom:62.100000px;}
.y1ff{bottom:62.130000px;}
.y240{bottom:62.145000px;}
.y142{bottom:62.274000px;}
.y251{bottom:62.280000px;}
.y1c6{bottom:62.325000px;}
.y1bd{bottom:63.045000px;}
.y188{bottom:63.180000px;}
.y191{bottom:63.540000px;}
.y179{bottom:64.440000px;}
.y1a8{bottom:64.485000px;}
.y196{bottom:69.114000px;}
.y1f4{bottom:70.065000px;}
.ye8{bottom:70.380000px;}
.yf4{bottom:70.560000px;}
.y1ab{bottom:72.000000px;}
.y276{bottom:72.354000px;}
.y1af{bottom:72.360000px;}
.y288{bottom:72.405000px;}
.y156{bottom:72.894000px;}
.y182{bottom:74.160000px;}
.y1e2{bottom:75.270000px;}
.y1{bottom:77.796000px;}
.y22e{bottom:78.660000px;}
.y213{bottom:78.705000px;}
.y268{bottom:78.840000px;}
.y225{bottom:78.885000px;}
.y1f0{bottom:79.605000px;}
.y243{bottom:79.734000px;}
.y205{bottom:79.914000px;}
.yec{bottom:79.920000px;}
.y1d5{bottom:79.950000px;}
.y258{bottom:79.959000px;}
.y219{bottom:79.965000px;}
.y232{bottom:80.100000px;}
.y20b{bottom:80.994000px;}
.y22a{bottom:81.000000px;}
.y16a{bottom:81.030000px;}
.y23f{bottom:81.045000px;}
.y246{bottom:81.174000px;}
.y21c{bottom:81.180000px;}
.y25a{bottom:81.219000px;}
.y1c5{bottom:81.225000px;}
.y1bc{bottom:82.125000px;}
.y187{bottom:82.260000px;}
.y141{bottom:82.479000px;}
.y178{bottom:83.370000px;}
.y190{bottom:83.520000px;}
.y1a7{bottom:83.565000px;}
.y18b{bottom:84.600000px;}
.y195{bottom:90.939000px;}
.y155{bottom:91.839000px;}
.y12{bottom:93.456000px;}
.y280{bottom:94.140000px;}
.y287{bottom:94.185000px;}
.y28b{bottom:94.320000px;}
.y275{bottom:94.359000px;}
.y1e1{bottom:95.430000px;}
.ye2{bottom:95.760000px;}
.y181{bottom:95.940000px;}
.y22d{bottom:97.410000px;}
.y23a{bottom:97.740000px;}
.y212{bottom:97.785000px;}
.y224{bottom:97.965000px;}
.y1ef{bottom:98.505000px;}
.yeb{bottom:98.820000px;}
.yf2{bottom:98.850000px;}
.y204{bottom:98.859000px;}
.y218{bottom:98.865000px;}
.y202{bottom:99.000000px;}
.yf7{bottom:99.030000px;}
.y257{bottom:99.039000px;}
.y228{bottom:99.045000px;}
.y169{bottom:100.110000px;}
.y20a{bottom:100.119000px;}
.y1c4{bottom:100.125000px;}
.y1bb{bottom:101.025000px;}
.y186{bottom:102.420000px;}
.y177{bottom:102.450000px;}
.y18f{bottom:102.600000px;}
.y140{bottom:102.639000px;}
.y154{bottom:110.919000px;}
.y1e0{bottom:114.510000px;}
.y27f{bottom:115.920000px;}
.y290{bottom:116.100000px;}
.y286{bottom:116.145000px;}
.y255{bottom:116.640000px;}
.y267{bottom:116.820000px;}
.y239{bottom:117.540000px;}
.y211{bottom:117.585000px;}
.ye1{bottom:117.720000px;}
.yea{bottom:117.900000px;}
.yf6{bottom:117.930000px;}
.y203{bottom:117.939000px;}
.y217{bottom:117.945000px;}
.y168{bottom:119.010000px;}
.y209{bottom:119.019000px;}
.y21b{bottom:119.190000px;}
.y5f{bottom:119.196000px;}
.y1c3{bottom:119.205000px;}
.y1ba{bottom:119.925000px;}
.y176{bottom:121.350000px;}
.y13f{bottom:121.719000px;}
.y18e{bottom:122.610000px;}
.y185{bottom:122.625000px;}
.y2d0{bottom:123.516000px;}
.y263{bottom:127.839000px;}
.yab{bottom:129.096000px;}
.y153{bottom:129.999000px;}
.y233{bottom:131.076000px;}
.yca{bottom:132.516000px;}
.y81{bottom:133.776000px;}
.y7d{bottom:134.136000px;}
.y1df{bottom:134.490000px;}
.y254{bottom:135.540000px;}
.y266{bottom:135.720000px;}
.yd9{bottom:136.116000px;}
.y238{bottom:136.440000px;}
.y223{bottom:136.665000px;}
.ye9{bottom:136.800000px;}
.y1d4{bottom:136.830000px;}
.y262{bottom:136.836000px;}
.y26d{bottom:136.845000px;}
.y26a{bottom:136.980000px;}
.yf5{bottom:137.010000px;}
.y227{bottom:137.025000px;}
.y284{bottom:137.730000px;}
.y28f{bottom:137.880000px;}
.y167{bottom:137.910000px;}
.y1fe{bottom:138.090000px;}
.y194{bottom:138.096000px;}
.y1c2{bottom:138.105000px;}
.y274{bottom:138.456000px;}
.y1f6{bottom:138.996000px;}
.y1b9{bottom:139.005000px;}
.ye0{bottom:139.500000px;}
.y289{bottom:139.716000px;}
.y175{bottom:140.430000px;}
.y293{bottom:140.436000px;}
.y18d{bottom:141.690000px;}
.y13e{bottom:141.879000px;}
.y184{bottom:142.785000px;}
.y2c{bottom:146.376000px;}
.y12c{bottom:147.096000px;}
.y2b2{bottom:148.716000px;}
.y24a{bottom:149.976000px;}
.y152{bottom:149.979000px;}
.y5e{bottom:150.150000px;}
.y220{bottom:153.030000px;}
.y1de{bottom:153.390000px;}
.y265{bottom:154.440000px;}
.y253{bottom:154.650000px;}
.y1fb{bottom:155.550000px;}
.y256{bottom:155.730000px;}
.y269{bottom:155.880000px;}
.y1d3{bottom:155.910000px;}
.y26c{bottom:155.925000px;}
.y166{bottom:156.990000px;}
.y1c1{bottom:157.185000px;}
.y1b8{bottom:157.905000px;}
.y283{bottom:159.510000px;}
.y28e{bottom:159.660000px;}
.y174{bottom:160.590000px;}
.yaa{bottom:161.310000px;}
.y18c{bottom:161.850000px;}
.y13d{bottom:162.039000px;}
.y285{bottom:162.210000px;}
.y183{bottom:162.945000px;}
.yc9{bottom:163.470000px;}
.ya7{bottom:164.010000px;}
.y7c{bottom:165.270000px;}
.yd8{bottom:167.250000px;}
.y151{bottom:169.059000px;}
.y1dd{bottom:172.470000px;}
.y11a{bottom:172.830000px;}
.y104{bottom:174.450000px;}
.y1d2{bottom:174.810000px;}
.y1fa{bottom:175.530000px;}
.y1fd{bottom:175.890000px;}
.y1c0{bottom:176.085000px;}
.y1b7{bottom:176.985000px;}
.y165{bottom:177.150000px;}
.y173{bottom:179.490000px;}
.y2b1{bottom:179.670000px;}
.y5d{bottom:181.290000px;}
.y28d{bottom:181.440000px;}
.y282{bottom:181.470000px;}
.y13c{bottom:182.019000px;}
.y2b{bottom:182.370000px;}
.y15c{bottom:185.250000px;}
.y2ce{bottom:185.610000px;}
.y150{bottom:187.959000px;}
.y1b4{bottom:188.310000px;}
.y1dc{bottom:191.550000px;}
.y1ce{bottom:193.350000px;}
.ya9{bottom:193.710000px;}
.yc8{bottom:194.430000px;}
.ya6{bottom:194.970000px;}
.y1bf{bottom:195.165000px;}
.y1b6{bottom:195.885000px;}
.y164{bottom:196.050000px;}
.y7b{bottom:196.230000px;}
.yd7{bottom:198.210000px;}
.y172{bottom:198.390000px;}
.y19c{bottom:199.290000px;}
.y13b{bottom:201.099000px;}
.y1f8{bottom:205.059000px;}
.y103{bottom:205.410000px;}
.y15b{bottom:207.030000px;}
.y14f{bottom:207.039000px;}
.y2b0{bottom:210.810000px;}
.y1db{bottom:211.575000px;}
.y22f{bottom:211.890000px;}
.y5c{bottom:212.250000px;}
.y1cd{bottom:212.475000px;}
.y1d1{bottom:212.835000px;}
.y7f{bottom:214.590000px;}
.y1b5{bottom:214.785000px;}
.y163{bottom:215.130000px;}
.y24b{bottom:215.139000px;}
.y1be{bottom:215.145000px;}
.y2cd{bottom:216.750000px;}
.y171{bottom:217.470000px;}
.y2a{bottom:218.370000px;}
.y13a{bottom:221.259000px;}
.y1f7{bottom:224.139000px;}
.ya8{bottom:224.850000px;}
.yc7{bottom:225.570000px;}
.yc{bottom:225.930000px;}
.ya5{bottom:226.110000px;}
.y10b{bottom:227.010000px;}
.y14e{bottom:227.019000px;}
.y7a{bottom:227.370000px;}
.y23d{bottom:227.910000px;}
.y292{bottom:228.495000px;}
.yd6{bottom:229.350000px;}
.y1da{bottom:230.655000px;}
.y1cc{bottom:231.375000px;}
.y1d0{bottom:231.735000px;}
.y264{bottom:232.455000px;}
.y20f{bottom:233.490000px;}
.y162{bottom:235.290000px;}
.y170{bottom:236.370000px;}
.y102{bottom:236.550000px;}
.y139{bottom:241.419000px;}
.y2af{bottom:241.770000px;}
.y5b{bottom:243.390000px;}
.y234{bottom:243.939000px;}
.y14d{bottom:246.099000px;}
.y2cc{bottom:247.710000px;}
.y273{bottom:248.475000px;}
.y1d9{bottom:249.735000px;}
.y1cb{bottom:250.455000px;}
.y260{bottom:250.635000px;}
.y1cf{bottom:250.815000px;}
.y29{bottom:254.370000px;}
.y20e{bottom:254.775000px;}
.y16f{bottom:255.450000px;}
.yc6{bottom:256.530000px;}
.ya4{bottom:257.070000px;}
.y79{bottom:258.330000px;}
.yd5{bottom:260.310000px;}
.y197{bottom:260.535000px;}
.y138{bottom:261.579000px;}
.y221{bottom:263.025000px;}
.y14c{bottom:264.999000px;}
.y252{bottom:265.935000px;}
.y101{bottom:267.510000px;}
.y1ca{bottom:269.355000px;}
.y25f{bottom:269.715000px;}
.y2ae{bottom:272.910000px;}
.y201{bottom:273.675000px;}
.y5a{bottom:274.350000px;}
.y161{bottom:274.395000px;}
.y2cb{bottom:278.850000px;}
.y137{bottom:281.589000px;}
.y14b{bottom:284.109000px;}
.yc5{bottom:287.670000px;}
.ya3{bottom:288.210000px;}
.y25e{bottom:288.615000px;}
.y78{bottom:289.470000px;}
.y28{bottom:290.370000px;}
.yd4{bottom:291.450000px;}
.y160{bottom:293.295000px;}
.y281{bottom:294.015000px;}
.y291{bottom:294.735000px;}
.y100{bottom:298.650000px;}
.y136{bottom:300.669000px;}
.yb{bottom:301.890000px;}
.y14a{bottom:303.189000px;}
.y2ad{bottom:303.870000px;}
.y59{bottom:305.490000px;}
.y18a{bottom:307.515000px;}
.y25d{bottom:307.695000px;}
.y42{bottom:309.810000px;}
.y15f{bottom:312.375000px;}
.y271{bottom:314.715000px;}
.yc4{bottom:318.630000px;}
.ya2{bottom:319.170000px;}
.y77{bottom:320.430000px;}
.y135{bottom:320.829000px;}
.y130{bottom:321.009000px;}
.ycc{bottom:321.510000px;}
.yd3{bottom:322.410000px;}
.y149{bottom:323.169000px;}
.y27{bottom:326.235000px;}
.y22c{bottom:326.595000px;}
.yff{bottom:329.655000px;}
.y17c{bottom:330.015000px;}
.y15e{bottom:331.275000px;}
.y16e{bottom:331.455000px;}
.y1e7{bottom:333.795000px;}
.y2ac{bottom:335.055000px;}
.y58{bottom:336.495000px;}
.y134{bottom:340.989000px;}
.y2ca{bottom:340.995000px;}
.y148{bottom:342.249000px;}
.y12f{bottom:342.789000px;}
.y23c{bottom:343.695000px;}
.y41{bottom:345.855000px;}
.y15a{bottom:347.295000px;}
.yc3{bottom:349.815000px;}
.ya1{bottom:350.355000px;}
.y88{bottom:351.255000px;}
.y16d{bottom:351.435000px;}
.y76{bottom:351.615000px;}
.yd2{bottom:353.595000px;}
.y133{bottom:360.069000px;}
.yfe{bottom:360.795000px;}
.y147{bottom:362.229000px;}
.y26{bottom:362.235000px;}
.y2ab{bottom:366.015000px;}
.y57{bottom:367.635000px;}
.y15d{bottom:369.435000px;}
.y16c{bottom:370.515000px;}
.y2c9{bottom:371.955000px;}
.ya{bottom:377.715000px;}
.y12e{bottom:379.329000px;}
.y132{bottom:380.229000px;}
.yc2{bottom:380.775000px;}
.y270{bottom:381.135000px;}
.y146{bottom:381.309000px;}
.ya0{bottom:381.315000px;}
.ycb{bottom:381.675000px;}
.y40{bottom:381.855000px;}
.y87{bottom:382.215000px;}
.y75{bottom:382.575000px;}
.yd1{bottom:384.555000px;}
.y1f9{bottom:388.335000px;}
.y1e5{bottom:391.395000px;}
.yfd{bottom:391.755000px;}
.y11d{bottom:396.615000px;}
.y2aa{bottom:397.155000px;}
.y25{bottom:398.235000px;}
.y131{bottom:400.389000px;}
.y12d{bottom:401.109000px;}
.yd0{bottom:401.655000px;}
.y2c8{bottom:402.915000px;}
.y25c{bottom:410.115000px;}
.y26f{bottom:411.015000px;}
.y1c9{bottom:411.195000px;}
.yc1{bottom:411.915000px;}
.y9f{bottom:412.455000px;}
.y86{bottom:413.355000px;}
.y74{bottom:413.715000px;}
.y3f{bottom:417.855000px;}
.y237{bottom:420.405000px;}
.yfc{bottom:422.715000px;}
.y28c{bottom:426.345000px;}
.y2a9{bottom:428.115000px;}
.y26e{bottom:428.325000px;}
.y56{bottom:429.375000px;}
.y2c7{bottom:434.055000px;}
.y24{bottom:434.235000px;}
.y24e{bottom:437.325000px;}
.ycf{bottom:441.255000px;}
.y229{bottom:441.285000px;}
.y1b3{bottom:441.645000px;}
.y11c{bottom:441.795000px;}
.yc0{bottom:442.875000px;}
.y9e{bottom:443.415000px;}
.y73{bottom:444.675000px;}
.y3e{bottom:453.675000px;}
.yfb{bottom:453.855000px;}
.y2a8{bottom:459.255000px;}
.y55{bottom:460.695000px;}
.ydb{bottom:462.855000px;}
.y1aa{bottom:464.865000px;}
.y2c6{bottom:465.015000px;}
.y9{bottom:469.515000px;}
.y23{bottom:470.055000px;}
.yfa{bottom:470.955000px;}
.ybf{bottom:474.015000px;}
.y9d{bottom:474.555000px;}
.y72{bottom:475.815000px;}
.y180{bottom:486.285000px;}
.y118{bottom:487.875000px;}
.y3d{bottom:489.675000px;}
.y2a7{bottom:490.215000px;}
.y27e{bottom:491.145000px;}
.y54{bottom:491.835000px;}
.y2c5{bottom:496.155000px;}
.y21a{bottom:504.285000px;}
.ybe{bottom:504.975000px;}
.y9c{bottom:505.515000px;}
.y22{bottom:506.055000px;}
.y71{bottom:506.775000px;}
.yda{bottom:510.375000px;}
.yf1{bottom:511.095000px;}
.y24c{bottom:515.265000px;}
.y2a6{bottom:521.355000px;}
.y8{bottom:521.715000px;}
.y53{bottom:522.795000px;}
.y3c{bottom:525.675000px;}
.y2d1{bottom:526.755000px;}
.y2c4{bottom:527.115000px;}
.ybd{bottom:536.115000px;}
.y9b{bottom:536.475000px;}
.y70{bottom:537.915000px;}
.y222{bottom:537.945000px;}
.y11f{bottom:538.455000px;}
.y21{bottom:542.055000px;}
.y2a5{bottom:552.315000px;}
.y1a4{bottom:552.885000px;}
.y52{bottom:553.935000px;}
.y2c3{bottom:558.255000px;}
.y3b{bottom:561.675000px;}
.y26b{bottom:561.885000px;}
.y129{bottom:564.225000px;}
.ybc{bottom:567.075000px;}
.y9a{bottom:567.615000px;}
.y10c{bottom:568.515000px;}
.y6f{bottom:568.875000px;}
.y235{bottom:572.865000px;}
.y11e{bottom:574.095000px;}
.y20{bottom:578.055000px;}
.y1eb{bottom:580.065000px;}
.y2a4{bottom:583.455000px;}
.y51{bottom:584.895000px;}
.y2c2{bottom:589.215000px;}
.y7{bottom:592.095000px;}
.y119{bottom:595.905000px;}
.y3a{bottom:597.525000px;}
.y249{bottom:597.885000px;}
.ybb{bottom:598.245000px;}
.y99{bottom:598.605000px;}
.y210{bottom:599.865000px;}
.y6e{bottom:600.045000px;}
.y128{bottom:606.345000px;}
.y1f{bottom:614.085000px;}
.y2a3{bottom:614.445000px;}
.y50{bottom:616.065000px;}
.y2cf{bottom:620.025000px;}
.y2c1{bottom:620.385000px;}
.y27c{bottom:622.770000px;}
.y126{bottom:623.310000px;}
.y28a{bottom:623.490000px;}
.yba{bottom:629.205000px;}
.y98{bottom:629.745000px;}
.y6d{bottom:631.005000px;}
.y39{bottom:633.525000px;}
.y231{bottom:636.630000px;}
.y6{bottom:644.145000px;}
.y2a2{bottom:645.585000px;}
.y4f{bottom:647.025000px;}
.y1e{bottom:649.905000px;}
.y2c0{bottom:651.345000px;}
.y1a2{bottom:653.190000px;}
.y117{bottom:656.925000px;}
.y97{bottom:660.705000px;}
.y6c{bottom:662.145000px;}
.y125{bottom:662.910000px;}
.yf3{bottom:663.765000px;}
.y17e{bottom:665.970000px;}
.y38{bottom:669.525000px;}
.y11b{bottom:672.405000px;}
.yb9{bottom:673.305000px;}
.y248{bottom:675.690000px;}
.y2a1{bottom:676.545000px;}
.y4e{bottom:678.165000px;}
.y2bf{bottom:682.485000px;}
.y1d{bottom:685.905000px;}
.y116{bottom:687.885000px;}
.y27a{bottom:689.010000px;}
.y96{bottom:691.845000px;}
.y6b{bottom:693.105000px;}
.ydf{bottom:702.465000px;}
.y37{bottom:705.525000px;}
.y2a0{bottom:707.685000px;}
.y4d{bottom:709.125000px;}
.yb8{bottom:712.905000px;}
.y2be{bottom:713.445000px;}
.yb7{bottom:714.345000px;}
.y124{bottom:716.730000px;}
.y17d{bottom:717.090000px;}
.y107{bottom:718.125000px;}
.y1c8{bottom:718.530000px;}
.y115{bottom:719.025000px;}
.y1c{bottom:721.905000px;}
.y95{bottom:722.805000px;}
.y6a{bottom:724.065000px;}
.y29f{bottom:738.645000px;}
.y4c{bottom:740.265000px;}
.y36{bottom:741.525000px;}
.y2bd{bottom:744.585000px;}
.yb6{bottom:749.625000px;}
.y114{bottom:749.985000px;}
.y5{bottom:750.165000px;}
.y94{bottom:753.945000px;}
.y10a{bottom:754.845000px;}
.y69{bottom:755.205000px;}
.y123{bottom:755.430000px;}
.y1b{bottom:757.905000px;}
.y29e{bottom:769.785000px;}
.y4b{bottom:771.225000px;}
.y2bc{bottom:775.545000px;}
.y35{bottom:777.345000px;}
.y105{bottom:778.245000px;}
.y113{bottom:781.125000px;}
.y122{bottom:781.170000px;}
.y93{bottom:784.905000px;}
.y109{bottom:785.805000px;}
.y68{bottom:786.165000px;}
.y4{bottom:788.865000px;}
.y1a{bottom:793.725000px;}
.y29d{bottom:800.745000px;}
.y4a{bottom:802.365000px;}
.y121{bottom:802.980000px;}
.y2bb{bottom:806.685000px;}
.y34{bottom:813.345000px;}
.y92{bottom:816.045000px;}
.y67{bottom:817.305000px;}
.yb4{bottom:820.365000px;}
.y3{bottom:823.425000px;}
.y120{bottom:824.940000px;}
.y19{bottom:829.725000px;}
.y29c{bottom:831.885000px;}
.y49{bottom:833.325000px;}
.y2ba{bottom:837.645000px;}
.y112{bottom:844.485000px;}
.y91{bottom:847.005000px;}
.y66{bottom:848.265000px;}
.y33{bottom:849.345000px;}
.ye3{bottom:854.925000px;}
.yb2{bottom:855.645000px;}
.y29b{bottom:862.890000px;}
.y48{bottom:864.510000px;}
.y18{bottom:865.770000px;}
.y2b9{bottom:868.830000px;}
.y111{bottom:876.930000px;}
.y90{bottom:878.190000px;}
.y65{bottom:879.450000px;}
.y32{bottom:885.390000px;}
.yb1{bottom:890.970000px;}
.y29a{bottom:894.030000px;}
.y8d{bottom:895.290000px;}
.y47{bottom:895.470000px;}
.y2b8{bottom:899.790000px;}
.y17{bottom:901.770000px;}
.y110{bottom:907.890000px;}
.y64{bottom:910.410000px;}
.y31{bottom:921.210000px;}
.y299{bottom:924.990000px;}
.yb0{bottom:926.250000px;}
.y46{bottom:926.610000px;}
.y2b7{bottom:930.930000px;}
.ydc{bottom:931.650000px;}
.y16{bottom:937.770000px;}
.y10f{bottom:940.290000px;}
.y85{bottom:941.190000px;}
.y63{bottom:941.550000px;}
.y298{bottom:956.130000px;}
.y30{bottom:957.210000px;}
.y45{bottom:957.570000px;}
.y2b6{bottom:961.890000px;}
.yae{bottom:964.590000px;}
.y10e{bottom:971.250000px;}
.y7e{bottom:972.150000px;}
.y62{bottom:972.510000px;}
.y15{bottom:974.850000px;}
.y8a{bottom:976.110000px;}
.y297{bottom:986.730000px;}
.y44{bottom:988.710000px;}
.y2b5{bottom:993.030000px;}
.y2f{bottom:993.210000px;}
.y61{bottom:1003.650000px;}
.y14{bottom:1005.450000px;}
.y296{bottom:1017.870000px;}
.y43{bottom:1019.310000px;}
.y2b4{bottom:1023.990000px;}
.y2e{bottom:1029.210000px;}
.yad{bottom:1033.350000px;}
.y10d{bottom:1034.250000px;}
.y60{bottom:1034.610000px;}
.y295{bottom:1051.530000px;}
.y2b3{bottom:1055.130000px;}
.yac{bottom:1064.490000px;}
.y84{bottom:1065.390000px;}
.y13{bottom:1065.750000px;}
.y2d{bottom:1066.470000px;}
.y89{bottom:1067.190000px;}
.y11{bottom:1103.550000px;}
.y10{bottom:1129.320000px;}
.yf{bottom:1151.100000px;}
.ye{bottom:1172.880000px;}
.yd{bottom:1194.840000px;}
.h11{height:2.826563px;}
.h36{height:19.080000px;}
.h5f{height:21.780000px;}
.h28{height:21.960000px;}
.hf{height:32.580000px;}
.hd{height:32.760000px;}
.he{height:32.796000px;}
.h22{height:36.720000px;}
.h17{height:36.900000px;}
.h1c{height:37.980000px;}
.h12{height:38.700000px;}
.h57{height:43.560000px;}
.h5a{height:43.740000px;}
.h2c{height:46.260000px;}
.h2{height:50.229844px;}
.h34{height:52.971680px;}
.h32{height:54.421875px;}
.h37{height:56.880000px;}
.h49{height:56.916000px;}
.h4b{height:57.060000px;}
.h46{height:58.140000px;}
.h61{height:58.902187px;}
.h3b{height:59.383125px;}
.h1f{height:59.400000px;}
.h14{height:59.436000px;}
.h2e{height:60.480000px;}
.h2d{height:60.516000px;}
.hc{height:64.546875px;}
.h25{height:64.978594px;}
.h4{height:65.010937px;}
.h58{height:65.340000px;}
.h5b{height:65.520000px;}
.h23{height:66.757500px;}
.h26{height:68.084282px;}
.hb{height:68.400000px;}
.ha{height:70.628906px;}
.h3{height:70.664062px;}
.h5{height:72.562500px;}
.h7{height:74.004654px;}
.h6{height:74.953125px;}
.h4e{height:75.780000px;}
.h42{height:75.960000px;}
.h19{height:75.996000px;}
.h4c{height:77.076000px;}
.h4f{height:77.220000px;}
.h2f{height:79.560000px;}
.h9{height:80.100000px;}
.h31{height:87.300000px;}
.h40{height:94.860000px;}
.h54{height:94.896000px;}
.h44{height:95.940000px;}
.h47{height:96.120000px;}
.h30{height:99.576000px;}
.h60{height:109.260000px;}
.h59{height:109.296000px;}
.h38{height:113.796000px;}
.h3c{height:113.940000px;}
.h45{height:113.976000px;}
.h4a{height:115.056000px;}
.h5c{height:130.896000px;}
.h5e{height:131.076000px;}
.h56{height:132.840000px;}
.h3f{height:132.876000px;}
.h3d{height:133.956000px;}
.h1a{height:151.740000px;}
.h1d{height:151.950000px;}
.h2b{height:168.690000px;}
.h50{height:170.670000px;}
.h53{height:170.820000px;}
.h55{height:170.850000px;}
.h41{height:171.930000px;}
.h2a{height:177.870000px;}
.h29{height:178.950000px;}
.h1b{height:190.650000px;}
.h3a{height:190.830000px;}
.h5d{height:196.410000px;}
.h18{height:228.450000px;}
.h33{height:230.115000px;}
.h13{height:233.850000px;}
.h52{height:266.430000px;}
.h35{height:284.655000px;}
.h10{height:287.130000px;}
.h1e{height:302.970000px;}
.h8{height:307.830000px;}
.h15{height:311.610000px;}
.h51{height:322.635000px;}
.h27{height:385.455000px;}
.h24{height:416.415000px;}
.h39{height:440.175000px;}
.h4d{height:441.075000px;}
.h16{height:477.795000px;}
.h3e{height:477.975000px;}
.h48{height:498.705000px;}
.h43{height:536.865000px;}
.h20{height:892.980000px;}
.h21{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w25{width:39.636000px;}
.w2a{width:73.296000px;}
.w30{width:73.836000px;}
.w31{width:94.680000px;}
.w29{width:94.860000px;}
.w2f{width:95.040000px;}
.w2b{width:95.400000px;}
.wf{width:105.480000px;}
.we{width:105.696000px;}
.w28{width:116.676000px;}
.w18{width:124.416000px;}
.w1a{width:126.720000px;}
.w2c{width:137.160000px;}
.w2e{width:159.150000px;}
.w1f{width:162.390000px;}
.w21{width:166.890000px;}
.w27{width:169.380000px;}
.w1d{width:170.850000px;}
.wc{width:201.270000px;}
.wd{width:201.315000px;}
.wb{width:201.450000px;}
.wa{width:212.250000px;}
.w24{width:222.480000px;}
.w4{width:229.530000px;}
.w5{width:229.755000px;}
.w10{width:283.710000px;}
.w17{width:297.030000px;}
.w23{width:307.695000px;}
.w7{width:310.935000px;}
.w32{width:315.795000px;}
.w2{width:321.195000px;}
.w34{width:328.890000px;}
.w14{width:339.510000px;}
.w13{width:358.275000px;}
.w26{width:360.570000px;}
.w15{width:371.370000px;}
.w2d{width:381.810000px;}
.w33{width:424.470000px;}
.w6{width:479.265000px;}
.w8{width:514.185000px;}
.w1b{width:520.095000px;}
.w3{width:573.585000px;}
.w19{width:647.715000px;}
.w20{width:729.795000px;}
.w16{width:773.205000px;}
.w9{width:839.340000px;}
.w1e{width:892.905000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w22{width:902.985000px;}
.w1c{width:1064.490000px;}
.w11{width:1262.880000px;}
.w12{width:1263.000000px;}
.x0{left:0.000000px;}
.x48{left:4.500000px;}
.x4f{left:5.580000px;}
.x1e{left:7.785000px;}
.x62{left:9.180000px;}
.x4a{left:10.260000px;}
.x65{left:11.520000px;}
.x64{left:12.960000px;}
.x50{left:14.040000px;}
.x59{left:15.120000px;}
.x56{left:16.194000px;}
.x5c{left:18.360000px;}
.x51{left:19.620000px;}
.x49{left:20.880000px;}
.x5e{left:24.870000px;}
.x6b{left:25.920000px;}
.x5a{left:27.360000px;}
.x67{left:29.700000px;}
.x29{left:32.220000px;}
.x25{left:34.410000px;}
.x5b{left:36.000000px;}
.x68{left:37.614000px;}
.x2a{left:39.960000px;}
.x30{left:44.505000px;}
.x70{left:52.200000px;}
.x66{left:53.994000px;}
.x6e{left:59.220000px;}
.x46{left:62.130000px;}
.x6c{left:63.750000px;}
.x2c{left:68.085000px;}
.x2e{left:84.990000px;}
.x24{left:92.370000px;}
.x40{left:98.640000px;}
.x4c{left:101.700000px;}
.x20{left:103.500000px;}
.x2b{left:106.236000px;}
.x57{left:107.634000px;}
.x44{left:113.070000px;}
.x34{left:125.856000px;}
.x3{left:127.656000px;}
.x55{left:138.996000px;}
.x15{left:144.036000px;}
.x31{left:146.736000px;}
.x45{left:149.040000px;}
.x41{left:150.150000px;}
.x10{left:159.690000px;}
.xa{left:162.570000px;}
.x16{left:164.370000px;}
.x1b{left:170.130000px;}
.x11{left:180.750000px;}
.x17{left:185.610000px;}
.x12{left:202.170000px;}
.x1f{left:206.490000px;}
.x18{left:212.610000px;}
.x35{left:217.650000px;}
.x13{left:223.410000px;}
.x19{left:228.270000px;}
.x21{left:235.650000px;}
.x3b{left:239.070000px;}
.x14{left:244.650000px;}
.x22{left:253.110000px;}
.x1a{left:255.270000px;}
.x52{left:266.250000px;}
.x4e{left:273.270000px;}
.x1c{left:280.650000px;}
.x27{left:302.655000px;}
.x1d{left:305.355000px;}
.x4b{left:351.390000px;}
.x6d{left:415.155000px;}
.xf{left:417.135000px;}
.x33{left:420.915000px;}
.xc{left:424.875000px;}
.x71{left:428.655000px;}
.xb{left:433.695000px;}
.xe{left:437.115000px;}
.x1{left:441.255000px;}
.x23{left:442.695000px;}
.x26{left:451.695000px;}
.x2d{left:455.115000px;}
.x42{left:457.635000px;}
.x32{left:474.015000px;}
.x58{left:500.295000px;}
.x4d{left:503.715000px;}
.x28{left:506.460000px;}
.x69{left:521.535000px;}
.x2{left:564.405000px;}
.x9{left:593.025000px;}
.x5{left:618.405000px;}
.x3f{left:623.055000px;}
.x53{left:638.355000px;}
.x2f{left:657.105000px;}
.x5d{left:670.395000px;}
.x6a{left:681.405000px;}
.x8{left:702.870000px;}
.x4{left:709.710000px;}
.xd{left:754.890000px;}
.x37{left:764.250000px;}
.x39{left:765.330000px;}
.x38{left:766.950000px;}
.x7{left:779.370000px;}
.x5f{left:787.785000px;}
.x43{left:797.865000px;}
.x36{left:809.430000px;}
.x6{left:818.250000px;}
.x3c{left:826.665000px;}
.x6f{left:840.345000px;}
.x47{left:872.205000px;}
.x60{left:883.365000px;}
.x3e{left:944.970000px;}
.x54{left:946.770000px;}
.x61{left:957.390000px;}
.x3a{left:994.830000px;}
.x63{left:1053.510000px;}
.x3d{left:1156.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3d{letter-spacing:-2.560000pt;}
.ls23{letter-spacing:-1.920000pt;}
.ls20{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.736000pt;}
.ls1a{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls3a{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.512000pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls50{letter-spacing:-0.406933pt;}
.ls4b{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls43{letter-spacing:-0.224000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls4c{letter-spacing:-0.135467pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls28{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.024320pt;}
.ls4f{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024320pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.097280pt;}
.ls27{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.135680pt;}
.ls3{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.196267pt;}
.ls4{letter-spacing:0.203947pt;}
.ls21{letter-spacing:0.227733pt;}
.ls47{letter-spacing:0.232960pt;}
.ls48{letter-spacing:0.233067pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls4e{letter-spacing:0.271360pt;}
.ls4d{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.392960pt;}
.ls13{letter-spacing:0.448000pt;}
.ls44{letter-spacing:0.504320pt;}
.ls32{letter-spacing:0.512000pt;}
.ls3f{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.768000pt;}
.ls26{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:1.024000pt;}
.ls1e{letter-spacing:1.280000pt;}
.ls2d{letter-spacing:2.560000pt;}
.ls3e{letter-spacing:3.200000pt;}
.ls52{letter-spacing:3.840000pt;}
.ls2f{letter-spacing:5.120000pt;}
.ls51{letter-spacing:5.760000pt;}
.ls39{letter-spacing:8.320000pt;}
.ls35{letter-spacing:8.960000pt;}
.ls34{letter-spacing:9.600000pt;}
.ls11{letter-spacing:9.728000pt;}
.ls22{letter-spacing:10.240000pt;}
.ls40{letter-spacing:10.368000pt;}
.ls46{letter-spacing:10.511360pt;}
.ls53{letter-spacing:10.880000pt;}
.ls45{letter-spacing:11.151360pt;}
.ls42{letter-spacing:11.791360pt;}
.ls2c{letter-spacing:13.440000pt;}
.ls30{letter-spacing:16.000000pt;}
.ls3c{letter-spacing:16.640000pt;}
.lsc{letter-spacing:16.768000pt;}
.ls2e{letter-spacing:22.400000pt;}
.ls38{letter-spacing:25.600000pt;}
.ls2a{letter-spacing:29.088000pt;}
.lsb{letter-spacing:29.546667pt;}
.ls19{letter-spacing:30.208000pt;}
.ls49{letter-spacing:32.271360pt;}
.ls14{letter-spacing:34.048000pt;}
.ls29{letter-spacing:38.528000pt;}
.ls33{letter-spacing:41.088000pt;}
.ls4a{letter-spacing:44.431360pt;}
.ls37{letter-spacing:47.488000pt;}
.ls36{letter-spacing:48.768000pt;}
.ls41{letter-spacing:52.751360pt;}
.ws18{word-spacing:-64.000000pt;}
.ws1c{word-spacing:-58.880000pt;}
.wsf{word-spacing:-16.768000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws1a{word-spacing:-16.576000pt;}
.ws16{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.384000pt;}
.ws15{word-spacing:-16.256000pt;}
.ws12{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.552000pt;}
.ws17{word-spacing:-15.360000pt;}
.ws9{word-spacing:-15.296000pt;}
.ws21{word-spacing:-14.991467pt;}
.ws1d{word-spacing:-14.953067pt;}
.ws22{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws20{word-spacing:-14.584533pt;}
.ws1e{word-spacing:-14.448533pt;}
.ws23{word-spacing:-14.313067pt;}
.ws3{word-spacing:-14.176000pt;}
.ws19{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.534613pt;}
.ws14{word-spacing:-12.836267pt;}
.wsc{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.904000pt;}
.ws1b{word-spacing:-11.776000pt;}
.ws1f{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-12.729173pt;}
._d{margin-left:-10.988587pt;}
._3{margin-left:-9.922133pt;}
._b{margin-left:-8.800000pt;}
._7{margin-left:-7.909333pt;}
._a{margin-left:-6.876160pt;}
._c{margin-left:-5.520213pt;}
._8{margin-left:-4.108373pt;}
._9{margin-left:-2.131413pt;}
._0{margin-left:-1.000960pt;}
._6{width:1.328000pt;}
._1e{width:2.624000pt;}
._5{width:3.840000pt;}
._1d{width:4.906667pt;}
._1a{width:5.824000pt;}
._19{width:7.466667pt;}
._13{width:8.896000pt;}
._4{width:10.240000pt;}
._18{width:11.182080pt;}
._16{width:12.224000pt;}
._e{width:13.376000pt;}
._21{width:15.096747pt;}
._1{width:16.000000pt;}
._14{width:16.890667pt;}
._11{width:17.920000pt;}
._12{width:19.690667pt;}
._15{width:21.013333pt;}
._17{width:22.400000pt;}
._f{width:23.552000pt;}
._10{width:24.515627pt;}
._1c{width:25.408000pt;}
._1b{width:26.387627pt;}
._29{width:27.584000pt;}
._22{width:29.248000pt;}
._23{width:30.202667pt;}
._24{width:31.306667pt;}
._25{width:32.320000pt;}
._26{width:33.472000pt;}
._2c{width:34.688000pt;}
._27{width:35.584000pt;}
._28{width:36.880000pt;}
._2e{width:38.208000pt;}
._2f{width:39.488000pt;}
._35{width:40.503040pt;}
._2d{width:41.512960pt;}
._2a{width:42.880000pt;}
._1f{width:44.544000pt;}
._20{width:45.568000pt;}
._32{width:46.784000pt;}
._33{width:47.808000pt;}
._36{width:48.768000pt;}
._34{width:49.696000pt;}
._2b{width:51.264000pt;}
._38{width:61.560320pt;}
._39{width:62.766080pt;}
._37{width:67.624960pt;}
._3a{width:71.452160pt;}
._30{width:342.176000pt;}
._31{width:357.866667pt;}
.fs4{font-size:2.560000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1ea{bottom:3.200000pt;}
.y1e6{bottom:3.360000pt;}
.yf0{bottom:3.520000pt;}
.y23e{bottom:3.560000pt;}
.y145{bottom:3.674667pt;}
.ye7{bottom:3.680000pt;}
.y106{bottom:4.000000pt;}
.y25b{bottom:4.634667pt;}
.y230{bottom:4.640000pt;}
.y242{bottom:4.680000pt;}
.y1ae{bottom:5.760000pt;}
.y17f{bottom:5.920000pt;}
.y1b2{bottom:6.080000pt;}
.y279{bottom:6.240000pt;}
.y19b{bottom:6.400000pt;}
.y199{bottom:7.040000pt;}
.yaf{bottom:8.960000pt;}
.yb5{bottom:9.120000pt;}
.y80{bottom:9.280000pt;}
.yb3{bottom:9.320000pt;}
.y8c{bottom:12.000000pt;}
.yce{bottom:12.040000pt;}
.yde{bottom:12.800000pt;}
.y159{bottom:14.234667pt;}
.y272{bottom:15.360000pt;}
.y12b{bottom:19.040000pt;}
.y12a{bottom:19.360000pt;}
.y216{bottom:19.400000pt;}
.ydd{bottom:19.520000pt;}
.y127{bottom:19.840000pt;}
.y1f3{bottom:20.000000pt;}
.y1e9{bottom:20.160000pt;}
.y208{bottom:20.314667pt;}
.y16b{bottom:20.320000pt;}
.y261{bottom:20.346667pt;}
.y245{bottom:20.474667pt;}
.yef{bottom:20.480000pt;}
.y1d8{bottom:20.506667pt;}
.ye5{bottom:20.520000pt;}
.y144{bottom:20.634667pt;}
.y193{bottom:20.640000pt;}
.y83{bottom:20.954667pt;}
.y8f{bottom:20.960000pt;}
.y247{bottom:21.434667pt;}
.y189{bottom:21.440000pt;}
.y241{bottom:21.480000pt;}
.y1a1{bottom:21.594667pt;}
.y17b{bottom:21.600000pt;}
.y19f{bottom:23.034667pt;}
.y19d{bottom:23.040000pt;}
.y198{bottom:23.840000pt;}
.y19a{bottom:24.320000pt;}
.y1ad{bottom:25.120000pt;}
.y294{bottom:25.434667pt;}
.y1b1{bottom:25.440000pt;}
.y278{bottom:25.594667pt;}
.y27b{bottom:25.600000pt;}
.y1f5{bottom:28.520000pt;}
.y108{bottom:30.400000pt;}
.ycd{bottom:30.440000pt;}
.y1a6{bottom:30.560000pt;}
.y158{bottom:31.034667pt;}
.y1a3{bottom:31.520000pt;}
.y1e4{bottom:33.146667pt;}
.y23b{bottom:36.160000pt;}
.y215{bottom:36.200000pt;}
.y21f{bottom:36.320000pt;}
.y236{bottom:36.360000pt;}
.y1e8{bottom:36.960000pt;}
.y1f2{bottom:37.000000pt;}
.y207{bottom:37.274667pt;}
.yee{bottom:37.280000pt;}
.y1d7{bottom:37.306667pt;}
.y1ee{bottom:37.320000pt;}
.y259{bottom:37.434667pt;}
.yf9{bottom:37.440000pt;}
.ye4{bottom:37.480000pt;}
.y250{bottom:38.080000pt;}
.y20d{bottom:38.234667pt;}
.y22b{bottom:38.240000pt;}
.y143{bottom:38.394667pt;}
.y8b{bottom:38.400000pt;}
.y200{bottom:38.426667pt;}
.y1c7{bottom:38.440000pt;}
.y192{bottom:38.560000pt;}
.y17a{bottom:39.360000pt;}
.y1a0{bottom:39.514667pt;}
.y1a9{bottom:39.520000pt;}
.y19e{bottom:39.560000pt;}
.y1ac{bottom:44.480000pt;}
.y1b0{bottom:44.800000pt;}
.y277{bottom:44.954667pt;}
.y27d{bottom:44.960000pt;}
.y1ec{bottom:45.320000pt;}
.y157{bottom:47.994667pt;}
.y82{bottom:48.634667pt;}
.y8e{bottom:48.640000pt;}
.y1e3{bottom:49.946667pt;}
.y1a5{bottom:50.120000pt;}
.y2{bottom:51.232000pt;}
.y24d{bottom:52.800000pt;}
.y226{bottom:53.120000pt;}
.y214{bottom:53.160000pt;}
.y21e{bottom:53.280000pt;}
.y1f1{bottom:53.800000pt;}
.y206{bottom:54.074667pt;}
.yed{bottom:54.080000pt;}
.y1fc{bottom:54.106667pt;}
.y1ed{bottom:54.120000pt;}
.y244{bottom:54.234667pt;}
.yf8{bottom:54.240000pt;}
.y1d6{bottom:54.266667pt;}
.ye6{bottom:54.280000pt;}
.y24f{bottom:55.040000pt;}
.y20c{bottom:55.194667pt;}
.y21d{bottom:55.200000pt;}
.y1ff{bottom:55.226667pt;}
.y240{bottom:55.240000pt;}
.y142{bottom:55.354667pt;}
.y251{bottom:55.360000pt;}
.y1c6{bottom:55.400000pt;}
.y1bd{bottom:56.040000pt;}
.y188{bottom:56.160000pt;}
.y191{bottom:56.480000pt;}
.y179{bottom:57.280000pt;}
.y1a8{bottom:57.320000pt;}
.y196{bottom:61.434667pt;}
.y1f4{bottom:62.280000pt;}
.ye8{bottom:62.560000pt;}
.yf4{bottom:62.720000pt;}
.y1ab{bottom:64.000000pt;}
.y276{bottom:64.314667pt;}
.y1af{bottom:64.320000pt;}
.y288{bottom:64.360000pt;}
.y156{bottom:64.794667pt;}
.y182{bottom:65.920000pt;}
.y1e2{bottom:66.906667pt;}
.y1{bottom:69.152000pt;}
.y22e{bottom:69.920000pt;}
.y213{bottom:69.960000pt;}
.y268{bottom:70.080000pt;}
.y225{bottom:70.120000pt;}
.y1f0{bottom:70.760000pt;}
.y243{bottom:70.874667pt;}
.y205{bottom:71.034667pt;}
.yec{bottom:71.040000pt;}
.y1d5{bottom:71.066667pt;}
.y258{bottom:71.074667pt;}
.y219{bottom:71.080000pt;}
.y232{bottom:71.200000pt;}
.y20b{bottom:71.994667pt;}
.y22a{bottom:72.000000pt;}
.y16a{bottom:72.026667pt;}
.y23f{bottom:72.040000pt;}
.y246{bottom:72.154667pt;}
.y21c{bottom:72.160000pt;}
.y25a{bottom:72.194667pt;}
.y1c5{bottom:72.200000pt;}
.y1bc{bottom:73.000000pt;}
.y187{bottom:73.120000pt;}
.y141{bottom:73.314667pt;}
.y178{bottom:74.106667pt;}
.y190{bottom:74.240000pt;}
.y1a7{bottom:74.280000pt;}
.y18b{bottom:75.200000pt;}
.y195{bottom:80.834667pt;}
.y155{bottom:81.634667pt;}
.y12{bottom:83.072000pt;}
.y280{bottom:83.680000pt;}
.y287{bottom:83.720000pt;}
.y28b{bottom:83.840000pt;}
.y275{bottom:83.874667pt;}
.y1e1{bottom:84.826667pt;}
.ye2{bottom:85.120000pt;}
.y181{bottom:85.280000pt;}
.y22d{bottom:86.586667pt;}
.y23a{bottom:86.880000pt;}
.y212{bottom:86.920000pt;}
.y224{bottom:87.080000pt;}
.y1ef{bottom:87.560000pt;}
.yeb{bottom:87.840000pt;}
.yf2{bottom:87.866667pt;}
.y204{bottom:87.874667pt;}
.y218{bottom:87.880000pt;}
.y202{bottom:88.000000pt;}
.yf7{bottom:88.026667pt;}
.y257{bottom:88.034667pt;}
.y228{bottom:88.040000pt;}
.y169{bottom:88.986667pt;}
.y20a{bottom:88.994667pt;}
.y1c4{bottom:89.000000pt;}
.y1bb{bottom:89.800000pt;}
.y186{bottom:91.040000pt;}
.y177{bottom:91.066667pt;}
.y18f{bottom:91.200000pt;}
.y140{bottom:91.234667pt;}
.y154{bottom:98.594667pt;}
.y1e0{bottom:101.786667pt;}
.y27f{bottom:103.040000pt;}
.y290{bottom:103.200000pt;}
.y286{bottom:103.240000pt;}
.y255{bottom:103.680000pt;}
.y267{bottom:103.840000pt;}
.y239{bottom:104.480000pt;}
.y211{bottom:104.520000pt;}
.ye1{bottom:104.640000pt;}
.yea{bottom:104.800000pt;}
.yf6{bottom:104.826667pt;}
.y203{bottom:104.834667pt;}
.y217{bottom:104.840000pt;}
.y168{bottom:105.786667pt;}
.y209{bottom:105.794667pt;}
.y21b{bottom:105.946667pt;}
.y5f{bottom:105.952000pt;}
.y1c3{bottom:105.960000pt;}
.y1ba{bottom:106.600000pt;}
.y176{bottom:107.866667pt;}
.y13f{bottom:108.194667pt;}
.y18e{bottom:108.986667pt;}
.y185{bottom:109.000000pt;}
.y2d0{bottom:109.792000pt;}
.y263{bottom:113.634667pt;}
.yab{bottom:114.752000pt;}
.y153{bottom:115.554667pt;}
.y233{bottom:116.512000pt;}
.yca{bottom:117.792000pt;}
.y81{bottom:118.912000pt;}
.y7d{bottom:119.232000pt;}
.y1df{bottom:119.546667pt;}
.y254{bottom:120.480000pt;}
.y266{bottom:120.640000pt;}
.yd9{bottom:120.992000pt;}
.y238{bottom:121.280000pt;}
.y223{bottom:121.480000pt;}
.ye9{bottom:121.600000pt;}
.y1d4{bottom:121.626667pt;}
.y262{bottom:121.632000pt;}
.y26d{bottom:121.640000pt;}
.y26a{bottom:121.760000pt;}
.yf5{bottom:121.786667pt;}
.y227{bottom:121.800000pt;}
.y284{bottom:122.426667pt;}
.y28f{bottom:122.560000pt;}
.y167{bottom:122.586667pt;}
.y1fe{bottom:122.746667pt;}
.y194{bottom:122.752000pt;}
.y1c2{bottom:122.760000pt;}
.y274{bottom:123.072000pt;}
.y1f6{bottom:123.552000pt;}
.y1b9{bottom:123.560000pt;}
.ye0{bottom:124.000000pt;}
.y289{bottom:124.192000pt;}
.y175{bottom:124.826667pt;}
.y293{bottom:124.832000pt;}
.y18d{bottom:125.946667pt;}
.y13e{bottom:126.114667pt;}
.y184{bottom:126.920000pt;}
.y2c{bottom:130.112000pt;}
.y12c{bottom:130.752000pt;}
.y2b2{bottom:132.192000pt;}
.y24a{bottom:133.312000pt;}
.y152{bottom:133.314667pt;}
.y5e{bottom:133.466667pt;}
.y220{bottom:136.026667pt;}
.y1de{bottom:136.346667pt;}
.y265{bottom:137.280000pt;}
.y253{bottom:137.466667pt;}
.y1fb{bottom:138.266667pt;}
.y256{bottom:138.426667pt;}
.y269{bottom:138.560000pt;}
.y1d3{bottom:138.586667pt;}
.y26c{bottom:138.600000pt;}
.y166{bottom:139.546667pt;}
.y1c1{bottom:139.720000pt;}
.y1b8{bottom:140.360000pt;}
.y283{bottom:141.786667pt;}
.y28e{bottom:141.920000pt;}
.y174{bottom:142.746667pt;}
.yaa{bottom:143.386667pt;}
.y18c{bottom:143.866667pt;}
.y13d{bottom:144.034667pt;}
.y285{bottom:144.186667pt;}
.y183{bottom:144.840000pt;}
.yc9{bottom:145.306667pt;}
.ya7{bottom:145.786667pt;}
.y7c{bottom:146.906667pt;}
.yd8{bottom:148.666667pt;}
.y151{bottom:150.274667pt;}
.y1dd{bottom:153.306667pt;}
.y11a{bottom:153.626667pt;}
.y104{bottom:155.066667pt;}
.y1d2{bottom:155.386667pt;}
.y1fa{bottom:156.026667pt;}
.y1fd{bottom:156.346667pt;}
.y1c0{bottom:156.520000pt;}
.y1b7{bottom:157.320000pt;}
.y165{bottom:157.466667pt;}
.y173{bottom:159.546667pt;}
.y2b1{bottom:159.706667pt;}
.y5d{bottom:161.146667pt;}
.y28d{bottom:161.280000pt;}
.y282{bottom:161.306667pt;}
.y13c{bottom:161.794667pt;}
.y2b{bottom:162.106667pt;}
.y15c{bottom:164.666667pt;}
.y2ce{bottom:164.986667pt;}
.y150{bottom:167.074667pt;}
.y1b4{bottom:167.386667pt;}
.y1dc{bottom:170.266667pt;}
.y1ce{bottom:171.866667pt;}
.ya9{bottom:172.186667pt;}
.yc8{bottom:172.826667pt;}
.ya6{bottom:173.306667pt;}
.y1bf{bottom:173.480000pt;}
.y1b6{bottom:174.120000pt;}
.y164{bottom:174.266667pt;}
.y7b{bottom:174.426667pt;}
.yd7{bottom:176.186667pt;}
.y172{bottom:176.346667pt;}
.y19c{bottom:177.146667pt;}
.y13b{bottom:178.754667pt;}
.y1f8{bottom:182.274667pt;}
.y103{bottom:182.586667pt;}
.y15b{bottom:184.026667pt;}
.y14f{bottom:184.034667pt;}
.y2b0{bottom:187.386667pt;}
.y1db{bottom:188.066667pt;}
.y22f{bottom:188.346667pt;}
.y5c{bottom:188.666667pt;}
.y1cd{bottom:188.866667pt;}
.y1d1{bottom:189.186667pt;}
.y7f{bottom:190.746667pt;}
.y1b5{bottom:190.920000pt;}
.y163{bottom:191.226667pt;}
.y24b{bottom:191.234667pt;}
.y1be{bottom:191.240000pt;}
.y2cd{bottom:192.666667pt;}
.y171{bottom:193.306667pt;}
.y2a{bottom:194.106667pt;}
.y13a{bottom:196.674667pt;}
.y1f7{bottom:199.234667pt;}
.ya8{bottom:199.866667pt;}
.yc7{bottom:200.506667pt;}
.yc{bottom:200.826667pt;}
.ya5{bottom:200.986667pt;}
.y10b{bottom:201.786667pt;}
.y14e{bottom:201.794667pt;}
.y7a{bottom:202.106667pt;}
.y23d{bottom:202.586667pt;}
.y292{bottom:203.106667pt;}
.yd6{bottom:203.866667pt;}
.y1da{bottom:205.026667pt;}
.y1cc{bottom:205.666667pt;}
.y1d0{bottom:205.986667pt;}
.y264{bottom:206.626667pt;}
.y20f{bottom:207.546667pt;}
.y162{bottom:209.146667pt;}
.y170{bottom:210.106667pt;}
.y102{bottom:210.266667pt;}
.y139{bottom:214.594667pt;}
.y2af{bottom:214.906667pt;}
.y5b{bottom:216.346667pt;}
.y234{bottom:216.834667pt;}
.y14d{bottom:218.754667pt;}
.y2cc{bottom:220.186667pt;}
.y273{bottom:220.866667pt;}
.y1d9{bottom:221.986667pt;}
.y1cb{bottom:222.626667pt;}
.y260{bottom:222.786667pt;}
.y1cf{bottom:222.946667pt;}
.y29{bottom:226.106667pt;}
.y20e{bottom:226.466667pt;}
.y16f{bottom:227.066667pt;}
.yc6{bottom:228.026667pt;}
.ya4{bottom:228.506667pt;}
.y79{bottom:229.626667pt;}
.yd5{bottom:231.386667pt;}
.y197{bottom:231.586667pt;}
.y138{bottom:232.514667pt;}
.y221{bottom:233.800000pt;}
.y14c{bottom:235.554667pt;}
.y252{bottom:236.386667pt;}
.y101{bottom:237.786667pt;}
.y1ca{bottom:239.426667pt;}
.y25f{bottom:239.746667pt;}
.y2ae{bottom:242.586667pt;}
.y201{bottom:243.266667pt;}
.y5a{bottom:243.866667pt;}
.y161{bottom:243.906667pt;}
.y2cb{bottom:247.866667pt;}
.y137{bottom:250.301333pt;}
.y14b{bottom:252.541333pt;}
.yc5{bottom:255.706667pt;}
.ya3{bottom:256.186667pt;}
.y25e{bottom:256.546667pt;}
.y78{bottom:257.306667pt;}
.y28{bottom:258.106667pt;}
.yd4{bottom:259.066667pt;}
.y160{bottom:260.706667pt;}
.y281{bottom:261.346667pt;}
.y291{bottom:261.986667pt;}
.y100{bottom:265.466667pt;}
.y136{bottom:267.261333pt;}
.yb{bottom:268.346667pt;}
.y14a{bottom:269.501333pt;}
.y2ad{bottom:270.106667pt;}
.y59{bottom:271.546667pt;}
.y18a{bottom:273.346667pt;}
.y25d{bottom:273.506667pt;}
.y42{bottom:275.386667pt;}
.y15f{bottom:277.666667pt;}
.y271{bottom:279.746667pt;}
.yc4{bottom:283.226667pt;}
.ya2{bottom:283.706667pt;}
.y77{bottom:284.826667pt;}
.y135{bottom:285.181333pt;}
.y130{bottom:285.341333pt;}
.ycc{bottom:285.786667pt;}
.yd3{bottom:286.586667pt;}
.y149{bottom:287.261333pt;}
.y27{bottom:289.986667pt;}
.y22c{bottom:290.306667pt;}
.yff{bottom:293.026667pt;}
.y17c{bottom:293.346667pt;}
.y15e{bottom:294.466667pt;}
.y16e{bottom:294.626667pt;}
.y1e7{bottom:296.706667pt;}
.y2ac{bottom:297.826667pt;}
.y58{bottom:299.106667pt;}
.y134{bottom:303.101333pt;}
.y2ca{bottom:303.106667pt;}
.y148{bottom:304.221333pt;}
.y12f{bottom:304.701333pt;}
.y23c{bottom:305.506667pt;}
.y41{bottom:307.426667pt;}
.y15a{bottom:308.706667pt;}
.yc3{bottom:310.946667pt;}
.ya1{bottom:311.426667pt;}
.y88{bottom:312.226667pt;}
.y16d{bottom:312.386667pt;}
.y76{bottom:312.546667pt;}
.yd2{bottom:314.306667pt;}
.y133{bottom:320.061333pt;}
.yfe{bottom:320.706667pt;}
.y147{bottom:321.981333pt;}
.y26{bottom:321.986667pt;}
.y2ab{bottom:325.346667pt;}
.y57{bottom:326.786667pt;}
.y15d{bottom:328.386667pt;}
.y16c{bottom:329.346667pt;}
.y2c9{bottom:330.626667pt;}
.ya{bottom:335.746667pt;}
.y12e{bottom:337.181333pt;}
.y132{bottom:337.981333pt;}
.yc2{bottom:338.466667pt;}
.y270{bottom:338.786667pt;}
.y146{bottom:338.941333pt;}
.ya0{bottom:338.946667pt;}
.ycb{bottom:339.266667pt;}
.y40{bottom:339.426667pt;}
.y87{bottom:339.746667pt;}
.y75{bottom:340.066667pt;}
.yd1{bottom:341.826667pt;}
.y1f9{bottom:345.186667pt;}
.y1e5{bottom:347.906667pt;}
.yfd{bottom:348.226667pt;}
.y11d{bottom:352.546667pt;}
.y2aa{bottom:353.026667pt;}
.y25{bottom:353.986667pt;}
.y131{bottom:355.901333pt;}
.y12d{bottom:356.541333pt;}
.yd0{bottom:357.026667pt;}
.y2c8{bottom:358.146667pt;}
.y25c{bottom:364.546667pt;}
.y26f{bottom:365.346667pt;}
.y1c9{bottom:365.506667pt;}
.yc1{bottom:366.146667pt;}
.y9f{bottom:366.626667pt;}
.y86{bottom:367.426667pt;}
.y74{bottom:367.746667pt;}
.y3f{bottom:371.426667pt;}
.y237{bottom:373.693333pt;}
.yfc{bottom:375.746667pt;}
.y28c{bottom:378.973333pt;}
.y2a9{bottom:380.546667pt;}
.y26e{bottom:380.733333pt;}
.y56{bottom:381.666667pt;}
.y2c7{bottom:385.826667pt;}
.y24{bottom:385.986667pt;}
.y24e{bottom:388.733333pt;}
.ycf{bottom:392.226667pt;}
.y229{bottom:392.253333pt;}
.y1b3{bottom:392.573333pt;}
.y11c{bottom:392.706667pt;}
.yc0{bottom:393.666667pt;}
.y9e{bottom:394.146667pt;}
.y73{bottom:395.266667pt;}
.y3e{bottom:403.266667pt;}
.yfb{bottom:403.426667pt;}
.y2a8{bottom:408.226667pt;}
.y55{bottom:409.506667pt;}
.ydb{bottom:411.426667pt;}
.y1aa{bottom:413.213333pt;}
.y2c6{bottom:413.346667pt;}
.y9{bottom:417.346667pt;}
.y23{bottom:417.826667pt;}
.yfa{bottom:418.626667pt;}
.ybf{bottom:421.346667pt;}
.y9d{bottom:421.826667pt;}
.y72{bottom:422.946667pt;}
.y180{bottom:432.253333pt;}
.y118{bottom:433.666667pt;}
.y3d{bottom:435.266667pt;}
.y2a7{bottom:435.746667pt;}
.y27e{bottom:436.573333pt;}
.y54{bottom:437.186667pt;}
.y2c5{bottom:441.026667pt;}
.y21a{bottom:448.253333pt;}
.ybe{bottom:448.866667pt;}
.y9c{bottom:449.346667pt;}
.y22{bottom:449.826667pt;}
.y71{bottom:450.466667pt;}
.yda{bottom:453.666667pt;}
.yf1{bottom:454.306667pt;}
.y24c{bottom:458.013333pt;}
.y2a6{bottom:463.426667pt;}
.y8{bottom:463.746667pt;}
.y53{bottom:464.706667pt;}
.y3c{bottom:467.266667pt;}
.y2d1{bottom:468.226667pt;}
.y2c4{bottom:468.546667pt;}
.ybd{bottom:476.546667pt;}
.y9b{bottom:476.866667pt;}
.y70{bottom:478.146667pt;}
.y222{bottom:478.173333pt;}
.y11f{bottom:478.626667pt;}
.y21{bottom:481.826667pt;}
.y2a5{bottom:490.946667pt;}
.y1a4{bottom:491.453333pt;}
.y52{bottom:492.386667pt;}
.y2c3{bottom:496.226667pt;}
.y3b{bottom:499.266667pt;}
.y26b{bottom:499.453333pt;}
.y129{bottom:501.533333pt;}
.ybc{bottom:504.066667pt;}
.y9a{bottom:504.546667pt;}
.y10c{bottom:505.346667pt;}
.y6f{bottom:505.666667pt;}
.y235{bottom:509.213333pt;}
.y11e{bottom:510.306667pt;}
.y20{bottom:513.826667pt;}
.y1eb{bottom:515.613333pt;}
.y2a4{bottom:518.626667pt;}
.y51{bottom:519.906667pt;}
.y2c2{bottom:523.746667pt;}
.y7{bottom:526.306667pt;}
.y119{bottom:529.693333pt;}
.y3a{bottom:531.133333pt;}
.y249{bottom:531.453333pt;}
.ybb{bottom:531.773333pt;}
.y99{bottom:532.093333pt;}
.y210{bottom:533.213333pt;}
.y6e{bottom:533.373333pt;}
.y128{bottom:538.973333pt;}
.y1f{bottom:545.853333pt;}
.y2a3{bottom:546.173333pt;}
.y50{bottom:547.613333pt;}
.y2cf{bottom:551.133333pt;}
.y2c1{bottom:551.453333pt;}
.y27c{bottom:553.573333pt;}
.y126{bottom:554.053333pt;}
.y28a{bottom:554.213333pt;}
.yba{bottom:559.293333pt;}
.y98{bottom:559.773333pt;}
.y6d{bottom:560.893333pt;}
.y39{bottom:563.133333pt;}
.y231{bottom:565.893333pt;}
.y6{bottom:572.573333pt;}
.y2a2{bottom:573.853333pt;}
.y4f{bottom:575.133333pt;}
.y1e{bottom:577.693333pt;}
.y2c0{bottom:578.973333pt;}
.y1a2{bottom:580.613333pt;}
.y117{bottom:583.933333pt;}
.y97{bottom:587.293333pt;}
.y6c{bottom:588.573333pt;}
.y125{bottom:589.253333pt;}
.yf3{bottom:590.013333pt;}
.y17e{bottom:591.973333pt;}
.y38{bottom:595.133333pt;}
.y11b{bottom:597.693333pt;}
.yb9{bottom:598.493333pt;}
.y248{bottom:600.613333pt;}
.y2a1{bottom:601.373333pt;}
.y4e{bottom:602.813333pt;}
.y2bf{bottom:606.653333pt;}
.y1d{bottom:609.693333pt;}
.y116{bottom:611.453333pt;}
.y27a{bottom:612.453333pt;}
.y96{bottom:614.973333pt;}
.y6b{bottom:616.093333pt;}
.ydf{bottom:624.413333pt;}
.y37{bottom:627.133333pt;}
.y2a0{bottom:629.053333pt;}
.y4d{bottom:630.333333pt;}
.yb8{bottom:633.693333pt;}
.y2be{bottom:634.173333pt;}
.yb7{bottom:634.973333pt;}
.y124{bottom:637.093333pt;}
.y17d{bottom:637.413333pt;}
.y107{bottom:638.333333pt;}
.y1c8{bottom:638.693333pt;}
.y115{bottom:639.133333pt;}
.y1c{bottom:641.693333pt;}
.y95{bottom:642.493333pt;}
.y6a{bottom:643.613333pt;}
.y29f{bottom:656.573333pt;}
.y4c{bottom:658.013333pt;}
.y36{bottom:659.133333pt;}
.y2bd{bottom:661.853333pt;}
.yb6{bottom:666.333333pt;}
.y114{bottom:666.653333pt;}
.y5{bottom:666.813333pt;}
.y94{bottom:670.173333pt;}
.y10a{bottom:670.973333pt;}
.y69{bottom:671.293333pt;}
.y123{bottom:671.493333pt;}
.y1b{bottom:673.693333pt;}
.y29e{bottom:684.253333pt;}
.y4b{bottom:685.533333pt;}
.y2bc{bottom:689.373333pt;}
.y35{bottom:690.973333pt;}
.y105{bottom:691.773333pt;}
.y113{bottom:694.333333pt;}
.y122{bottom:694.373333pt;}
.y93{bottom:697.693333pt;}
.y109{bottom:698.493333pt;}
.y68{bottom:698.813333pt;}
.y4{bottom:701.213333pt;}
.y1a{bottom:705.533333pt;}
.y29d{bottom:711.773333pt;}
.y4a{bottom:713.213333pt;}
.y121{bottom:713.760000pt;}
.y2bb{bottom:717.053333pt;}
.y34{bottom:722.973333pt;}
.y92{bottom:725.373333pt;}
.y67{bottom:726.493333pt;}
.yb4{bottom:729.213333pt;}
.y3{bottom:731.933333pt;}
.y120{bottom:733.280000pt;}
.y19{bottom:737.533333pt;}
.y29c{bottom:739.453333pt;}
.y49{bottom:740.733333pt;}
.y2ba{bottom:744.573333pt;}
.y112{bottom:750.653333pt;}
.y91{bottom:752.893333pt;}
.y66{bottom:754.013333pt;}
.y33{bottom:754.973333pt;}
.ye3{bottom:759.933333pt;}
.yb2{bottom:760.573333pt;}
.y29b{bottom:767.013333pt;}
.y48{bottom:768.453333pt;}
.y18{bottom:769.573333pt;}
.y2b9{bottom:772.293333pt;}
.y111{bottom:779.493333pt;}
.y90{bottom:780.613333pt;}
.y65{bottom:781.733333pt;}
.y32{bottom:787.013333pt;}
.yb1{bottom:791.973333pt;}
.y29a{bottom:794.693333pt;}
.y8d{bottom:795.813333pt;}
.y47{bottom:795.973333pt;}
.y2b8{bottom:799.813333pt;}
.y17{bottom:801.573333pt;}
.y110{bottom:807.013333pt;}
.y64{bottom:809.253333pt;}
.y31{bottom:818.853333pt;}
.y299{bottom:822.213333pt;}
.yb0{bottom:823.333333pt;}
.y46{bottom:823.653333pt;}
.y2b7{bottom:827.493333pt;}
.ydc{bottom:828.133333pt;}
.y16{bottom:833.573333pt;}
.y10f{bottom:835.813333pt;}
.y85{bottom:836.613333pt;}
.y63{bottom:836.933333pt;}
.y298{bottom:849.893333pt;}
.y30{bottom:850.853333pt;}
.y45{bottom:851.173333pt;}
.y2b6{bottom:855.013333pt;}
.yae{bottom:857.413333pt;}
.y10e{bottom:863.333333pt;}
.y7e{bottom:864.133333pt;}
.y62{bottom:864.453333pt;}
.y15{bottom:866.533333pt;}
.y8a{bottom:867.653333pt;}
.y297{bottom:877.093333pt;}
.y44{bottom:878.853333pt;}
.y2b5{bottom:882.693333pt;}
.y2f{bottom:882.853333pt;}
.y61{bottom:892.133333pt;}
.y14{bottom:893.733333pt;}
.y296{bottom:904.773333pt;}
.y43{bottom:906.053333pt;}
.y2b4{bottom:910.213333pt;}
.y2e{bottom:914.853333pt;}
.yad{bottom:918.533333pt;}
.y10d{bottom:919.333333pt;}
.y60{bottom:919.653333pt;}
.y295{bottom:934.693333pt;}
.y2b3{bottom:937.893333pt;}
.yac{bottom:946.213333pt;}
.y84{bottom:947.013333pt;}
.y13{bottom:947.333333pt;}
.y2d{bottom:947.973333pt;}
.y89{bottom:948.613333pt;}
.y11{bottom:980.933333pt;}
.y10{bottom:1003.840000pt;}
.yf{bottom:1023.200000pt;}
.ye{bottom:1042.560000pt;}
.yd{bottom:1062.080000pt;}
.h11{height:2.512500pt;}
.h36{height:16.960000pt;}
.h5f{height:19.360000pt;}
.h28{height:19.520000pt;}
.hf{height:28.960000pt;}
.hd{height:29.120000pt;}
.he{height:29.152000pt;}
.h22{height:32.640000pt;}
.h17{height:32.800000pt;}
.h1c{height:33.760000pt;}
.h12{height:34.400000pt;}
.h57{height:38.720000pt;}
.h5a{height:38.880000pt;}
.h2c{height:41.120000pt;}
.h2{height:44.648750pt;}
.h34{height:47.085938pt;}
.h32{height:48.375000pt;}
.h37{height:50.560000pt;}
.h49{height:50.592000pt;}
.h4b{height:50.720000pt;}
.h46{height:51.680000pt;}
.h61{height:52.357500pt;}
.h3b{height:52.785000pt;}
.h1f{height:52.800000pt;}
.h14{height:52.832000pt;}
.h2e{height:53.760000pt;}
.h2d{height:53.792000pt;}
.hc{height:57.375000pt;}
.h25{height:57.758750pt;}
.h4{height:57.787500pt;}
.h58{height:58.080000pt;}
.h5b{height:58.240000pt;}
.h23{height:59.340000pt;}
.h26{height:60.519362pt;}
.hb{height:60.800000pt;}
.ha{height:62.781250pt;}
.h3{height:62.812500pt;}
.h5{height:64.500000pt;}
.h7{height:65.781915pt;}
.h6{height:66.625000pt;}
.h4e{height:67.360000pt;}
.h42{height:67.520000pt;}
.h19{height:67.552000pt;}
.h4c{height:68.512000pt;}
.h4f{height:68.640000pt;}
.h2f{height:70.720000pt;}
.h9{height:71.200000pt;}
.h31{height:77.600000pt;}
.h40{height:84.320000pt;}
.h54{height:84.352000pt;}
.h44{height:85.280000pt;}
.h47{height:85.440000pt;}
.h30{height:88.512000pt;}
.h60{height:97.120000pt;}
.h59{height:97.152000pt;}
.h38{height:101.152000pt;}
.h3c{height:101.280000pt;}
.h45{height:101.312000pt;}
.h4a{height:102.272000pt;}
.h5c{height:116.352000pt;}
.h5e{height:116.512000pt;}
.h56{height:118.080000pt;}
.h3f{height:118.112000pt;}
.h3d{height:119.072000pt;}
.h1a{height:134.880000pt;}
.h1d{height:135.066667pt;}
.h2b{height:149.946667pt;}
.h50{height:151.706667pt;}
.h53{height:151.840000pt;}
.h55{height:151.866667pt;}
.h41{height:152.826667pt;}
.h2a{height:158.106667pt;}
.h29{height:159.066667pt;}
.h1b{height:169.466667pt;}
.h3a{height:169.626667pt;}
.h5d{height:174.586667pt;}
.h18{height:203.066667pt;}
.h33{height:204.546667pt;}
.h13{height:207.866667pt;}
.h52{height:236.826667pt;}
.h35{height:253.026667pt;}
.h10{height:255.226667pt;}
.h1e{height:269.306667pt;}
.h8{height:273.626667pt;}
.h15{height:276.986667pt;}
.h51{height:286.786667pt;}
.h27{height:342.626667pt;}
.h24{height:370.146667pt;}
.h39{height:391.266667pt;}
.h4d{height:392.066667pt;}
.h16{height:424.706667pt;}
.h3e{height:424.866667pt;}
.h48{height:443.293333pt;}
.h43{height:477.213333pt;}
.h20{height:793.760000pt;}
.h21{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w25{width:35.232000pt;}
.w2a{width:65.152000pt;}
.w30{width:65.632000pt;}
.w31{width:84.160000pt;}
.w29{width:84.320000pt;}
.w2f{width:84.480000pt;}
.w2b{width:84.800000pt;}
.wf{width:93.760000pt;}
.we{width:93.952000pt;}
.w28{width:103.712000pt;}
.w18{width:110.592000pt;}
.w1a{width:112.640000pt;}
.w2c{width:121.920000pt;}
.w2e{width:141.466667pt;}
.w1f{width:144.346667pt;}
.w21{width:148.346667pt;}
.w27{width:150.560000pt;}
.w1d{width:151.866667pt;}
.wc{width:178.906667pt;}
.wd{width:178.946667pt;}
.wb{width:179.066667pt;}
.wa{width:188.666667pt;}
.w24{width:197.760000pt;}
.w4{width:204.026667pt;}
.w5{width:204.226667pt;}
.w10{width:252.186667pt;}
.w17{width:264.026667pt;}
.w23{width:273.506667pt;}
.w7{width:276.386667pt;}
.w32{width:280.706667pt;}
.w2{width:285.506667pt;}
.w34{width:292.346667pt;}
.w14{width:301.786667pt;}
.w13{width:318.466667pt;}
.w26{width:320.506667pt;}
.w15{width:330.106667pt;}
.w2d{width:339.386667pt;}
.w33{width:377.306667pt;}
.w6{width:426.013333pt;}
.w8{width:457.053333pt;}
.w1b{width:462.306667pt;}
.w3{width:509.853333pt;}
.w19{width:575.746667pt;}
.w20{width:648.706667pt;}
.w16{width:687.293333pt;}
.w9{width:746.080000pt;}
.w1e{width:793.693333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w22{width:802.653333pt;}
.w1c{width:946.213333pt;}
.w11{width:1122.560000pt;}
.w12{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x48{left:4.000000pt;}
.x4f{left:4.960000pt;}
.x1e{left:6.920000pt;}
.x62{left:8.160000pt;}
.x4a{left:9.120000pt;}
.x65{left:10.240000pt;}
.x64{left:11.520000pt;}
.x50{left:12.480000pt;}
.x59{left:13.440000pt;}
.x56{left:14.394667pt;}
.x5c{left:16.320000pt;}
.x51{left:17.440000pt;}
.x49{left:18.560000pt;}
.x5e{left:22.106667pt;}
.x6b{left:23.040000pt;}
.x5a{left:24.320000pt;}
.x67{left:26.400000pt;}
.x29{left:28.640000pt;}
.x25{left:30.586667pt;}
.x5b{left:32.000000pt;}
.x68{left:33.434667pt;}
.x2a{left:35.520000pt;}
.x30{left:39.560000pt;}
.x70{left:46.400000pt;}
.x66{left:47.994667pt;}
.x6e{left:52.640000pt;}
.x46{left:55.226667pt;}
.x6c{left:56.666667pt;}
.x2c{left:60.520000pt;}
.x2e{left:75.546667pt;}
.x24{left:82.106667pt;}
.x40{left:87.680000pt;}
.x4c{left:90.400000pt;}
.x20{left:92.000000pt;}
.x2b{left:94.432000pt;}
.x57{left:95.674667pt;}
.x44{left:100.506667pt;}
.x34{left:111.872000pt;}
.x3{left:113.472000pt;}
.x55{left:123.552000pt;}
.x15{left:128.032000pt;}
.x31{left:130.432000pt;}
.x45{left:132.480000pt;}
.x41{left:133.466667pt;}
.x10{left:141.946667pt;}
.xa{left:144.506667pt;}
.x16{left:146.106667pt;}
.x1b{left:151.226667pt;}
.x11{left:160.666667pt;}
.x17{left:164.986667pt;}
.x12{left:179.706667pt;}
.x1f{left:183.546667pt;}
.x18{left:188.986667pt;}
.x35{left:193.466667pt;}
.x13{left:198.586667pt;}
.x19{left:202.906667pt;}
.x21{left:209.466667pt;}
.x3b{left:212.506667pt;}
.x14{left:217.466667pt;}
.x22{left:224.986667pt;}
.x1a{left:226.906667pt;}
.x52{left:236.666667pt;}
.x4e{left:242.906667pt;}
.x1c{left:249.466667pt;}
.x27{left:269.026667pt;}
.x1d{left:271.426667pt;}
.x4b{left:312.346667pt;}
.x6d{left:369.026667pt;}
.xf{left:370.786667pt;}
.x33{left:374.146667pt;}
.xc{left:377.666667pt;}
.x71{left:381.026667pt;}
.xb{left:385.506667pt;}
.xe{left:388.546667pt;}
.x1{left:392.226667pt;}
.x23{left:393.506667pt;}
.x26{left:401.506667pt;}
.x2d{left:404.546667pt;}
.x42{left:406.786667pt;}
.x32{left:421.346667pt;}
.x58{left:444.706667pt;}
.x4d{left:447.746667pt;}
.x28{left:450.186667pt;}
.x69{left:463.586667pt;}
.x2{left:501.693333pt;}
.x9{left:527.133333pt;}
.x5{left:549.693333pt;}
.x3f{left:553.826667pt;}
.x53{left:567.426667pt;}
.x2f{left:584.093333pt;}
.x5d{left:595.906667pt;}
.x6a{left:605.693333pt;}
.x8{left:624.773333pt;}
.x4{left:630.853333pt;}
.xd{left:671.013333pt;}
.x37{left:679.333333pt;}
.x39{left:680.293333pt;}
.x38{left:681.733333pt;}
.x7{left:692.773333pt;}
.x5f{left:700.253333pt;}
.x43{left:709.213333pt;}
.x36{left:719.493333pt;}
.x6{left:727.333333pt;}
.x3c{left:734.813333pt;}
.x6f{left:746.973333pt;}
.x47{left:775.293333pt;}
.x60{left:785.213333pt;}
.x3e{left:839.973333pt;}
.x54{left:841.573333pt;}
.x61{left:851.013333pt;}
.x3a{left:884.293333pt;}
.x63{left:936.453333pt;}
.x3d{left:1028.133333pt;}
}




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