
    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_d82e217f8ab5ee3174bbb6e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_8840f41c3183357e7166765c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.995000;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_e10a36834f59d3111a032de7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.138672;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_33c8154c21887b21a5a766b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.742000;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_1333f0092045cd80936d024a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_03ffdb01762f49940df1dcf0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.724609;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_e2df40aa8d23b664371ab62b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.741699;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_4dd05e77adf3e1d5e77b7c0a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979000;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_7acb7112b1d73df448dc6f33.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_304e3afe0ece8c21c6a71ee5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.150000;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_f91be6db20a56536f93a3d0a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937000;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_a07bbf2b99280f7a0fed1acd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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_8632793d8d84e86602573462.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.809082;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_9feb9cc31593e9f54f6f3c22.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_4cff27e7079e990d03ae827a.woff2')format("woff");}.fff{font-family:fff;line-height:1.181152;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_f28c7f236fc9acd23c6dbce4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_284fe1e2a9443e1c2f9d7a24.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_37cabfd267647af7cc588a89.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a06ccacedfaa40d19a365834.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_78abe88c593bcff8285742de.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_661c4d4e5a2f86aa4e0051e5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.758790px;}
.ls14{letter-spacing:-7.326000px;}
.ls16{letter-spacing:-6.072000px;}
.ls3{letter-spacing:-5.335200px;}
.ls1d{letter-spacing:-4.890600px;}
.ls12{letter-spacing:-4.464000px;}
.lsd{letter-spacing:-3.260400px;}
.ls2{letter-spacing:-0.014400px;}
.ls5{letter-spacing:-0.013200px;}
.ls17{letter-spacing:-0.012000px;}
.ls22{letter-spacing:-0.004818px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.006998px;}
.ls19{letter-spacing:0.008400px;}
.ls8{letter-spacing:0.008800px;}
.ls1c{letter-spacing:0.009600px;}
.ls10{letter-spacing:0.012000px;}
.ls21{letter-spacing:0.012044px;}
.ls18{letter-spacing:0.012600px;}
.ls4{letter-spacing:0.013200px;}
.ls1{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.021600px;}
.lsf{letter-spacing:0.028800px;}
.ls7{letter-spacing:0.072600px;}
.ls1a{letter-spacing:0.132000px;}
.ls15{letter-spacing:0.411600px;}
.ls1f{letter-spacing:1.347385px;}
.lse{letter-spacing:1.504800px;}
.ls20{letter-spacing:2.548508px;}
.ls1e{letter-spacing:3.270954px;}
.ls13{letter-spacing:3.491400px;}
.lsc{letter-spacing:4.735800px;}
.ls11{letter-spacing:6.726000px;}
.lsb{letter-spacing:16.385400px;}
.ls1b{letter-spacing:18.357600px;}
.lsa{letter-spacing:20.183280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-20.030400px;}
.wsd{word-spacing:-20.016000px;}
.ws1{word-spacing:-20.001600px;}
.ws7{word-spacing:-18.361200px;}
.ws6{word-spacing:-18.348000px;}
.ws4{word-spacing:-18.334800px;}
.wsc{word-spacing:-16.692000px;}
.wsa{word-spacing:-16.680000px;}
.ws2{word-spacing:-14.680800px;}
.ws15{word-spacing:-13.683386px;}
.ws8{word-spacing:-12.240801px;}
.wsf{word-spacing:-11.684400px;}
.ws17{word-spacing:-11.324181px;}
.ws18{word-spacing:-10.380500px;}
.ws16{word-spacing:-9.908659px;}
.ws9{word-spacing:-8.971601px;}
.ws19{word-spacing:-8.021295px;}
.ws12{word-spacing:-2.140800px;}
.ws5{word-spacing:-0.066000px;}
.wsb{word-spacing:-0.060000px;}
.ws14{word-spacing:-0.034517px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:12.590400px;}
.ws11{word-spacing:27.387600px;}
.ws10{word-spacing:30.938400px;}
.wse{word-spacing:34.568400px;}
._1f{margin-left:-18.103800px;}
._4{margin-left:-9.367800px;}
._2{margin-left:-7.316400px;}
._0{margin-left:-6.258000px;}
._a{margin-left:-4.491600px;}
._3{margin-left:-2.662800px;}
._1{margin-left:-1.234800px;}
._8{width:1.443000px;}
._f{width:2.461020px;}
._18{width:4.336200px;}
._d{width:5.348400px;}
._11{width:7.279800px;}
._19{width:9.075000px;}
._14{width:10.269600px;}
._1b{width:11.880000px;}
._12{width:13.041600px;}
._17{width:14.454000px;}
._13{width:16.104000px;}
._1a{width:17.302800px;}
._23{width:18.771600px;}
._10{width:20.156400px;}
._15{width:21.409800px;}
._16{width:22.578600px;}
._21{width:24.466200px;}
._1d{width:25.806000px;}
._1c{width:27.027000px;}
._24{width:28.728600px;}
._9{width:29.905800px;}
._20{width:30.973800px;}
._b{width:32.090400px;}
._1e{width:33.645600px;}
._22{width:37.453200px;}
._c{width:49.348800px;}
._e{width:53.467200px;}
._7{width:69.379200px;}
._5{width:160.956000px;}
._6{width:197.652000px;}
.fc8{color:rgb(6,9,8);}
.fc7{color:rgb(0,150,255);}
.fc6{color:rgb(255,64,255);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(4,51,255);}
.fc9{color:transparent;}
.fc2{color:rgb(255,38,0);}
.fc1{color:rgb(170,121,66);}
.fc5{color:rgb(50,50,50);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:24.087973px;}
.fs14{font-size:29.755732px;}
.fs15{font-size:31.172671px;}
.fs16{font-size:34.006550px;}
.fsd{font-size:34.516649px;}
.fs11{font-size:35.423490px;}
.fsc{font-size:39.277566px;}
.fs12{font-size:40.411117px;}
.fs13{font-size:41.091248px;}
.fsa{font-size:41.431314px;}
.fs8{font-size:42.000000px;}
.fs5{font-size:44.000004px;}
.fsb{font-size:44.321871px;}
.fsf{font-size:45.342067px;}
.fse{font-size:48.175946px;}
.fs10{font-size:51.009826px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:76.514738px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y268{bottom:2.591550px;}
.y2b4{bottom:3.281250px;}
.y2b8{bottom:3.281400px;}
.y27b{bottom:3.719850px;}
.y280{bottom:4.048950px;}
.y295{bottom:4.183650px;}
.y278{bottom:4.183800px;}
.y282{bottom:4.183950px;}
.y299{bottom:4.428150px;}
.y2ab{bottom:4.428285px;}
.y277{bottom:4.428300px;}
.y2c1{bottom:4.501500px;}
.y26c{bottom:4.501650px;}
.y2ad{bottom:4.516860px;}
.y275{bottom:4.597200px;}
.y2a2{bottom:5.136750px;}
.y26a{bottom:6.887100px;}
.y264{bottom:7.505400px;}
.y25b{bottom:8.443200px;}
.y262{bottom:8.521080px;}
.yda{bottom:9.254850px;}
.y37{bottom:9.580410px;}
.y244{bottom:9.723450px;}
.y24f{bottom:9.822600px;}
.y13a{bottom:9.894450px;}
.y13f{bottom:9.915000px;}
.y2b3{bottom:11.782800px;}
.y2b7{bottom:11.782950px;}
.y137{bottom:12.181950px;}
.y2b1{bottom:12.491400px;}
.yc6{bottom:12.847500px;}
.y140{bottom:12.969450px;}
.y134{bottom:12.990150px;}
.yc4{bottom:13.035000px;}
.yc7{bottom:13.193850px;}
.yeb{bottom:13.334970px;}
.ycc{bottom:13.335000px;}
.y10f{bottom:13.381350px;}
.yc9{bottom:13.410000px;}
.ye7{bottom:13.410030px;}
.yea{bottom:13.410045px;}
.ye2{bottom:13.681350px;}
.yca{bottom:13.756350px;}
.ye8{bottom:13.756380px;}
.yc2{bottom:13.785000px;}
.y27c{bottom:14.102400px;}
.y27a{bottom:14.346900px;}
.y147{bottom:14.904750px;}
.y10e{bottom:15.611550px;}
.y28e{bottom:15.738600px;}
.y27f{bottom:15.738750px;}
.y2a1{bottom:15.763800px;}
.y2a9{bottom:15.763815px;}
.ydf{bottom:15.911550px;}
.ydd{bottom:15.986550px;}
.y15a{bottom:16.092300px;}
.y163{bottom:17.265000px;}
.y9c{bottom:17.374875px;}
.y212{bottom:17.374890px;}
.y159{bottom:17.646750px;}
.y15c{bottom:17.646900px;}
.y157{bottom:17.833200px;}
.y15f{bottom:18.577500px;}
.y162{bottom:18.819450px;}
.y274{bottom:19.120950px;}
.y156{bottom:19.387650px;}
.y15e{bottom:20.131950px;}
.y2b0{bottom:20.993100px;}
.ybb{bottom:21.332880px;}
.y25a{bottom:22.493250px;}
.y24e{bottom:24.700500px;}
.y7a{bottom:24.706905px;}
.y261{bottom:24.815895px;}
.y35{bottom:25.051755px;}
.y139{bottom:26.394450px;}
.yd9{bottom:27.254850px;}
.y28d{bottom:27.428400px;}
.y1a9{bottom:27.792480px;}
.y13e{bottom:27.915000px;}
.y266{bottom:28.416450px;}
.y136{bottom:28.681950px;}
.y13d{bottom:29.469450px;}
.y243{bottom:30.446100px;}
.y152{bottom:30.841290px;}
.y133{bottom:30.990150px;}
.y272{bottom:34.593450px;}
.y241{bottom:34.903200px;}
.y154{bottom:35.264250px;}
.y259{bottom:36.631800px;}
.y24d{bottom:39.578250px;}
.y260{bottom:41.110695px;}
.y58{bottom:41.648115px;}
.y1c3{bottom:42.282780px;}
.y9b{bottom:44.104980px;}
.y211{bottom:44.104995px;}
.yba{bottom:48.062985px;}
.y132{bottom:48.990150px;}
.y271{bottom:49.790100px;}
.y258{bottom:50.659500px;}
.y79{bottom:51.437010px;}
.y34{bottom:51.781860px;}
.y229{bottom:53.442990px;}
.y24c{bottom:54.456150px;}
.y1a8{bottom:54.522585px;}
.y36{bottom:58.033065px;}
.y240{bottom:61.633290px;}
.y1e7{bottom:62.104980px;}
.y257{bottom:64.687200px;}
.y270{bottom:64.986900px;}
.y57{bottom:68.434950px;}
.y1c2{bottom:69.012900px;}
.y25f{bottom:69.095190px;}
.y24b{bottom:69.334050px;}
.y9a{bottom:70.835085px;}
.y1c4{bottom:73.323450px;}
.ya{bottom:73.585770px;}
.yb9{bottom:74.793150px;}
.y16e{bottom:76.401240px;}
.y1f3{bottom:77.065125px;}
.y110{bottom:77.253045px;}
.y78{bottom:78.223950px;}
.ybc{bottom:78.231630px;}
.y7b{bottom:79.128990px;}
.y228{bottom:80.173050px;}
.y26f{bottom:80.183550px;}
.y1a7{bottom:81.252750px;}
.y129{bottom:81.323475px;}
.yfd{bottom:82.297800px;}
.y256{bottom:83.624700px;}
.y24a{bottom:84.211950px;}
.yb{bottom:84.295650px;}
.y1{bottom:85.039380px;}
.y25e{bottom:85.390140px;}
.y23f{bottom:88.363350px;}
.y1e6{bottom:88.835100px;}
.ye9{bottom:88.836720px;}
.y16d{bottom:89.097150px;}
.y56{bottom:95.203950px;}
.y1c1{bottom:95.743050px;}
.y99{bottom:97.565160px;}
.y255{bottom:97.652400px;}
.y249{bottom:99.089850px;}
.y2ac{bottom:101.367165px;}
.y2ae{bottom:101.455725px;}
.yb8{bottom:101.523150px;}
.y26e{bottom:102.093300px;}
.y25c{bottom:104.396910px;}
.y33{bottom:105.242100px;}
.y1a6{bottom:107.982750px;}
.yfc{bottom:109.027950px;}
.y254{bottom:111.680100px;}
.y25d{bottom:112.695090px;}
.y248{bottom:113.967600px;}
.y210{bottom:115.565175px;}
.y1e5{bottom:115.565250px;}
.y2aa{bottom:115.713690px;}
.y16c{bottom:115.827300px;}
.y1c0{bottom:122.473050px;}
.ye6{bottom:122.931720px;}
.y98{bottom:124.295310px;}
.y227{bottom:124.903200px;}
.y253{bottom:125.707800px;}
.yb7{bottom:128.253300px;}
.y247{bottom:128.845500px;}
.y2a8{bottom:129.971640px;}
.y77{bottom:131.743950px;}
.y32{bottom:131.972100px;}
.y23e{bottom:133.093500px;}
.y9{bottom:133.585770px;}
.y1a5{bottom:134.712900px;}
.yfb{bottom:135.757950px;}
.y252{bottom:139.735500px;}
.y1e4{bottom:142.295250px;}
.y20f{bottom:142.295325px;}
.y16b{bottom:142.557450px;}
.y1bf{bottom:149.203200px;}
.y55{bottom:150.042150px;}
.y97{bottom:151.025460px;}
.y161{bottom:151.600500px;}
.y226{bottom:151.633350px;}
.y246{bottom:152.275650px;}
.y2a7{bottom:155.565150px;}
.ye5{bottom:157.026750px;}
.y76{bottom:158.474100px;}
.y31{bottom:158.702250px;}
.y251{bottom:159.050550px;}
.y23d{bottom:159.823650px;}
.y1a4{bottom:161.443050px;}
.yfa{bottom:162.488100px;}
.y20e{bottom:169.025325px;}
.y18c{bottom:169.025460px;}
.y16a{bottom:169.287450px;}
.y2a6{bottom:169.823100px;}
.yb6{bottom:172.983450px;}
.y1be{bottom:175.933350px;}
.y96{bottom:177.755460px;}
.y225{bottom:178.363350px;}
.y54{bottom:178.513950px;}
.y8{bottom:181.055070px;}
.y2a5{bottom:184.081050px;}
.y75{bottom:185.204250px;}
.y30{bottom:185.432400px;}
.y23c{bottom:186.553650px;}
.y1e3{bottom:187.025400px;}
.y1a3{bottom:188.173050px;}
.yf9{bottom:189.218250px;}
.y160{bottom:189.625500px;}
.ye4{bottom:191.121750px;}
.y18b{bottom:195.755460px;}
.y169{bottom:196.017600px;}
.y2a4{bottom:198.339000px;}
.yb5{bottom:199.713450px;}
.y1bd{bottom:202.663350px;}
.y7{bottom:203.555070px;}
.y95{bottom:204.485610px;}
.y53{bottom:205.243950px;}
.y2a3{bottom:212.596950px;}
.y20d{bottom:213.755475px;}
.y1a2{bottom:214.903200px;}
.yf8{bottom:215.948250px;}
.y18a{bottom:222.485610px;}
.y168{bottom:222.747750px;}
.y224{bottom:223.093500px;}
.ye3{bottom:225.216750px;}
.yb4{bottom:226.443600px;}
.y15d{bottom:228.963000px;}
.y1bc{bottom:229.393500px;}
.y23b{bottom:231.283800px;}
.y52{bottom:231.974100px;}
.y2a0{bottom:238.190400px;}
.y74{bottom:238.664400px;}
.y2f{bottom:238.892550px;}
.y20c{bottom:240.485625px;}
.y1a1{bottom:241.633350px;}
.yf7{bottom:242.678400px;}
.y94{bottom:249.215760px;}
.y223{bottom:249.823650px;}
.yb3{bottom:253.173750px;}
.y1bb{bottom:256.123650px;}
.y23a{bottom:258.013950px;}
.y51{bottom:258.704250px;}
.ye1{bottom:259.311750px;}
.y29f{bottom:263.783850px;}
.y167{bottom:265.270200px;}
.y73{bottom:265.394550px;}
.y2e{bottom:265.622700px;}
.y1e2{bottom:265.985550px;}
.y15b{bottom:268.300500px;}
.yf6{bottom:269.408550px;}
.y222{bottom:276.553650px;}
.y29e{bottom:278.041800px;}
.yb2{bottom:279.903750px;}
.y1ba{bottom:282.853650px;}
.y20b{bottom:285.215775px;}
.y50{bottom:285.434250px;}
.y1a0{bottom:286.363350px;}
.y72{bottom:292.124700px;}
.y2d{bottom:292.352850px;}
.y1e1{bottom:292.715700px;}
.ye0{bottom:293.406750px;}
.yde{bottom:293.481750px;}
.y189{bottom:293.945760px;}
.yf5{bottom:296.138550px;}
.y29d{bottom:302.218350px;}
.y239{bottom:302.743950px;}
.y93{bottom:304.518360px;}
.y158{bottom:305.152950px;}
.y1b9{bottom:309.583800px;}
.y128{bottom:311.405955px;}
.y130{bottom:311.406075px;}
.y20a{bottom:311.945775px;}
.y19f{bottom:313.093500px;}
.y29c{bottom:316.476300px;}
.y71{bottom:318.854700px;}
.y2c{bottom:319.082850px;}
.y1e0{bottom:319.445850px;}
.y188{bottom:320.675910px;}
.y221{bottom:321.283800px;}
.yf4{bottom:322.868700px;}
.yb1{bottom:324.633900px;}
.ydc{bottom:327.501750px;}
.y238{bottom:329.474100px;}
.y29b{bottom:330.734250px;}
.y4f{bottom:331.482450px;}
.y1b8{bottom:336.313950px;}
.y12f{bottom:338.136075px;}
.y127{bottom:338.136105px;}
.y19e{bottom:339.823650px;}
.y155{bottom:342.005250px;}
.y29a{bottom:344.992200px;}
.y70{bottom:345.584850px;}
.y2b{bottom:345.813000px;}
.y1df{bottom:346.175850px;}
.y187{bottom:347.406060px;}
.y220{bottom:348.013950px;}
.yf3{bottom:349.598850px;}
.yb0{bottom:351.364050px;}
.y209{bottom:356.675925px;}
.y298{bottom:359.250300px;}
.y4e{bottom:359.954250px;}
.ydb{bottom:361.596750px;}
.y1b7{bottom:363.043950px;}
.y12e{bottom:364.866225px;}
.y126{bottom:364.866255px;}
.y19d{bottom:366.553650px;}
.y6f{bottom:372.315000px;}
.y2a{bottom:372.543150px;}
.y1de{bottom:372.906000px;}
.y297{bottom:373.508250px;}
.y186{bottom:374.136060px;}
.y237{bottom:374.204250px;}
.y2c0{bottom:375.431550px;}
.yaf{bottom:378.094050px;}
.y151{bottom:379.538400px;}
.y153{bottom:381.723450px;}
.y208{bottom:383.406075px;}
.y4d{bottom:386.684250px;}
.y296{bottom:387.766200px;}
.y1b6{bottom:389.774100px;}
.y125{bottom:391.596255px;}
.y21f{bottom:392.743950px;}
.yf2{bottom:393.236550px;}
.y19c{bottom:393.283800px;}
.yd8{bottom:395.691750px;}
.y29{bottom:399.273150px;}
.y1dd{bottom:399.636150px;}
.y185{bottom:400.866210px;}
.y12d{bottom:400.866225px;}
.y236{bottom:400.934250px;}
.y294{bottom:402.024150px;}
.y4c{bottom:413.414400px;}
.y293{bottom:416.282100px;}
.yf1{bottom:417.741150px;}
.y124{bottom:418.326405px;}
.y21e{bottom:419.474100px;}
.y19b{bottom:420.013950px;}
.yae{bottom:422.824200px;}
.y150{bottom:424.268550px;}
.y28{bottom:426.003300px;}
.y1dc{bottom:426.366150px;}
.y6e{bottom:427.093200px;}
.y184{bottom:427.596360px;}
.y207{bottom:428.136075px;}
.y1b5{bottom:430.454250px;}
.y292{bottom:430.540050px;}
.y6{bottom:438.085770px;}
.y4b{bottom:440.144550px;}
.y92{bottom:441.971760px;}
.yf0{bottom:442.245750px;}
.yd7{bottom:443.631600px;}
.y291{bottom:444.798000px;}
.y123{bottom:445.056555px;}
.y235{bottom:445.664400px;}
.y21d{bottom:446.204250px;}
.y19a{bottom:446.743950px;}
.yad{bottom:449.554350px;}
.y14f{bottom:450.998700px;}
.y27{bottom:452.733450px;}
.y1db{bottom:453.096300px;}
.y206{bottom:454.866225px;}
.y6d{bottom:455.565000px;}
.y290{bottom:459.055950px;}
.y5{bottom:461.924220px;}
.yef{bottom:466.750350px;}
.y1f2{bottom:466.934250px;}
.y91{bottom:468.701910px;}
.y234{bottom:472.394550px;}
.y28f{bottom:473.313900px;}
.y199{bottom:473.474100px;}
.y166{bottom:475.779300px;}
.yac{bottom:476.284350px;}
.yd6{bottom:477.726600px;}
.y12c{bottom:479.003925px;}
.y1da{bottom:479.826450px;}
.y183{bottom:481.056510px;}
.y6c{bottom:482.295000px;}
.y1b4{bottom:483.914400px;}
.y28c{bottom:487.571850px;}
.y21c{bottom:490.934250px;}
.yee{bottom:491.255100px;}
.y1f1{bottom:493.664400px;}
.y4a{bottom:494.922750px;}
.y90{bottom:495.431910px;}
.y14e{bottom:495.728700px;}
.y122{bottom:498.516705px;}
.y233{bottom:499.124700px;}
.y205{bottom:499.596375px;}
.y198{bottom:500.204250px;}
.y12b{bottom:503.508525px;}
.y26{bottom:506.193600px;}
.y1d9{bottom:506.556450px;}
.y182{bottom:507.786660px;}
.y6b{bottom:509.025150px;}
.y1b3{bottom:510.644550px;}
.yd5{bottom:511.821600px;}
.yed{bottom:515.759700px;}
.y21b{bottom:517.664400px;}
.y1f0{bottom:520.394550px;}
.yab{bottom:521.014500px;}
.y8f{bottom:522.162060px;}
.y14d{bottom:522.458850px;}
.y49{bottom:523.394550px;}
.y121{bottom:525.246855px;}
.y28b{bottom:525.563550px;}
.y204{bottom:526.326375px;}
.y197{bottom:526.934250px;}
.y26b{bottom:533.795550px;}
.y25{bottom:534.241650px;}
.y181{bottom:534.516660px;}
.y6a{bottom:535.755300px;}
.y28a{bottom:539.821500px;}
.yec{bottom:540.264300px;}
.y1d8{bottom:540.786600px;}
.y232{bottom:543.854700px;}
.yd4{bottom:545.916600px;}
.y14{bottom:546.408750px;}
.y1ef{bottom:547.124700px;}
.y8e{bottom:548.892210px;}
.y14c{bottom:549.189000px;}
.y48{bottom:550.124700px;}
.y120{bottom:551.976855px;}
.y203{bottom:553.056525px;}
.y196{bottom:553.664400px;}
.y289{bottom:554.079450px;}
.y1b2{bottom:555.374700px;}
.y4{bottom:556.272420px;}
.y180{bottom:561.246810px;}
.y21a{bottom:562.394550px;}
.y69{bottom:562.485300px;}
.y24{bottom:562.713450px;}
.y2bf{bottom:564.529350px;}
.y1d7{bottom:567.516750px;}
.y288{bottom:568.337400px;}
.y231{bottom:570.584850px;}
.y1ee{bottom:573.854700px;}
.y2be{bottom:575.953500px;}
.y47{bottom:576.854700px;}
.y11f{bottom:578.707005px;}
.yd3{bottom:580.011600px;}
.y195{bottom:580.394550px;}
.y1b1{bottom:582.104700px;}
.y287{bottom:582.595350px;}
.y17f{bottom:587.976960px;}
.y219{bottom:589.124700px;}
.y23{bottom:589.443600px;}
.y8d{bottom:589.572360px;}
.yaa{bottom:593.792700px;}
.y14b{bottom:593.919000px;}
.y1d6{bottom:594.246900px;}
.y2bd{bottom:595.879200px;}
.y286{bottom:596.853300px;}
.y230{bottom:597.315000px;}
.y202{bottom:597.786675px;}
.y46{bottom:603.584850px;}
.y3{bottom:604.272420px;}
.y194{bottom:607.124700px;}
.y13{bottom:608.819850px;}
.y1ed{bottom:610.221750px;}
.y146{bottom:610.892700px;}
.y285{bottom:611.111250px;}
.yd2{bottom:614.106600px;}
.y17e{bottom:614.706960px;}
.y2bc{bottom:615.804900px;}
.y22{bottom:616.173750px;}
.y8c{bottom:616.302360px;}
.y68{bottom:617.263500px;}
.y1d5{bottom:620.976900px;}
.y1b0{bottom:622.784850px;}
.ya9{bottom:624.045000px;}
.y284{bottom:625.369200px;}
.y193{bottom:633.854700px;}
.y2bb{bottom:635.730600px;}
.y283{bottom:639.627150px;}
.y17d{bottom:641.437110px;}
.y22f{bottom:642.045000px;}
.y201{bottom:642.516675px;}
.y218{bottom:642.584850px;}
.y21{bottom:642.903750px;}
.y8b{bottom:643.032510px;}
.y145{bottom:645.003000px;}
.y67{bottom:645.735300px;}
.y1d4{bottom:647.707050px;}
.yd1{bottom:648.201600px;}
.y1af{bottom:649.515000px;}
.y281{bottom:653.885100px;}
.y2ba{bottom:655.656300px;}
.y45{bottom:657.045000px;}
.y11e{bottom:658.897305px;}
.y192{bottom:660.584850px;}
.y10c{bottom:666.445650px;}
.y10d{bottom:666.745650px;}
.y27e{bottom:668.143050px;}
.y17c{bottom:668.167260px;}
.ya8{bottom:668.775150px;}
.y200{bottom:669.246825px;}
.y217{bottom:669.315000px;}
.y20{bottom:669.633900px;}
.y8a{bottom:669.762660px;}
.y12{bottom:671.230950px;}
.y66{bottom:672.465450px;}
.y1d3{bottom:674.437200px;}
.y2b9{bottom:675.582000px;}
.y1ae{bottom:676.245000px;}
.y14a{bottom:678.584850px;}
.yd0{bottom:682.296600px;}
.y44{bottom:683.775150px;}
.y11d{bottom:685.627455px;}
.y2{bottom:693.292620px;}
.y144{bottom:693.678000px;}
.y27d{bottom:694.445100px;}
.y17b{bottom:694.897410px;}
.y2b6{bottom:695.507700px;}
.y89{bottom:696.492660px;}
.y10b{bottom:700.465650px;}
.y65{bottom:700.513500px;}
.y1d2{bottom:701.167200px;}
.y149{bottom:705.315000px;}
.y279{bottom:708.703050px;}
.y43{bottom:710.505300px;}
.y11c{bottom:712.357605px;}
.ya7{bottom:713.505300px;}
.y1ff{bottom:713.976975px;}
.y191{bottom:714.045000px;}
.y2b5{bottom:715.433550px;}
.ycf{bottom:716.391600px;}
.y1ad{bottom:716.925150px;}
.y17a{bottom:721.627410px;}
.y216{bottom:722.775150px;}
.y1f{bottom:723.094050px;}
.y88{bottom:723.222810px;}
.y1d1{bottom:727.897350px;}
.y1ec{bottom:732.045000px;}
.y276{bottom:732.879600px;}
.y11{bottom:733.642050px;}
.y10a{bottom:734.560650px;}
.y2b2{bottom:735.359250px;}
.y42{bottom:737.235300px;}
.y11b{bottom:739.087605px;}
.y22e{bottom:740.235300px;}
.y1fe{bottom:740.706975px;}
.y190{bottom:740.775150px;}
.y143{bottom:742.353000px;}
.y1ac{bottom:743.655300px;}
.y273{bottom:747.403200px;}
.y179{bottom:748.357560px;}
.y215{bottom:749.505300px;}
.y1e{bottom:749.824200px;}
.yce{bottom:750.486600px;}
.y1d0{bottom:754.627500px;}
.y2af{bottom:755.550600px;}
.y64{bottom:755.715450px;}
.ya6{bottom:758.235300px;}
.y1eb{bottom:758.775150px;}
.y87{bottom:763.902960px;}
.y11a{bottom:765.817755px;}
.y1fd{bottom:767.437125px;}
.y18f{bottom:767.505300px;}
.y109{bottom:768.655650px;}
.y178{bottom:775.087710px;}
.y1d{bottom:776.554350px;}
.y1cf{bottom:781.357500px;}
.y41{bottom:781.965450px;}
.y63{bottom:782.445600px;}
.y1ab{bottom:784.335300px;}
.ycd{bottom:784.581600px;}
.ya5{bottom:784.965450px;}
.y1ea{bottom:785.505300px;}
.y86{bottom:790.632960px;}
.y142{bottom:791.028000px;}
.y119{bottom:792.547905px;}
.y18e{bottom:794.235300px;}
.y10{bottom:796.053150px;}
.y177{bottom:801.817710px;}
.y108{bottom:802.750650px;}
.y214{bottom:802.965450px;}
.y269{bottom:803.130000px;}
.y1c{bottom:803.284350px;}
.y1ce{bottom:808.087650px;}
.y40{bottom:808.695600px;}
.y62{bottom:809.175600px;}
.y22d{bottom:811.695600px;}
.y1fc{bottom:812.167275px;}
.y1e9{bottom:812.235300px;}
.y85{bottom:817.363110px;}
.ycb{bottom:818.676600px;}
.ya4{bottom:829.695600px;}
.y1b{bottom:830.014500px;}
.y263{bottom:831.365100px;}
.y1cd{bottom:834.817800px;}
.y3f{bottom:835.425600px;}
.y61{bottom:835.905750px;}
.y107{bottom:836.845650px;}
.y22c{bottom:838.425600px;}
.y1fb{bottom:838.897275px;}
.y1e8{bottom:838.965450px;}
.y141{bottom:839.703000px;}
.y84{bottom:844.093260px;}
.y118{bottom:846.008055px;}
.y18d{bottom:847.695600px;}
.yc8{bottom:852.771600px;}
.y176{bottom:855.119010px;}
.y213{bottom:856.425600px;}
.yf{bottom:858.464400px;}
.y250{bottom:864.815400px;}
.y1fa{bottom:865.627425px;}
.y1aa{bottom:865.695600px;}
.y245{bottom:866.572800px;}
.y83{bottom:870.823260px;}
.y106{bottom:870.940650px;}
.y117{bottom:872.738205px;}
.ya3{bottom:874.425600px;}
.y1cc{bottom:875.497800px;}
.y3e{bottom:880.155750px;}
.y175{bottom:881.861460px;}
.y22b{bottom:883.155750px;}
.y1a{bottom:883.474800px;}
.yc5{bottom:886.866600px;}
.y13c{bottom:888.378000px;}
.y60{bottom:890.683950px;}
.y148{bottom:892.425600px;}
.y165{bottom:896.680350px;}
.y82{bottom:897.553410px;}
.y116{bottom:899.468205px;}
.y26d{bottom:899.675400px;}
.ya2{bottom:901.155750px;}
.y105{bottom:905.035650px;}
.y3d{bottom:906.885900px;}
.y174{bottom:908.866710px;}
.y22a{bottom:909.885900px;}
.y19{bottom:910.204800px;}
.y1f9{bottom:910.357575px;}
.y1cb{bottom:916.177950px;}
.y5f{bottom:919.155750px;}
.ye{bottom:920.875500px;}
.yc3{bottom:921.524100px;}
.y81{bottom:924.283560px;}
.y115{bottom:926.198355px;}
.ya1{bottom:927.885900px;}
.y3c{bottom:933.615900px;}
.y173{bottom:935.780310px;}
.y18{bottom:936.934950px;}
.y13b{bottom:937.053000px;}
.y1f8{bottom:937.087725px;}
.y104{bottom:939.130650px;}
.y1ca{bottom:942.908100px;}
.yc0{bottom:942.998970px;}
.y5e{bottom:945.885900px;}
.y80{bottom:951.013560px;}
.ya0{bottom:954.615900px;}
.yc1{bottom:954.869100px;}
.y3b{bottom:960.346050px;}
.y172{bottom:962.510310px;}
.y17{bottom:963.665100px;}
.y1f7{bottom:963.817725px;}
.y1c9{bottom:969.638100px;}
.ybf{bottom:969.729120px;}
.y5d{bottom:972.615900px;}
.y103{bottom:973.225650px;}
.y7f{bottom:977.743710px;}
.y114{bottom:979.658505px;}
.y9f{bottom:981.346050px;}
.y138{bottom:982.653000px;}
.yd{bottom:983.286600px;}
.y3a{bottom:987.076200px;}
.y171{bottom:989.240460px;}
.y16{bottom:990.395100px;}
.y1c8{bottom:996.368250px;}
.ybe{bottom:996.459120px;}
.y5c{bottom:999.346050px;}
.y113{bottom:1006.388655px;}
.y102{bottom:1007.320650px;}
.y9e{bottom:1008.076200px;}
.y1f6{bottom:1008.547875px;}
.y39{bottom:1013.806200px;}
.y15{bottom:1017.125250px;}
.y1c7{bottom:1023.098400px;}
.y5b{bottom:1026.076200px;}
.y135{bottom:1028.253000px;}
.y7e{bottom:1031.242860px;}
.y112{bottom:1033.118805px;}
.y9d{bottom:1034.806200px;}
.y1f5{bottom:1035.278025px;}
.y38{bottom:1040.536350px;}
.y101{bottom:1041.415650px;}
.y170{bottom:1042.700610px;}
.y265{bottom:1042.897500px;}
.y267{bottom:1046.788050px;}
.y1c6{bottom:1049.828400px;}
.ybd{bottom:1051.761720px;}
.y5a{bottom:1052.806200px;}
.y7d{bottom:1057.972860px;}
.y111{bottom:1059.848805px;}
.y164{bottom:1061.536350px;}
.y100{bottom:1075.510650px;}
.yc{bottom:1076.903250px;}
.y131{bottom:1077.265500px;}
.y59{bottom:1079.536350px;}
.y12a{bottom:1082.508525px;}
.y1f4{bottom:1082.658525px;}
.y7c{bottom:1084.703010px;}
.y16f{bottom:1087.430760px;}
.y1c5{bottom:1090.508550px;}
.y242{bottom:1098.314400px;}
.yff{bottom:1109.605650px;}
.yfe{bottom:1143.700650px;}
.h55{height:11.335520px;}
.h49{height:14.169399px;}
.h51{height:14.257958px;}
.h43{height:15.971700px;}
.h41{height:18.357345px;}
.h54{height:19.837155px;}
.h53{height:21.806202px;}
.h3c{height:23.932995px;}
.h4c{height:24.087975px;}
.h50{height:25.504920px;}
.h4d{height:26.213385px;}
.h38{height:26.508786px;}
.h4a{height:26.937073px;}
.h4b{height:28.219791px;}
.h52{height:29.047275px;}
.h4e{height:30.785227px;}
.h46{height:31.035738px;}
.hc{height:31.484940px;}
.h47{height:31.881150px;}
.h15{height:33.157500px;}
.h14{height:33.345000px;}
.h1b{height:33.645000px;}
.h17{height:33.720000px;}
.h26{height:33.735345px;}
.h35{height:34.039197px;}
.h12{height:34.095000px;}
.h42{height:35.440787px;}
.h37{height:35.556937px;}
.h29{height:36.477375px;}
.h45{height:36.583111px;}
.h3b{height:36.999127px;}
.h48{height:37.198816px;}
.h34{height:37.506668px;}
.h2b{height:37.649985px;}
.h4f{height:37.903140px;}
.h28{height:38.218155px;}
.h2a{height:38.962485px;}
.h3d{height:41.046969px;}
.h3a{height:43.612405px;}
.h16{height:43.920000px;}
.h1c{height:43.989258px;}
.h40{height:44.562765px;}
.h24{height:45.225000px;}
.h1a{height:45.729492px;}
.h18{height:46.200000px;}
.h23{height:47.512500px;}
.h19{height:47.564895px;}
.h6{height:47.982000px;}
.h25{height:48.300000px;}
.h3e{height:49.728675px;}
.he{height:50.820000px;}
.h3f{height:51.034733px;}
.h1f{height:53.789062px;}
.h1e{height:54.169922px;}
.h31{height:55.292460px;}
.hd{height:55.440000px;}
.h27{height:55.574295px;}
.h2d{height:56.478516px;}
.h13{height:57.300000px;}
.h3{height:59.167969px;}
.hb{height:59.586914px;}
.ha{height:64.546875px;}
.h9{height:65.003906px;}
.h30{height:68.760000px;}
.h22{height:69.300000px;}
.h7{height:69.621094px;}
.h5{height:74.976562px;}
.h32{height:76.552099px;}
.h44{height:116.696685px;}
.h4{height:120.690000px;}
.h39{height:130.215825px;}
.h33{height:167.244300px;}
.h36{height:173.641500px;}
.h2{height:1092.756300px;}
.h1d{height:1095.000000px;}
.hf{height:1098.108450px;}
.h8{height:1098.527400px;}
.h21{height:1101.080550px;}
.h10{height:1103.275050px;}
.h11{height:1104.591300px;}
.h20{height:1105.150950px;}
.h2c{height:1106.002800px;}
.h2f{height:1106.094450px;}
.h2e{height:1109.080650px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:26.984940px;}
.w20{width:32.000940px;}
.w30{width:33.549360px;}
.w32{width:47.139570px;}
.w35{width:48.469830px;}
.w34{width:52.568430px;}
.w31{width:53.575125px;}
.w33{width:55.444680px;}
.w13{width:68.550000px;}
.w2c{width:91.773135px;}
.w2e{width:91.817415px;}
.w2f{width:91.855635px;}
.w2d{width:91.944195px;}
.w15{width:97.575000px;}
.w19{width:99.525000px;}
.w18{width:100.350000px;}
.w17{width:108.900000px;}
.w14{width:111.000000px;}
.w1f{width:111.341865px;}
.w1a{width:113.756355px;}
.w1b{width:114.379710px;}
.w16{width:114.900000px;}
.w1e{width:120.198135px;}
.w1d{width:171.355200px;}
.wa{width:179.322750px;}
.wd{width:179.397750px;}
.we{width:179.510250px;}
.wf{width:179.585250px;}
.wb{width:179.810250px;}
.wc{width:179.885250px;}
.w10{width:179.960250px;}
.w2b{width:231.984450px;}
.w1c{width:233.040000px;}
.w25{width:271.137900px;}
.w24{width:291.652500px;}
.w29{width:386.746950px;}
.w2a{width:394.146900px;}
.w27{width:396.794850px;}
.w26{width:397.294350px;}
.w28{width:539.935200px;}
.w23{width:546.334050px;}
.w9{width:721.341300px;}
.w12{width:732.058050px;}
.w8{width:732.372300px;}
.w6{width:732.895950px;}
.w4{width:733.040850px;}
.w22{width:733.071150px;}
.w21{width:733.569300px;}
.w3{width:734.208300px;}
.w7{width:743.010300px;}
.w11{width:743.232000px;}
.w2{width:747.040200px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4b{left:1.416945px;}
.x40{left:3.462000px;}
.x28{left:4.608405px;}
.xc{left:5.683500px;}
.xe{left:6.742500px;}
.x24{left:8.142600px;}
.x25{left:10.438800px;}
.x2{left:12.099450px;}
.x42{left:13.567950px;}
.x55{left:16.064550px;}
.x23{left:19.619250px;}
.x49{left:20.961450px;}
.x1a{left:26.466150px;}
.x46{left:29.925000px;}
.x20{left:31.279500px;}
.x3a{left:32.364015px;}
.x1f{left:33.379950px;}
.x21{left:35.680200px;}
.x22{left:37.968300px;}
.x3c{left:39.397185px;}
.x1b{left:41.185650px;}
.x1d{left:43.238400px;}
.x16{left:44.811150px;}
.x13{left:47.107350px;}
.x17{left:49.587000px;}
.x14{left:51.879150px;}
.x3{left:54.663585px;}
.x26{left:55.948950px;}
.x4f{left:57.731460px;}
.x19{left:58.763550px;}
.x18{left:60.868050px;}
.x3f{left:66.797400px;}
.x38{left:67.805250px;}
.x35{left:70.226250px;}
.x1{left:72.939930px;}
.x37{left:76.147500px;}
.xb{left:79.355880px;}
.x27{left:80.430975px;}
.xf{left:85.789380px;}
.x29{left:88.039380px;}
.x3d{left:93.554115px;}
.x56{left:102.197175px;}
.x47{left:107.864100px;}
.x1e{left:123.408450px;}
.x34{left:127.944390px;}
.x15{left:132.295050px;}
.x1c{left:136.055250px;}
.x43{left:148.691250px;}
.x4c{left:149.725995px;}
.x45{left:151.530900px;}
.x2a{left:158.089350px;}
.x5{left:160.361820px;}
.x4{left:206.579070px;}
.x8{left:224.280420px;}
.x7{left:227.565270px;}
.x4d{left:241.758750px;}
.x9{left:265.520070px;}
.x12{left:266.687250px;}
.x2b{left:270.589350px;}
.x3b{left:290.886300px;}
.x44{left:294.085650px;}
.x31{left:300.799650px;}
.xa{left:316.859070px;}
.x4e{left:333.791400px;}
.x4a{left:335.193750px;}
.x2c{left:369.664350px;}
.x6{left:373.520070px;}
.x32{left:416.055900px;}
.x10{left:446.722500px;}
.x41{left:454.154700px;}
.x48{left:455.728200px;}
.x2d{left:486.064350px;}
.x50{left:498.532500px;}
.x33{left:531.935700px;}
.x30{left:573.656175px;}
.x3e{left:574.900950px;}
.x51{left:586.365450px;}
.x2e{left:596.464350px;}
.x11{left:626.982900px;}
.x52{left:633.859200px;}
.x36{left:653.633850px;}
.x53{left:689.658300px;}
.x2f{left:698.314350px;}
.x54{left:742.581000px;}
.x39{left:781.122150px;}
.xd{left:791.130150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.007813pt;}
.ls14{letter-spacing:-6.512000pt;}
.ls16{letter-spacing:-5.397333pt;}
.ls3{letter-spacing:-4.742400pt;}
.ls1d{letter-spacing:-4.347200pt;}
.ls12{letter-spacing:-3.968000pt;}
.lsd{letter-spacing:-2.898134pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:-0.011733pt;}
.ls17{letter-spacing:-0.010667pt;}
.ls22{letter-spacing:-0.004282pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.006220pt;}
.ls19{letter-spacing:0.007467pt;}
.ls8{letter-spacing:0.007822pt;}
.ls1c{letter-spacing:0.008533pt;}
.ls10{letter-spacing:0.010667pt;}
.ls21{letter-spacing:0.010706pt;}
.ls18{letter-spacing:0.011200pt;}
.ls4{letter-spacing:0.011733pt;}
.ls1{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.019200pt;}
.lsf{letter-spacing:0.025600pt;}
.ls7{letter-spacing:0.064533pt;}
.ls1a{letter-spacing:0.117333pt;}
.ls15{letter-spacing:0.365867pt;}
.ls1f{letter-spacing:1.197675pt;}
.lse{letter-spacing:1.337600pt;}
.ls20{letter-spacing:2.265340pt;}
.ls1e{letter-spacing:2.907515pt;}
.ls13{letter-spacing:3.103467pt;}
.lsc{letter-spacing:4.209600pt;}
.ls11{letter-spacing:5.978667pt;}
.lsb{letter-spacing:14.564800pt;}
.ls1b{letter-spacing:16.317867pt;}
.lsa{letter-spacing:17.940693pt;}
.ws3{word-spacing:-17.804800pt;}
.wsd{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.779200pt;}
.ws7{word-spacing:-16.321067pt;}
.ws6{word-spacing:-16.309333pt;}
.ws4{word-spacing:-16.297600pt;}
.wsc{word-spacing:-14.837333pt;}
.wsa{word-spacing:-14.826667pt;}
.ws2{word-spacing:-13.049600pt;}
.ws15{word-spacing:-12.163010pt;}
.ws8{word-spacing:-10.880712pt;}
.wsf{word-spacing:-10.386133pt;}
.ws17{word-spacing:-10.065939pt;}
.ws18{word-spacing:-9.227111pt;}
.ws16{word-spacing:-8.807697pt;}
.ws9{word-spacing:-7.974756pt;}
.ws19{word-spacing:-7.130040pt;}
.ws12{word-spacing:-1.902933pt;}
.ws5{word-spacing:-0.058667pt;}
.wsb{word-spacing:-0.053333pt;}
.ws14{word-spacing:-0.030681pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:11.191467pt;}
.ws11{word-spacing:24.344533pt;}
.ws10{word-spacing:27.500800pt;}
.wse{word-spacing:30.727467pt;}
._1f{margin-left:-16.092267pt;}
._4{margin-left:-8.326933pt;}
._2{margin-left:-6.503467pt;}
._0{margin-left:-5.562667pt;}
._a{margin-left:-3.992533pt;}
._3{margin-left:-2.366933pt;}
._1{margin-left:-1.097600pt;}
._8{width:1.282667pt;}
._f{width:2.187573pt;}
._18{width:3.854400pt;}
._d{width:4.754133pt;}
._11{width:6.470933pt;}
._19{width:8.066667pt;}
._14{width:9.128533pt;}
._1b{width:10.560000pt;}
._12{width:11.592533pt;}
._17{width:12.848000pt;}
._13{width:14.314667pt;}
._1a{width:15.380267pt;}
._23{width:16.685867pt;}
._10{width:17.916800pt;}
._15{width:19.030933pt;}
._16{width:20.069867pt;}
._21{width:21.747733pt;}
._1d{width:22.938667pt;}
._1c{width:24.024000pt;}
._24{width:25.536533pt;}
._9{width:26.582933pt;}
._20{width:27.532267pt;}
._b{width:28.524800pt;}
._1e{width:29.907200pt;}
._22{width:33.291733pt;}
._c{width:43.865600pt;}
._e{width:47.526400pt;}
._7{width:61.670400pt;}
._5{width:143.072000pt;}
._6{width:175.690667pt;}
.fs17{font-size:21.411532pt;}
.fs14{font-size:26.449539pt;}
.fs15{font-size:27.709041pt;}
.fs16{font-size:30.228045pt;}
.fsd{font-size:30.681465pt;}
.fs11{font-size:31.487547pt;}
.fsc{font-size:34.913392pt;}
.fs12{font-size:35.920993pt;}
.fs13{font-size:36.525554pt;}
.fsa{font-size:36.827835pt;}
.fs8{font-size:37.333333pt;}
.fs5{font-size:39.111115pt;}
.fsb{font-size:39.397218pt;}
.fsf{font-size:40.304060pt;}
.fse{font-size:42.823063pt;}
.fs10{font-size:45.342067pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:68.013101pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y268{bottom:2.303600pt;}
.y2b4{bottom:2.916667pt;}
.y2b8{bottom:2.916800pt;}
.y27b{bottom:3.306533pt;}
.y280{bottom:3.599067pt;}
.y295{bottom:3.718800pt;}
.y278{bottom:3.718933pt;}
.y282{bottom:3.719067pt;}
.y299{bottom:3.936133pt;}
.y2ab{bottom:3.936253pt;}
.y277{bottom:3.936267pt;}
.y2c1{bottom:4.001333pt;}
.y26c{bottom:4.001467pt;}
.y2ad{bottom:4.014987pt;}
.y275{bottom:4.086400pt;}
.y2a2{bottom:4.566000pt;}
.y26a{bottom:6.121867pt;}
.y264{bottom:6.671467pt;}
.y25b{bottom:7.505067pt;}
.y262{bottom:7.574293pt;}
.yda{bottom:8.226533pt;}
.y37{bottom:8.515920pt;}
.y244{bottom:8.643067pt;}
.y24f{bottom:8.731200pt;}
.y13a{bottom:8.795067pt;}
.y13f{bottom:8.813333pt;}
.y2b3{bottom:10.473600pt;}
.y2b7{bottom:10.473733pt;}
.y137{bottom:10.828400pt;}
.y2b1{bottom:11.103467pt;}
.yc6{bottom:11.420000pt;}
.y140{bottom:11.528400pt;}
.y134{bottom:11.546800pt;}
.yc4{bottom:11.586667pt;}
.yc7{bottom:11.727867pt;}
.yeb{bottom:11.853307pt;}
.ycc{bottom:11.853333pt;}
.y10f{bottom:11.894533pt;}
.yc9{bottom:11.920000pt;}
.ye7{bottom:11.920027pt;}
.yea{bottom:11.920040pt;}
.ye2{bottom:12.161200pt;}
.yca{bottom:12.227867pt;}
.ye8{bottom:12.227893pt;}
.yc2{bottom:12.253333pt;}
.y27c{bottom:12.535467pt;}
.y27a{bottom:12.752800pt;}
.y147{bottom:13.248667pt;}
.y10e{bottom:13.876933pt;}
.y28e{bottom:13.989867pt;}
.y27f{bottom:13.990000pt;}
.y2a1{bottom:14.012267pt;}
.y2a9{bottom:14.012280pt;}
.ydf{bottom:14.143600pt;}
.ydd{bottom:14.210267pt;}
.y15a{bottom:14.304267pt;}
.y163{bottom:15.346667pt;}
.y9c{bottom:15.444333pt;}
.y212{bottom:15.444347pt;}
.y159{bottom:15.686000pt;}
.y15c{bottom:15.686133pt;}
.y157{bottom:15.851733pt;}
.y15f{bottom:16.513333pt;}
.y162{bottom:16.728400pt;}
.y274{bottom:16.996400pt;}
.y156{bottom:17.233467pt;}
.y15e{bottom:17.895067pt;}
.y2b0{bottom:18.660533pt;}
.ybb{bottom:18.962560pt;}
.y25a{bottom:19.994000pt;}
.y24e{bottom:21.956000pt;}
.y7a{bottom:21.961693pt;}
.y261{bottom:22.058573pt;}
.y35{bottom:22.268227pt;}
.y139{bottom:23.461733pt;}
.yd9{bottom:24.226533pt;}
.y28d{bottom:24.380800pt;}
.y1a9{bottom:24.704427pt;}
.y13e{bottom:24.813333pt;}
.y266{bottom:25.259067pt;}
.y136{bottom:25.495067pt;}
.y13d{bottom:26.195067pt;}
.y243{bottom:27.063200pt;}
.y152{bottom:27.414480pt;}
.y133{bottom:27.546800pt;}
.y272{bottom:30.749733pt;}
.y241{bottom:31.025067pt;}
.y154{bottom:31.346000pt;}
.y259{bottom:32.561600pt;}
.y24d{bottom:35.180667pt;}
.y260{bottom:36.542840pt;}
.y58{bottom:37.020547pt;}
.y1c3{bottom:37.584693pt;}
.y9b{bottom:39.204427pt;}
.y211{bottom:39.204440pt;}
.yba{bottom:42.722653pt;}
.y132{bottom:43.546800pt;}
.y271{bottom:44.257867pt;}
.y258{bottom:45.030667pt;}
.y79{bottom:45.721787pt;}
.y34{bottom:46.028320pt;}
.y229{bottom:47.504880pt;}
.y24c{bottom:48.405467pt;}
.y1a8{bottom:48.464520pt;}
.y36{bottom:51.584947pt;}
.y240{bottom:54.785147pt;}
.y1e7{bottom:55.204427pt;}
.y257{bottom:57.499733pt;}
.y270{bottom:57.766133pt;}
.y57{bottom:60.831067pt;}
.y1c2{bottom:61.344800pt;}
.y25f{bottom:61.417947pt;}
.y24b{bottom:61.630267pt;}
.y9a{bottom:62.964520pt;}
.y1c4{bottom:65.176400pt;}
.ya{bottom:65.409573pt;}
.yb9{bottom:66.482800pt;}
.y16e{bottom:67.912213pt;}
.y1f3{bottom:68.502333pt;}
.y110{bottom:68.669373pt;}
.y78{bottom:69.532400pt;}
.ybc{bottom:69.539227pt;}
.y7b{bottom:70.336880pt;}
.y228{bottom:71.264933pt;}
.y26f{bottom:71.274267pt;}
.y1a7{bottom:72.224667pt;}
.y129{bottom:72.287533pt;}
.yfd{bottom:73.153600pt;}
.y256{bottom:74.333067pt;}
.y24a{bottom:74.855067pt;}
.yb{bottom:74.929467pt;}
.y1{bottom:75.590560pt;}
.y25e{bottom:75.902347pt;}
.y23f{bottom:78.545200pt;}
.y1e6{bottom:78.964533pt;}
.ye9{bottom:78.965973pt;}
.y16d{bottom:79.197467pt;}
.y56{bottom:84.625733pt;}
.y1c1{bottom:85.104933pt;}
.y99{bottom:86.724587pt;}
.y255{bottom:86.802133pt;}
.y249{bottom:88.079867pt;}
.y2ac{bottom:90.104147pt;}
.y2ae{bottom:90.182867pt;}
.yb8{bottom:90.242800pt;}
.y26e{bottom:90.749600pt;}
.y25c{bottom:92.797253pt;}
.y33{bottom:93.548533pt;}
.y1a6{bottom:95.984667pt;}
.yfc{bottom:96.913733pt;}
.y254{bottom:99.271200pt;}
.y25d{bottom:100.173413pt;}
.y248{bottom:101.304533pt;}
.y210{bottom:102.724600pt;}
.y1e5{bottom:102.724667pt;}
.y2aa{bottom:102.856613pt;}
.y16c{bottom:102.957600pt;}
.y1c0{bottom:108.864933pt;}
.ye6{bottom:109.272640pt;}
.y98{bottom:110.484720pt;}
.y227{bottom:111.025067pt;}
.y253{bottom:111.740267pt;}
.yb7{bottom:114.002933pt;}
.y247{bottom:114.529333pt;}
.y2a8{bottom:115.530347pt;}
.y77{bottom:117.105733pt;}
.y32{bottom:117.308533pt;}
.y23e{bottom:118.305333pt;}
.y9{bottom:118.742907pt;}
.y1a5{bottom:119.744800pt;}
.yfb{bottom:120.673733pt;}
.y252{bottom:124.209333pt;}
.y1e4{bottom:126.484667pt;}
.y20f{bottom:126.484733pt;}
.y16b{bottom:126.717733pt;}
.y1bf{bottom:132.625067pt;}
.y55{bottom:133.370800pt;}
.y97{bottom:134.244853pt;}
.y161{bottom:134.756000pt;}
.y226{bottom:134.785200pt;}
.y246{bottom:135.356133pt;}
.y2a7{bottom:138.280133pt;}
.ye5{bottom:139.579333pt;}
.y76{bottom:140.865867pt;}
.y31{bottom:141.068667pt;}
.y251{bottom:141.378267pt;}
.y23d{bottom:142.065467pt;}
.y1a4{bottom:143.504933pt;}
.yfa{bottom:144.433867pt;}
.y20e{bottom:150.244733pt;}
.y18c{bottom:150.244853pt;}
.y16a{bottom:150.477733pt;}
.y2a6{bottom:150.953867pt;}
.yb6{bottom:153.763067pt;}
.y1be{bottom:156.385200pt;}
.y96{bottom:158.004853pt;}
.y225{bottom:158.545200pt;}
.y54{bottom:158.679067pt;}
.y8{bottom:160.937840pt;}
.y2a5{bottom:163.627600pt;}
.y75{bottom:164.626000pt;}
.y30{bottom:164.828800pt;}
.y23c{bottom:165.825467pt;}
.y1e3{bottom:166.244800pt;}
.y1a3{bottom:167.264933pt;}
.yf9{bottom:168.194000pt;}
.y160{bottom:168.556000pt;}
.ye4{bottom:169.886000pt;}
.y18b{bottom:174.004853pt;}
.y169{bottom:174.237867pt;}
.y2a4{bottom:176.301333pt;}
.yb5{bottom:177.523067pt;}
.y1bd{bottom:180.145200pt;}
.y7{bottom:180.937840pt;}
.y95{bottom:181.764987pt;}
.y53{bottom:182.439067pt;}
.y2a3{bottom:188.975067pt;}
.y20d{bottom:190.004867pt;}
.y1a2{bottom:191.025067pt;}
.yf8{bottom:191.954000pt;}
.y18a{bottom:197.764987pt;}
.y168{bottom:197.998000pt;}
.y224{bottom:198.305333pt;}
.ye3{bottom:200.192667pt;}
.yb4{bottom:201.283200pt;}
.y15d{bottom:203.522667pt;}
.y1bc{bottom:203.905333pt;}
.y23b{bottom:205.585600pt;}
.y52{bottom:206.199200pt;}
.y2a0{bottom:211.724800pt;}
.y74{bottom:212.146133pt;}
.y2f{bottom:212.348933pt;}
.y20c{bottom:213.765000pt;}
.y1a1{bottom:214.785200pt;}
.yf7{bottom:215.714133pt;}
.y94{bottom:221.525120pt;}
.y223{bottom:222.065467pt;}
.yb3{bottom:225.043333pt;}
.y1bb{bottom:227.665467pt;}
.y23a{bottom:229.345733pt;}
.y51{bottom:229.959333pt;}
.ye1{bottom:230.499333pt;}
.y29f{bottom:234.474533pt;}
.y167{bottom:235.795733pt;}
.y73{bottom:235.906267pt;}
.y2e{bottom:236.109067pt;}
.y1e2{bottom:236.431600pt;}
.y15b{bottom:238.489333pt;}
.yf6{bottom:239.474267pt;}
.y222{bottom:245.825467pt;}
.y29e{bottom:247.148267pt;}
.yb2{bottom:248.803333pt;}
.y1ba{bottom:251.425467pt;}
.y20b{bottom:253.525133pt;}
.y50{bottom:253.719333pt;}
.y1a0{bottom:254.545200pt;}
.y72{bottom:259.666400pt;}
.y2d{bottom:259.869200pt;}
.y1e1{bottom:260.191733pt;}
.ye0{bottom:260.806000pt;}
.yde{bottom:260.872667pt;}
.y189{bottom:261.285120pt;}
.yf5{bottom:263.234267pt;}
.y29d{bottom:268.638533pt;}
.y239{bottom:269.105733pt;}
.y93{bottom:270.682987pt;}
.y158{bottom:271.247067pt;}
.y1b9{bottom:275.185600pt;}
.y128{bottom:276.805293pt;}
.y130{bottom:276.805400pt;}
.y20a{bottom:277.285133pt;}
.y19f{bottom:278.305333pt;}
.y29c{bottom:281.312267pt;}
.y71{bottom:283.426400pt;}
.y2c{bottom:283.629200pt;}
.y1e0{bottom:283.951867pt;}
.y188{bottom:285.045253pt;}
.y221{bottom:285.585600pt;}
.yf4{bottom:286.994400pt;}
.yb1{bottom:288.563467pt;}
.ydc{bottom:291.112667pt;}
.y238{bottom:292.865867pt;}
.y29b{bottom:293.986000pt;}
.y4f{bottom:294.651067pt;}
.y1b8{bottom:298.945733pt;}
.y12f{bottom:300.565400pt;}
.y127{bottom:300.565427pt;}
.y19e{bottom:302.065467pt;}
.y155{bottom:304.004667pt;}
.y29a{bottom:306.659733pt;}
.y70{bottom:307.186533pt;}
.y2b{bottom:307.389333pt;}
.y1df{bottom:307.711867pt;}
.y187{bottom:308.805387pt;}
.y220{bottom:309.345733pt;}
.yf3{bottom:310.754533pt;}
.yb0{bottom:312.323600pt;}
.y209{bottom:317.045267pt;}
.y298{bottom:319.333600pt;}
.y4e{bottom:319.959333pt;}
.ydb{bottom:321.419333pt;}
.y1b7{bottom:322.705733pt;}
.y12e{bottom:324.325533pt;}
.y126{bottom:324.325560pt;}
.y19d{bottom:325.825467pt;}
.y6f{bottom:330.946667pt;}
.y2a{bottom:331.149467pt;}
.y1de{bottom:331.472000pt;}
.y297{bottom:332.007333pt;}
.y186{bottom:332.565387pt;}
.y237{bottom:332.626000pt;}
.y2c0{bottom:333.716933pt;}
.yaf{bottom:336.083600pt;}
.y151{bottom:337.367467pt;}
.y153{bottom:339.309733pt;}
.y208{bottom:340.805400pt;}
.y4d{bottom:343.719333pt;}
.y296{bottom:344.681067pt;}
.y1b6{bottom:346.465867pt;}
.y125{bottom:348.085560pt;}
.y21f{bottom:349.105733pt;}
.yf2{bottom:349.543600pt;}
.y19c{bottom:349.585600pt;}
.yd8{bottom:351.726000pt;}
.y29{bottom:354.909467pt;}
.y1dd{bottom:355.232133pt;}
.y185{bottom:356.325520pt;}
.y12d{bottom:356.325533pt;}
.y236{bottom:356.386000pt;}
.y294{bottom:357.354800pt;}
.y4c{bottom:367.479467pt;}
.y293{bottom:370.028533pt;}
.yf1{bottom:371.325467pt;}
.y124{bottom:371.845693pt;}
.y21e{bottom:372.865867pt;}
.y19b{bottom:373.345733pt;}
.yae{bottom:375.843733pt;}
.y150{bottom:377.127600pt;}
.y28{bottom:378.669600pt;}
.y1dc{bottom:378.992133pt;}
.y6e{bottom:379.638400pt;}
.y184{bottom:380.085653pt;}
.y207{bottom:380.565400pt;}
.y1b5{bottom:382.626000pt;}
.y292{bottom:382.702267pt;}
.y6{bottom:389.409573pt;}
.y4b{bottom:391.239600pt;}
.y92{bottom:392.863787pt;}
.yf0{bottom:393.107333pt;}
.yd7{bottom:394.339200pt;}
.y291{bottom:395.376000pt;}
.y123{bottom:395.605827pt;}
.y235{bottom:396.146133pt;}
.y21d{bottom:396.626000pt;}
.y19a{bottom:397.105733pt;}
.yad{bottom:399.603867pt;}
.y14f{bottom:400.887733pt;}
.y27{bottom:402.429733pt;}
.y1db{bottom:402.752267pt;}
.y206{bottom:404.325533pt;}
.y6d{bottom:404.946667pt;}
.y290{bottom:408.049733pt;}
.y5{bottom:410.599307pt;}
.yef{bottom:414.889200pt;}
.y1f2{bottom:415.052667pt;}
.y91{bottom:416.623920pt;}
.y234{bottom:419.906267pt;}
.y28f{bottom:420.723467pt;}
.y199{bottom:420.865867pt;}
.y166{bottom:422.914933pt;}
.yac{bottom:423.363867pt;}
.yd6{bottom:424.645867pt;}
.y12c{bottom:425.781267pt;}
.y1da{bottom:426.512400pt;}
.y183{bottom:427.605787pt;}
.y6c{bottom:428.706667pt;}
.y1b4{bottom:430.146133pt;}
.y28c{bottom:433.397200pt;}
.y21c{bottom:436.386000pt;}
.yee{bottom:436.671200pt;}
.y1f1{bottom:438.812800pt;}
.y4a{bottom:439.931333pt;}
.y90{bottom:440.383920pt;}
.y14e{bottom:440.647733pt;}
.y122{bottom:443.125960pt;}
.y233{bottom:443.666400pt;}
.y205{bottom:444.085667pt;}
.y198{bottom:444.626000pt;}
.y12b{bottom:447.563133pt;}
.y26{bottom:449.949867pt;}
.y1d9{bottom:450.272400pt;}
.y182{bottom:451.365920pt;}
.y6b{bottom:452.466800pt;}
.y1b3{bottom:453.906267pt;}
.yd5{bottom:454.952533pt;}
.yed{bottom:458.453067pt;}
.y21b{bottom:460.146133pt;}
.y1f0{bottom:462.572933pt;}
.yab{bottom:463.124000pt;}
.y8f{bottom:464.144053pt;}
.y14d{bottom:464.407867pt;}
.y49{bottom:465.239600pt;}
.y121{bottom:466.886093pt;}
.y28b{bottom:467.167600pt;}
.y204{bottom:467.845667pt;}
.y197{bottom:468.386000pt;}
.y26b{bottom:474.484933pt;}
.y25{bottom:474.881467pt;}
.y181{bottom:475.125920pt;}
.y6a{bottom:476.226933pt;}
.y28a{bottom:479.841333pt;}
.yec{bottom:480.234933pt;}
.y1d8{bottom:480.699200pt;}
.y232{bottom:483.426400pt;}
.yd4{bottom:485.259200pt;}
.y14{bottom:485.696667pt;}
.y1ef{bottom:486.333067pt;}
.y8e{bottom:487.904187pt;}
.y14c{bottom:488.168000pt;}
.y48{bottom:488.999733pt;}
.y120{bottom:490.646093pt;}
.y203{bottom:491.605800pt;}
.y196{bottom:492.146133pt;}
.y289{bottom:492.515067pt;}
.y1b2{bottom:493.666400pt;}
.y4{bottom:494.464373pt;}
.y180{bottom:498.886053pt;}
.y21a{bottom:499.906267pt;}
.y69{bottom:499.986933pt;}
.y24{bottom:500.189733pt;}
.y2bf{bottom:501.803867pt;}
.y1d7{bottom:504.459333pt;}
.y288{bottom:505.188800pt;}
.y231{bottom:507.186533pt;}
.y1ee{bottom:510.093067pt;}
.y2be{bottom:511.958667pt;}
.y47{bottom:512.759733pt;}
.y11f{bottom:514.406227pt;}
.yd3{bottom:515.565867pt;}
.y195{bottom:515.906267pt;}
.y1b1{bottom:517.426400pt;}
.y287{bottom:517.862533pt;}
.y17f{bottom:522.646187pt;}
.y219{bottom:523.666400pt;}
.y23{bottom:523.949867pt;}
.y8d{bottom:524.064320pt;}
.yaa{bottom:527.815733pt;}
.y14b{bottom:527.928000pt;}
.y1d6{bottom:528.219467pt;}
.y2bd{bottom:529.670400pt;}
.y286{bottom:530.536267pt;}
.y230{bottom:530.946667pt;}
.y202{bottom:531.365933pt;}
.y46{bottom:536.519867pt;}
.y3{bottom:537.131040pt;}
.y194{bottom:539.666400pt;}
.y13{bottom:541.173200pt;}
.y1ed{bottom:542.419333pt;}
.y146{bottom:543.015733pt;}
.y285{bottom:543.210000pt;}
.yd2{bottom:545.872533pt;}
.y17e{bottom:546.406187pt;}
.y2bc{bottom:547.382133pt;}
.y22{bottom:547.710000pt;}
.y8c{bottom:547.824320pt;}
.y68{bottom:548.678667pt;}
.y1d5{bottom:551.979467pt;}
.y1b0{bottom:553.586533pt;}
.ya9{bottom:554.706667pt;}
.y284{bottom:555.883733pt;}
.y193{bottom:563.426400pt;}
.y2bb{bottom:565.093867pt;}
.y283{bottom:568.557467pt;}
.y17d{bottom:570.166320pt;}
.y22f{bottom:570.706667pt;}
.y201{bottom:571.125933pt;}
.y218{bottom:571.186533pt;}
.y21{bottom:571.470000pt;}
.y8b{bottom:571.584453pt;}
.y145{bottom:573.336000pt;}
.y67{bottom:573.986933pt;}
.y1d4{bottom:575.739600pt;}
.yd1{bottom:576.179200pt;}
.y1af{bottom:577.346667pt;}
.y281{bottom:581.231200pt;}
.y2ba{bottom:582.805600pt;}
.y45{bottom:584.040000pt;}
.y11e{bottom:585.686493pt;}
.y192{bottom:587.186533pt;}
.y10c{bottom:592.396133pt;}
.y10d{bottom:592.662800pt;}
.y27e{bottom:593.904933pt;}
.y17c{bottom:593.926453pt;}
.ya8{bottom:594.466800pt;}
.y200{bottom:594.886067pt;}
.y217{bottom:594.946667pt;}
.y20{bottom:595.230133pt;}
.y8a{bottom:595.344587pt;}
.y12{bottom:596.649733pt;}
.y66{bottom:597.747067pt;}
.y1d3{bottom:599.499733pt;}
.y2b9{bottom:600.517333pt;}
.y1ae{bottom:601.106667pt;}
.y14a{bottom:603.186533pt;}
.yd0{bottom:606.485867pt;}
.y44{bottom:607.800133pt;}
.y11d{bottom:609.446627pt;}
.y2{bottom:616.260107pt;}
.y144{bottom:616.602667pt;}
.y27d{bottom:617.284533pt;}
.y17b{bottom:617.686587pt;}
.y2b6{bottom:618.229067pt;}
.y89{bottom:619.104587pt;}
.y10b{bottom:622.636133pt;}
.y65{bottom:622.678667pt;}
.y1d2{bottom:623.259733pt;}
.y149{bottom:626.946667pt;}
.y279{bottom:629.958267pt;}
.y43{bottom:631.560267pt;}
.y11c{bottom:633.206760pt;}
.ya7{bottom:634.226933pt;}
.y1ff{bottom:634.646200pt;}
.y191{bottom:634.706667pt;}
.y2b5{bottom:635.940933pt;}
.ycf{bottom:636.792533pt;}
.y1ad{bottom:637.266800pt;}
.y17a{bottom:641.446587pt;}
.y216{bottom:642.466800pt;}
.y1f{bottom:642.750267pt;}
.y88{bottom:642.864720pt;}
.y1d1{bottom:647.019867pt;}
.y1ec{bottom:650.706667pt;}
.y276{bottom:651.448533pt;}
.y11{bottom:652.126267pt;}
.y10a{bottom:652.942800pt;}
.y2b2{bottom:653.652667pt;}
.y42{bottom:655.320267pt;}
.y11b{bottom:656.966760pt;}
.y22e{bottom:657.986933pt;}
.y1fe{bottom:658.406200pt;}
.y190{bottom:658.466800pt;}
.y143{bottom:659.869333pt;}
.y1ac{bottom:661.026933pt;}
.y273{bottom:664.358400pt;}
.y179{bottom:665.206720pt;}
.y215{bottom:666.226933pt;}
.y1e{bottom:666.510400pt;}
.yce{bottom:667.099200pt;}
.y1d0{bottom:670.780000pt;}
.y2af{bottom:671.600533pt;}
.y64{bottom:671.747067pt;}
.ya6{bottom:673.986933pt;}
.y1eb{bottom:674.466800pt;}
.y87{bottom:679.024853pt;}
.y11a{bottom:680.726893pt;}
.y1fd{bottom:682.166333pt;}
.y18f{bottom:682.226933pt;}
.y109{bottom:683.249467pt;}
.y178{bottom:688.966853pt;}
.y1d{bottom:690.270533pt;}
.y1cf{bottom:694.540000pt;}
.y41{bottom:695.080400pt;}
.y63{bottom:695.507200pt;}
.y1ab{bottom:697.186933pt;}
.ycd{bottom:697.405867pt;}
.ya5{bottom:697.747067pt;}
.y1ea{bottom:698.226933pt;}
.y86{bottom:702.784853pt;}
.y142{bottom:703.136000pt;}
.y119{bottom:704.487027pt;}
.y18e{bottom:705.986933pt;}
.y10{bottom:707.602800pt;}
.y177{bottom:712.726853pt;}
.y108{bottom:713.556133pt;}
.y214{bottom:713.747067pt;}
.y269{bottom:713.893333pt;}
.y1c{bottom:714.030533pt;}
.y1ce{bottom:718.300133pt;}
.y40{bottom:718.840533pt;}
.y62{bottom:719.267200pt;}
.y22d{bottom:721.507200pt;}
.y1fc{bottom:721.926467pt;}
.y1e9{bottom:721.986933pt;}
.y85{bottom:726.544987pt;}
.ycb{bottom:727.712533pt;}
.ya4{bottom:737.507200pt;}
.y1b{bottom:737.790667pt;}
.y263{bottom:738.991200pt;}
.y1cd{bottom:742.060267pt;}
.y3f{bottom:742.600533pt;}
.y61{bottom:743.027333pt;}
.y107{bottom:743.862800pt;}
.y22c{bottom:745.267200pt;}
.y1fb{bottom:745.686467pt;}
.y1e8{bottom:745.747067pt;}
.y141{bottom:746.402667pt;}
.y84{bottom:750.305120pt;}
.y118{bottom:752.007160pt;}
.y18d{bottom:753.507200pt;}
.yc8{bottom:758.019200pt;}
.y176{bottom:760.105787pt;}
.y213{bottom:761.267200pt;}
.yf{bottom:763.079467pt;}
.y250{bottom:768.724800pt;}
.y1fa{bottom:769.446600pt;}
.y1aa{bottom:769.507200pt;}
.y245{bottom:770.286933pt;}
.y83{bottom:774.065120pt;}
.y106{bottom:774.169467pt;}
.y117{bottom:775.767293pt;}
.ya3{bottom:777.267200pt;}
.y1cc{bottom:778.220267pt;}
.y3e{bottom:782.360667pt;}
.y175{bottom:783.876853pt;}
.y22b{bottom:785.027333pt;}
.y1a{bottom:785.310933pt;}
.yc5{bottom:788.325867pt;}
.y13c{bottom:789.669333pt;}
.y60{bottom:791.719067pt;}
.y148{bottom:793.267200pt;}
.y165{bottom:797.049200pt;}
.y82{bottom:797.825253pt;}
.y116{bottom:799.527293pt;}
.y26d{bottom:799.711467pt;}
.ya2{bottom:801.027333pt;}
.y105{bottom:804.476133pt;}
.y3d{bottom:806.120800pt;}
.y174{bottom:807.881520pt;}
.y22a{bottom:808.787467pt;}
.y19{bottom:809.070933pt;}
.y1f9{bottom:809.206733pt;}
.y1cb{bottom:814.380400pt;}
.y5f{bottom:817.027333pt;}
.ye{bottom:818.556000pt;}
.yc3{bottom:819.132533pt;}
.y81{bottom:821.585387pt;}
.y115{bottom:823.287427pt;}
.ya1{bottom:824.787467pt;}
.y3c{bottom:829.880800pt;}
.y173{bottom:831.804720pt;}
.y18{bottom:832.831067pt;}
.y13b{bottom:832.936000pt;}
.y1f8{bottom:832.966867pt;}
.y104{bottom:834.782800pt;}
.y1ca{bottom:838.140533pt;}
.yc0{bottom:838.221307pt;}
.y5e{bottom:840.787467pt;}
.y80{bottom:845.345387pt;}
.ya0{bottom:848.547467pt;}
.yc1{bottom:848.772533pt;}
.y3b{bottom:853.640933pt;}
.y172{bottom:855.564720pt;}
.y17{bottom:856.591200pt;}
.y1f7{bottom:856.726867pt;}
.y1c9{bottom:861.900533pt;}
.ybf{bottom:861.981440pt;}
.y5d{bottom:864.547467pt;}
.y103{bottom:865.089467pt;}
.y7f{bottom:869.105520pt;}
.y114{bottom:870.807560pt;}
.y9f{bottom:872.307600pt;}
.y138{bottom:873.469333pt;}
.yd{bottom:874.032533pt;}
.y3a{bottom:877.401067pt;}
.y171{bottom:879.324853pt;}
.y16{bottom:880.351200pt;}
.y1c8{bottom:885.660667pt;}
.ybe{bottom:885.741440pt;}
.y5c{bottom:888.307600pt;}
.y113{bottom:894.567693pt;}
.y102{bottom:895.396133pt;}
.y9e{bottom:896.067733pt;}
.y1f6{bottom:896.487000pt;}
.y39{bottom:901.161067pt;}
.y15{bottom:904.111333pt;}
.y1c7{bottom:909.420800pt;}
.y5b{bottom:912.067733pt;}
.y135{bottom:914.002667pt;}
.y7e{bottom:916.660320pt;}
.y112{bottom:918.327827pt;}
.y9d{bottom:919.827733pt;}
.y1f5{bottom:920.247133pt;}
.y38{bottom:924.921200pt;}
.y101{bottom:925.702800pt;}
.y170{bottom:926.844987pt;}
.y265{bottom:927.020000pt;}
.y267{bottom:930.478267pt;}
.y1c6{bottom:933.180800pt;}
.ybd{bottom:934.899307pt;}
.y5a{bottom:935.827733pt;}
.y7d{bottom:940.420320pt;}
.y111{bottom:942.087827pt;}
.y164{bottom:943.587867pt;}
.y100{bottom:956.009467pt;}
.yc{bottom:957.247333pt;}
.y131{bottom:957.569333pt;}
.y59{bottom:959.587867pt;}
.y12a{bottom:962.229800pt;}
.y1f4{bottom:962.363133pt;}
.y7c{bottom:964.180453pt;}
.y16f{bottom:966.605120pt;}
.y1c5{bottom:969.340933pt;}
.y242{bottom:976.279467pt;}
.yff{bottom:986.316133pt;}
.yfe{bottom:1016.622800pt;}
.h55{height:10.076017pt;}
.h49{height:12.595021pt;}
.h51{height:12.673740pt;}
.h43{height:14.197067pt;}
.h41{height:16.317640pt;}
.h54{height:17.633027pt;}
.h53{height:19.383291pt;}
.h3c{height:21.273773pt;}
.h4c{height:21.411533pt;}
.h50{height:22.671040pt;}
.h4d{height:23.300787pt;}
.h38{height:23.563365pt;}
.h4a{height:23.944065pt;}
.h4b{height:25.084259pt;}
.h52{height:25.819800pt;}
.h4e{height:27.364646pt;}
.h46{height:27.587323pt;}
.hc{height:27.986613pt;}
.h47{height:28.338800pt;}
.h15{height:29.473333pt;}
.h14{height:29.640000pt;}
.h1b{height:29.906667pt;}
.h17{height:29.973333pt;}
.h26{height:29.986973pt;}
.h35{height:30.257064pt;}
.h12{height:30.306667pt;}
.h42{height:31.502921pt;}
.h37{height:31.606166pt;}
.h29{height:32.424333pt;}
.h45{height:32.518321pt;}
.h3b{height:32.888113pt;}
.h48{height:33.065614pt;}
.h34{height:33.339260pt;}
.h2b{height:33.466653pt;}
.h4f{height:33.691680pt;}
.h28{height:33.971693pt;}
.h2a{height:34.633320pt;}
.h3d{height:36.486195pt;}
.h3a{height:38.766582pt;}
.h16{height:39.040000pt;}
.h1c{height:39.101562pt;}
.h40{height:39.611347pt;}
.h24{height:40.200000pt;}
.h1a{height:40.648438pt;}
.h18{height:41.066667pt;}
.h23{height:42.233333pt;}
.h19{height:42.279907pt;}
.h6{height:42.650667pt;}
.h25{height:42.933333pt;}
.h3e{height:44.203267pt;}
.he{height:45.173333pt;}
.h3f{height:45.364207pt;}
.h1f{height:47.812500pt;}
.h1e{height:48.151042pt;}
.h31{height:49.148853pt;}
.hd{height:49.280000pt;}
.h27{height:49.399373pt;}
.h2d{height:50.203125pt;}
.h13{height:50.933333pt;}
.h3{height:52.593750pt;}
.hb{height:52.966146pt;}
.ha{height:57.375000pt;}
.h9{height:57.781250pt;}
.h30{height:61.120000pt;}
.h22{height:61.600000pt;}
.h7{height:61.885417pt;}
.h5{height:66.645833pt;}
.h32{height:68.046310pt;}
.h44{height:103.730387pt;}
.h4{height:107.280000pt;}
.h39{height:115.747400pt;}
.h33{height:148.661600pt;}
.h36{height:154.348000pt;}
.h2{height:971.338933pt;}
.h1d{height:973.333333pt;}
.hf{height:976.096400pt;}
.h8{height:976.468800pt;}
.h21{height:978.738267pt;}
.h10{height:980.688933pt;}
.h11{height:981.858933pt;}
.h20{height:982.356400pt;}
.h2c{height:983.113600pt;}
.h2f{height:983.195067pt;}
.h2e{height:985.849467pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:23.986613pt;}
.w20{width:28.445280pt;}
.w30{width:29.821653pt;}
.w32{width:41.901840pt;}
.w35{width:43.084293pt;}
.w34{width:46.727493pt;}
.w31{width:47.622333pt;}
.w33{width:49.284160pt;}
.w13{width:60.933333pt;}
.w2c{width:81.576120pt;}
.w2e{width:81.615480pt;}
.w2f{width:81.649453pt;}
.w2d{width:81.728173pt;}
.w15{width:86.733333pt;}
.w19{width:88.466667pt;}
.w18{width:89.200000pt;}
.w17{width:96.800000pt;}
.w14{width:98.666667pt;}
.w1f{width:98.970547pt;}
.w1a{width:101.116760pt;}
.w1b{width:101.670853pt;}
.w16{width:102.133333pt;}
.w1e{width:106.842787pt;}
.w1d{width:152.315733pt;}
.wa{width:159.398000pt;}
.wd{width:159.464667pt;}
.we{width:159.564667pt;}
.wf{width:159.631333pt;}
.wb{width:159.831333pt;}
.wc{width:159.898000pt;}
.w10{width:159.964667pt;}
.w2b{width:206.208400pt;}
.w1c{width:207.146667pt;}
.w25{width:241.011467pt;}
.w24{width:259.246667pt;}
.w29{width:343.775067pt;}
.w2a{width:350.352800pt;}
.w27{width:352.706533pt;}
.w26{width:353.150533pt;}
.w28{width:479.942400pt;}
.w23{width:485.630267pt;}
.w9{width:641.192267pt;}
.w12{width:650.718267pt;}
.w8{width:650.997600pt;}
.w6{width:651.463067pt;}
.w4{width:651.591867pt;}
.w22{width:651.618800pt;}
.w21{width:652.061600pt;}
.w3{width:652.629600pt;}
.w7{width:660.453600pt;}
.w11{width:660.650667pt;}
.w2{width:664.035733pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:1.259507pt;}
.x40{left:3.077333pt;}
.x28{left:4.096360pt;}
.xc{left:5.052000pt;}
.xe{left:5.993333pt;}
.x24{left:7.237867pt;}
.x25{left:9.278933pt;}
.x2{left:10.755067pt;}
.x42{left:12.060400pt;}
.x55{left:14.279600pt;}
.x23{left:17.439333pt;}
.x49{left:18.632400pt;}
.x1a{left:23.525467pt;}
.x46{left:26.600000pt;}
.x20{left:27.804000pt;}
.x3a{left:28.768013pt;}
.x1f{left:29.671067pt;}
.x21{left:31.715733pt;}
.x22{left:33.749600pt;}
.x3c{left:35.019720pt;}
.x1b{left:36.609467pt;}
.x1d{left:38.434133pt;}
.x16{left:39.832133pt;}
.x13{left:41.873200pt;}
.x17{left:44.077333pt;}
.x14{left:46.114800pt;}
.x3{left:48.589853pt;}
.x26{left:49.732400pt;}
.x4f{left:51.316853pt;}
.x19{left:52.234267pt;}
.x18{left:54.104933pt;}
.x3f{left:59.375467pt;}
.x38{left:60.271333pt;}
.x35{left:62.423333pt;}
.x1{left:64.835493pt;}
.x37{left:67.686667pt;}
.xb{left:70.538560pt;}
.x27{left:71.494200pt;}
.xf{left:76.257227pt;}
.x29{left:78.257227pt;}
.x3d{left:83.159213pt;}
.x56{left:90.841933pt;}
.x47{left:95.879200pt;}
.x1e{left:109.696400pt;}
.x34{left:113.728347pt;}
.x15{left:117.595600pt;}
.x1c{left:120.938000pt;}
.x43{left:132.170000pt;}
.x4c{left:133.089773pt;}
.x45{left:134.694133pt;}
.x2a{left:140.523867pt;}
.x5{left:142.543840pt;}
.x4{left:183.625840pt;}
.x8{left:199.360373pt;}
.x7{left:202.280240pt;}
.x4d{left:214.896667pt;}
.x9{left:236.017840pt;}
.x12{left:237.055333pt;}
.x2b{left:240.523867pt;}
.x3b{left:258.565600pt;}
.x44{left:261.409467pt;}
.x31{left:267.377467pt;}
.xa{left:281.652507pt;}
.x4e{left:296.703467pt;}
.x4a{left:297.950000pt;}
.x2c{left:328.590533pt;}
.x6{left:332.017840pt;}
.x32{left:369.827467pt;}
.x10{left:397.086667pt;}
.x41{left:403.693067pt;}
.x48{left:405.091733pt;}
.x2d{left:432.057200pt;}
.x50{left:443.140000pt;}
.x33{left:472.831733pt;}
.x30{left:509.916600pt;}
.x3e{left:511.023067pt;}
.x51{left:521.213733pt;}
.x2e{left:530.190533pt;}
.x11{left:557.318133pt;}
.x52{left:563.430400pt;}
.x36{left:581.007867pt;}
.x53{left:613.029600pt;}
.x2f{left:620.723867pt;}
.x54{left:660.072000pt;}
.x39{left:694.330800pt;}
.xd{left:703.226800pt;}
}




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