
    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_64cea64ebe2371ea6392da38.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_997ca64947e3568ff323215c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c45a1fe21521eeb77d7d6af8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_331ff9b7e0597eea110cc39a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_89261a2a68161e92325755c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e0370b393327f4e4e1c920a5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8d651fa8930bd094428dff24.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.990723;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_58985701b4c755d552b4c977.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_79096374844f2a59dbbf0cb8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dd09d4e8267a68a5d632e734.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093750;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_38b8dfd9f5b4801eb933687d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011719;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_3c8277ea11a736476bb5e69e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c65e87b6da5fa392ea26e034.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6e1ec153d7b6f719ef8d6e97.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_79d0581f1824809943f35344.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.046387;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.237173,0.237173,0.079050,0,0);-ms-transform:matrix(0.000000,-0.237173,0.237173,0.079050,0,0);-webkit-transform:matrix(0.000000,-0.237173,0.237173,0.079050,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-79.920000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:31.260000px;}
.v6{vertical-align:60.060000px;}
.v5{vertical-align:61.320000px;}
.ls25{letter-spacing:-0.666000px;}
.ls20{letter-spacing:-0.269400px;}
.lsb{letter-spacing:-0.208200px;}
.ls1b{letter-spacing:-0.206400px;}
.ls1d{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.008640px;}
.ls14{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.106800px;}
.lse{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.223920px;}
.lsc{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.262200px;}
.ls1f{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.513600px;}
.lsa{letter-spacing:0.702000px;}
.ls3{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.900000px;}
.ls15{letter-spacing:1.056000px;}
.ls12{letter-spacing:3.780000px;}
.ls13{letter-spacing:10.260000px;}
.ls23{letter-spacing:16.506720px;}
.ls11{letter-spacing:38.340000px;}
.ls1c{letter-spacing:43.146720px;}
.ls10{letter-spacing:46.026720px;}
.ls22{letter-spacing:46.170720px;}
.ls19{letter-spacing:49.626720px;}
.ls21{letter-spacing:55.386720px;}
.ls4{letter-spacing:64.026720px;}
.ls5{letter-spacing:84.186720px;}
.lsf{letter-spacing:91.386720px;}
.ls6{letter-spacing:91.506720px;}
.ls1{letter-spacing:303.444000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws2{word-spacing:-24.300000px;}
.ws3{word-spacing:-23.731800px;}
.ws0{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.ws1d{word-spacing:-15.120000px;}
.ws15{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.833200px;}
.ws1b{word-spacing:-14.274000px;}
.ws14{word-spacing:-13.500000px;}
.ws17{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.790600px;}
.ws1{word-spacing:-10.440000px;}
.ws13{word-spacing:-9.728640px;}
.ws4{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
.ws1c{word-spacing:26.460000px;}
.ws1a{word-spacing:59.580000px;}
.wsd{word-spacing:88.380000px;}
.ws8{word-spacing:109.260000px;}
.wsa{word-spacing:163.866480px;}
.ws9{word-spacing:200.706480px;}
.wse{word-spacing:217.078320px;}
.ws11{word-spacing:236.883360px;}
.ws10{word-spacing:289.203360px;}
._1{margin-left:-1917.060480px;}
._3{margin-left:-1644.183360px;}
._4{margin-left:-1170.942000px;}
._2f{margin-left:-598.388400px;}
._2c{margin-left:-447.533280px;}
._36{margin-left:-425.440080px;}
._37{margin-left:-424.141920px;}
._79{margin-left:-407.621520px;}
._43{margin-left:-390.880080px;}
._44{margin-left:-389.301840px;}
._25{margin-left:-369.796080px;}
._26{margin-left:-368.452800px;}
._46{margin-left:-367.060080px;}
._2b{margin-left:-365.328720px;}
._47{margin-left:-352.788480px;}
._45{margin-left:-338.899680px;}
._39{margin-left:-304.420080px;}
._2d{margin-left:-296.652960px;}
._1f{margin-left:-289.588320px;}
._17{margin-left:-245.320560px;}
._35{margin-left:-227.626560px;}
._29{margin-left:-224.089200px;}
._21{margin-left:-217.174320px;}
._20{margin-left:-213.255360px;}
._2a{margin-left:-203.500080px;}
._76{margin-left:-195.401520px;}
._1e{margin-left:-191.980080px;}
._38{margin-left:-178.328880px;}
._42{margin-left:-167.946480px;}
._78{margin-left:-163.470240px;}
._2e{margin-left:-155.986560px;}
._22{margin-left:-140.040000px;}
._23{margin-left:-50.860080px;}
._24{margin-left:-35.100000px;}
._7{margin-left:-3.346560px;}
._b{margin-left:-2.151360px;}
._2{margin-left:-1.126080px;}
._0{width:1.321920px;}
._6{width:2.991120px;}
._5{width:4.044000px;}
._9{width:5.550480px;}
._8{width:6.633360px;}
._a{width:8.237520px;}
._12{width:9.611280px;}
._f{width:11.055600px;}
._10{width:12.124080px;}
._c{width:13.147200px;}
._31{width:16.374960px;}
._e{width:17.390160px;}
._33{width:18.465840px;}
._11{width:19.471680px;}
._1b{width:21.563280px;}
._34{width:23.545440px;}
._27{width:24.680880px;}
._73{width:25.908000px;}
._13{width:26.931840px;}
._1d{width:28.019760px;}
._1a{width:30.011760px;}
._d{width:31.015440px;}
._15{width:32.191200px;}
._74{width:33.253920px;}
._48{width:34.433280px;}
._3a{width:35.975520px;}
._14{width:37.110960px;}
._32{width:38.311200px;}
._28{width:40.211280px;}
._41{width:41.234400px;}
._3f{width:42.302880px;}
._40{width:43.526880px;}
._4a{width:45.580320px;}
._6a{width:46.689120px;}
._68{width:48.106800px;}
._5b{width:50.138640px;}
._1c{width:52.452000px;}
._6e{width:53.963280px;}
._77{width:57.010320px;}
._51{width:59.341680px;}
._65{width:62.090640px;}
._19{width:63.285840px;}
._69{width:68.544720px;}
._30{width:70.464960px;}
._6f{width:71.532720px;}
._5d{width:73.086480px;}
._6c{width:74.460960px;}
._54{width:75.656160px;}
._3e{width:77.256480px;}
._3d{width:78.418320px;}
._63{width:79.540560px;}
._61{width:84.263040px;}
._52{width:85.994640px;}
._55{width:88.026480px;}
._4c{width:90.177840px;}
._66{width:91.851120px;}
._72{width:95.436720px;}
._56{width:102.751200px;}
._4d{width:104.878800px;}
._5f{width:106.133040px;}
._70{width:108.165600px;}
._3c{width:110.077920px;}
._3b{width:111.213360px;}
._4e{width:116.113680px;}
._6d{width:120.117600px;}
._16{width:121.698000px;}
._5a{width:125.256960px;}
._58{width:141.153120px;}
._53{width:145.913040px;}
._4b{width:153.403920px;}
._75{width:154.923840px;}
._5e{width:160.395840px;}
._50{width:167.507280px;}
._71{width:168.822000px;}
._67{width:184.120560px;}
._6b{width:194.562000px;}
._4f{width:198.941040px;}
._49{width:202.765680px;}
._5c{width:208.980720px;}
._59{width:213.462720px;}
._62{width:220.275360px;}
._57{width:239.757120px;}
._7a{width:266.780880px;}
._64{width:584.820000px;}
._60{width:638.820000px;}
._18{width:991.538640px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:40.982709px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y109{bottom:-20.025000px;}
.y108{bottom:-6.165000px;}
.y0{bottom:0.000000px;}
.y236{bottom:1.440000px;}
.y81{bottom:2.700000px;}
.y84{bottom:5.760000px;}
.y170{bottom:5.805000px;}
.y146{bottom:5.940000px;}
.y144{bottom:6.114000px;}
.y59{bottom:6.120000px;}
.y147{bottom:6.300000px;}
.y8{bottom:6.516000px;}
.y7{bottom:6.876000px;}
.y82{bottom:7.200000px;}
.y4e{bottom:7.236000px;}
.yf0{bottom:7.380000px;}
.y20f{bottom:7.560000px;}
.y212{bottom:7.740000px;}
.y214{bottom:8.100000px;}
.y21d{bottom:8.460000px;}
.y225{bottom:16.380000px;}
.y161{bottom:18.000000px;}
.y1a0{bottom:21.240000px;}
.yd9{bottom:21.780000px;}
.y58{bottom:22.545000px;}
.y92{bottom:24.585000px;}
.y5a{bottom:24.705000px;}
.y91{bottom:24.915000px;}
.y62{bottom:25.560000px;}
.y164{bottom:25.740000px;}
.y143{bottom:25.914000px;}
.y61{bottom:25.920000px;}
.y259{bottom:25.965000px;}
.y11b{bottom:26.100000px;}
.yef{bottom:26.640000px;}
.yfb{bottom:26.670000px;}
.ye5{bottom:26.685000px;}
.y106{bottom:26.820000px;}
.yfa{bottom:26.850000px;}
.yce{bottom:28.515000px;}
.ycd{bottom:28.590000px;}
.y20c{bottom:28.980000px;}
.y211{bottom:29.160000px;}
.y141{bottom:29.334000px;}
.y217{bottom:29.340000px;}
.y213{bottom:29.520000px;}
.y235{bottom:29.700000px;}
.y25f{bottom:30.285000px;}
.y1fa{bottom:31.680000px;}
.y178{bottom:34.380000px;}
.y160{bottom:37.440000px;}
.y4c{bottom:37.875000px;}
.y4b{bottom:38.340000px;}
.y4a{bottom:38.490000px;}
.y1a9{bottom:39.420000px;}
.y9{bottom:39.960000px;}
.y1f0{bottom:40.320000px;}
.y90{bottom:40.395000px;}
.y19f{bottom:41.040000px;}
.yd8{bottom:41.400000px;}
.y142{bottom:42.294000px;}
.ycc{bottom:44.070000px;}
.y15d{bottom:45.255000px;}
.y60{bottom:45.360000px;}
.y11a{bottom:45.540000px;}
.y26c{bottom:45.570000px;}
.y1c8{bottom:45.714000px;}
.y185{bottom:45.720000px;}
.y258{bottom:45.765000px;}
.y119{bottom:45.900000px;}
.yee{bottom:46.080000px;}
.yf9{bottom:46.110000px;}
.ye4{bottom:46.125000px;}
.y105{bottom:46.260000px;}
.y20b{bottom:48.960000px;}
.y140{bottom:49.134000px;}
.y1db{bottom:49.140000px;}
.y21f{bottom:49.680000px;}
.y25e{bottom:50.085000px;}
.y216{bottom:50.940000px;}
.y234{bottom:51.120000px;}
.y218{bottom:51.300000px;}
.y1f9{bottom:51.480000px;}
.y49{bottom:53.970000px;}
.y15f{bottom:54.000000px;}
.y177{bottom:54.180000px;}
.y227{bottom:54.360000px;}
.y6{bottom:55.440000px;}
.y1a8{bottom:59.220000px;}
.y1ef{bottom:60.120000px;}
.yd6{bottom:60.660000px;}
.y15c{bottom:60.735000px;}
.yd7{bottom:60.840000px;}
.y162{bottom:62.100000px;}
.y5f{bottom:65.160000px;}
.y118{bottom:65.340000px;}
.y1c7{bottom:65.514000px;}
.yed{bottom:65.520000px;}
.yf8{bottom:65.550000px;}
.ye3{bottom:65.565000px;}
.y1dd{bottom:65.694000px;}
.y168{bottom:65.700000px;}
.y21e{bottom:67.680000px;}
.y20a{bottom:68.754000px;}
.y13f{bottom:68.934000px;}
.y25d{bottom:69.885000px;}
.y176{bottom:70.560000px;}
.y1fe{bottom:71.460000px;}
.y1f8{bottom:71.490000px;}
.y95{bottom:72.105000px;}
.y233{bottom:72.720000px;}
.y23c{bottom:75.240000px;}
.y226{bottom:76.140000px;}
.y15b{bottom:76.215000px;}
.y8f{bottom:78.765000px;}
.y93{bottom:78.945000px;}
.y1a7{bottom:79.020000px;}
.y1ee{bottom:79.920000px;}
.yd5{bottom:80.100000px;}
.y19e{bottom:80.640000px;}
.y48{bottom:81.075000px;}
.y1dc{bottom:81.894000px;}
.y1ff{bottom:82.080000px;}
.y37{bottom:82.656000px;}
.y148{bottom:84.456000px;}
.yec{bottom:84.960000px;}
.yf7{bottom:84.990000px;}
.ye2{bottom:85.005000px;}
.y5e{bottom:85.140000px;}
.y1c6{bottom:85.494000px;}
.y167{bottom:85.500000px;}
.y1fc{bottom:85.530000px;}
.y257{bottom:85.545000px;}
.y94{bottom:87.585000px;}
.y209{bottom:88.554000px;}
.y13e{bottom:88.734000px;}
.y25c{bottom:89.685000px;}
.y1c3{bottom:90.354000px;}
.ycb{bottom:90.975000px;}
.y1e6{bottom:91.260000px;}
.y1f7{bottom:91.290000px;}
.y1d4{bottom:93.276000px;}
.y7a{bottom:93.456000px;}
.y232{bottom:94.320000px;}
.yc9{bottom:94.356000px;}
.y23b{bottom:95.040000px;}
.y46{bottom:95.076000px;}
.y15a{bottom:97.815000px;}
.y26a{bottom:98.496000px;}
.y188{bottom:98.640000px;}
.y1a6{bottom:98.820000px;}
.yd3{bottom:99.390000px;}
.yd4{bottom:99.570000px;}
.y1ed{bottom:99.720000px;}
.y19d{bottom:100.440000px;}
.y1f1{bottom:101.700000px;}
.y1fb{bottom:101.730000px;}
.y117{bottom:101.880000px;}
.y36{bottom:102.456000px;}
.ye9{bottom:103.860000px;}
.yf4{bottom:103.890000px;}
.yf1{bottom:104.220000px;}
.y12b{bottom:104.256000px;}
.ye1{bottom:104.265000px;}
.yeb{bottom:104.400000px;}
.yf6{bottom:104.430000px;}
.y5d{bottom:104.940000px;}
.y1c5{bottom:105.294000px;}
.y166{bottom:105.300000px;}
.y256{bottom:105.345000px;}
.y1b0{bottom:105.480000px;}
.y1b6{bottom:106.236000px;}
.y208{bottom:108.354000px;}
.y13d{bottom:108.534000px;}
.y25b{bottom:109.665000px;}
.y1c2{bottom:110.154000px;}
.y1e5{bottom:111.060000px;}
.y1f6{bottom:111.090000px;}
.y79{bottom:113.256000px;}
.y159{bottom:113.475000px;}
.yc8{bottom:114.156000px;}
.y23a{bottom:114.840000px;}
.y45{bottom:114.876000px;}
.y231{bottom:115.920000px;}
.ya1{bottom:116.496000px;}
.y8e{bottom:117.975000px;}
.y269{bottom:118.476000px;}
.y187{bottom:118.620000px;}
.y1a5{bottom:118.800000px;}
.y1ec{bottom:119.520000px;}
.y19c{bottom:120.060000px;}
.y1b5{bottom:120.240000px;}
.y1c4{bottom:121.494000px;}
.ye8{bottom:123.300000px;}
.y35{bottom:123.336000px;}
.yf3{bottom:123.510000px;}
.yea{bottom:123.660000px;}
.ye0{bottom:123.705000px;}
.y104{bottom:123.840000px;}
.yf5{bottom:123.870000px;}
.y12a{bottom:124.056000px;}
.y28e{bottom:124.416000px;}
.y207{bottom:124.734000px;}
.y5c{bottom:124.740000px;}
.y145{bottom:124.776000px;}
.y173{bottom:124.920000px;}
.y184{bottom:125.100000px;}
.y255{bottom:125.145000px;}
.y206{bottom:125.274000px;}
.y175{bottom:125.280000px;}
.y25a{bottom:125.865000px;}
.y244{bottom:126.585000px;}
.y13b{bottom:128.154000px;}
.y1da{bottom:128.334000px;}
.y13c{bottom:128.514000px;}
.y158{bottom:128.955000px;}
.y1c1{bottom:130.134000px;}
.y1e4{bottom:130.860000px;}
.y1f5{bottom:130.890000px;}
.y78{bottom:133.056000px;}
.y8d{bottom:133.455000px;}
.yc7{bottom:133.956000px;}
.y44{bottom:134.676000px;}
.y186{bottom:134.820000px;}
.y239{bottom:134.850000px;}
.ya0{bottom:136.296000px;}
.y230{bottom:137.370000px;}
.y268{bottom:138.276000px;}
.y1a4{bottom:138.645000px;}
.y1eb{bottom:139.545000px;}
.y1b4{bottom:140.040000px;}
.y19b{bottom:140.265000px;}
.ydf{bottom:143.145000px;}
.y103{bottom:143.280000px;}
.y34{bottom:143.316000px;}
.y129{bottom:143.856000px;}
.y28d{bottom:144.216000px;}
.y172{bottom:144.720000px;}
.y183{bottom:144.900000px;}
.y254{bottom:144.945000px;}
.y205{bottom:145.074000px;}
.y174{bottom:145.080000px;}
.y13a{bottom:145.476000px;}
.y243{bottom:146.385000px;}
.y1d9{bottom:148.314000px;}
.y1c0{bottom:149.574000px;}
.y1e3{bottom:150.660000px;}
.y1f4{bottom:150.690000px;}
.yc6{bottom:153.750000px;}
.y77{bottom:153.930000px;}
.y43{bottom:154.650000px;}
.y9f{bottom:156.090000px;}
.y267{bottom:158.070000px;}
.y1a3{bottom:158.445000px;}
.y22f{bottom:158.970000px;}
.y1ea{bottom:159.345000px;}
.y1b3{bottom:159.840000px;}
.y19a{bottom:160.065000px;}
.ydc{bottom:162.045000px;}
.y107{bottom:162.360000px;}
.ye6{bottom:162.405000px;}
.y102{bottom:162.540000px;}
.yde{bottom:162.585000px;}
.y33{bottom:163.830000px;}
.y28c{bottom:164.010000px;}
.y253{bottom:164.745000px;}
.y204{bottom:164.874000px;}
.y182{bottom:164.880000px;}
.y242{bottom:166.365000px;}
.y1d8{bottom:168.114000px;}
.y1bf{bottom:169.374000px;}
.y1e2{bottom:170.460000px;}
.y1fd{bottom:170.640000px;}
.y1f3{bottom:170.670000px;}
.yc5{bottom:173.730000px;}
.y76{bottom:173.910000px;}
.y238{bottom:174.450000px;}
.y42{bottom:175.530000px;}
.y9e{bottom:175.890000px;}
.y14a{bottom:176.685000px;}
.y1a2{bottom:178.245000px;}
.y266{bottom:178.950000px;}
.y1e9{bottom:179.145000px;}
.y1b2{bottom:179.640000px;}
.y199{bottom:179.865000px;}
.y22e{bottom:180.570000px;}
.ydb{bottom:181.665000px;}
.y101{bottom:181.980000px;}
.ydd{bottom:182.025000px;}
.y128{bottom:183.630000px;}
.y32{bottom:183.990000px;}
.y203{bottom:184.674000px;}
.y181{bottom:184.680000px;}
.y252{bottom:184.725000px;}
.y157{bottom:185.970000px;}
.y241{bottom:186.165000px;}
.y1d7{bottom:187.914000px;}
.y1be{bottom:189.534000px;}
.y1e1{bottom:190.470000px;}
.yc4{bottom:193.530000px;}
.y75{bottom:193.710000px;}
.y1a1{bottom:194.625000px;}
.y41{bottom:195.330000px;}
.y9d{bottom:195.870000px;}
.y1b1{bottom:196.050000px;}
.y265{bottom:198.750000px;}
.y1e8{bottom:198.945000px;}
.y198{bottom:199.665000px;}
.yfe{bottom:200.880000px;}
.y100{bottom:201.420000px;}
.y156{bottom:201.630000px;}
.y22d{bottom:202.170000px;}
.y127{bottom:203.070000px;}
.y28b{bottom:203.790000px;}
.y202{bottom:204.474000px;}
.y180{bottom:204.480000px;}
.y251{bottom:204.525000px;}
.y1af{bottom:204.690000px;}
.y31{bottom:204.870000px;}
.y240{bottom:205.965000px;}
.y1d6{bottom:207.714000px;}
.y1bd{bottom:209.334000px;}
.y1e0{bottom:210.270000px;}
.yc3{bottom:213.330000px;}
.y74{bottom:213.510000px;}
.y40{bottom:215.130000px;}
.y9c{bottom:215.670000px;}
.y155{bottom:217.110000px;}
.y264{bottom:218.730000px;}
.y197{bottom:219.645000px;}
.yfd{bottom:220.500000px;}
.yff{bottom:220.860000px;}
.y22c{bottom:223.770000px;}
.y126{bottom:224.310000px;}
.y250{bottom:224.325000px;}
.y201{bottom:224.454000px;}
.y1ae{bottom:224.490000px;}
.y30{bottom:224.670000px;}
.y228{bottom:225.030000px;}
.y23f{bottom:225.765000px;}
.y1d5{bottom:227.514000px;}
.y1bc{bottom:229.359000px;}
.y1df{bottom:230.070000px;}
.yc2{bottom:233.130000px;}
.y73{bottom:233.310000px;}
.y9b{bottom:235.470000px;}
.y3f{bottom:236.010000px;}
.y263{bottom:238.530000px;}
.y154{bottom:238.710000px;}
.y196{bottom:239.445000px;}
.y125{bottom:244.110000px;}
.y24f{bottom:244.125000px;}
.y1ad{bottom:244.290000px;}
.y200{bottom:244.299000px;}
.y28a{bottom:244.470000px;}
.y22b{bottom:245.190000px;}
.y2f{bottom:245.370000px;}
.y23e{bottom:245.565000px;}
.y1bb{bottom:248.799000px;}
.yc1{bottom:252.570000px;}
.y72{bottom:253.110000px;}
.y9a{bottom:255.270000px;}
.y3e{bottom:255.990000px;}
.y262{bottom:259.050000px;}
.y195{bottom:259.245000px;}
.y17c{bottom:263.730000px;}
.y24e{bottom:263.925000px;}
.y17f{bottom:264.090000px;}
.y289{bottom:264.270000px;}
.y124{bottom:265.170000px;}
.y2e{bottom:265.530000px;}
.y22a{bottom:266.790000px;}
.y1b8{bottom:268.599000px;}
.y1ba{bottom:268.959000px;}
.yc0{bottom:272.550000px;}
.y71{bottom:272.730000px;}
.y99{bottom:275.070000px;}
.y3d{bottom:275.430000px;}
.y223{bottom:277.950000px;}
.y261{bottom:278.850000px;}
.y194{bottom:279.045000px;}
.y17b{bottom:283.530000px;}
.y17e{bottom:283.890000px;}
.y24d{bottom:283.935000px;}
.y288{bottom:284.070000px;}
.y123{bottom:284.970000px;}
.y2d{bottom:285.330000px;}
.yca{bottom:286.740000px;}
.y139{bottom:288.390000px;}
.y1b7{bottom:288.399000px;}
.y1b9{bottom:288.759000px;}
.ybf{bottom:289.110000px;}
.y153{bottom:292.065000px;}
.y70{bottom:292.530000px;}
.y229{bottom:293.430000px;}
.y98{bottom:294.690000px;}
.y3c{bottom:295.230000px;}
.y193{bottom:298.845000px;}
.y260{bottom:299.010000px;}
.y17a{bottom:303.330000px;}
.y1ab{bottom:303.510000px;}
.y17d{bottom:303.690000px;}
.y24c{bottom:303.735000px;}
.y1ac{bottom:303.870000px;}
.y2c{bottom:305.130000px;}
.y122{bottom:305.850000px;}
.y222{bottom:306.750000px;}
.y152{bottom:307.545000px;}
.y6f{bottom:312.330000px;}
.y245{bottom:313.590000px;}
.y97{bottom:314.490000px;}
.y138{bottom:314.670000px;}
.y3b{bottom:315.030000px;}
.y192{bottom:318.825000px;}
.y151{bottom:323.205000px;}
.y24b{bottom:323.535000px;}
.y2b{bottom:324.930000px;}
.y121{bottom:325.650000px;}
.y96{bottom:331.095000px;}
.y6e{bottom:332.175000px;}
.y3a{bottom:334.875000px;}
.y221{bottom:335.190000px;}
.yfc{bottom:336.495000px;}
.y191{bottom:338.625000px;}
.y1d3{bottom:341.175000px;}
.y24a{bottom:343.335000px;}
.y287{bottom:344.775000px;}
.y150{bottom:344.850000px;}
.y2a{bottom:344.955000px;}
.y120{bottom:346.575000px;}
.y6d{bottom:351.975000px;}
.y137{bottom:354.495000px;}
.y39{bottom:354.855000px;}
.y190{bottom:358.425000px;}
.y14f{bottom:360.330000px;}
.y1d2{bottom:360.975000px;}
.y249{bottom:363.135000px;}
.y29{bottom:364.755000px;}
.y286{bottom:365.655000px;}
.y8c{bottom:366.120000px;}
.y11f{bottom:366.555000px;}
.y6c{bottom:368.715000px;}
.y47{bottom:369.000000px;}
.y38{bottom:371.415000px;}
.y136{bottom:374.295000px;}
.y18f{bottom:378.225000px;}
.y1d1{bottom:380.775000px;}
.y179{bottom:381.135000px;}
.y248{bottom:383.115000px;}
.y28{bottom:384.555000px;}
.y285{bottom:385.455000px;}
.y11e{bottom:386.355000px;}
.y135{bottom:394.095000px;}
.y18e{bottom:398.025000px;}
.y1d0{bottom:400.575000px;}
.y247{bottom:402.915000px;}
.y27{bottom:404.355000px;}
.y284{bottom:405.435000px;}
.y11d{bottom:405.795000px;}
.y1aa{bottom:409.395000px;}
.y14e{bottom:409.860000px;}
.y134{bottom:413.895000px;}
.y18d{bottom:418.035000px;}
.y1cf{bottom:420.555000px;}
.y246{bottom:422.715000px;}
.y26{bottom:424.155000px;}
.ybe{bottom:425.055000px;}
.y283{bottom:425.235000px;}
.y14d{bottom:425.520000px;}
.y11c{bottom:425.595000px;}
.y133{bottom:433.695000px;}
.y18c{bottom:437.835000px;}
.y116{bottom:439.635000px;}
.y1ce{bottom:440.355000px;}
.y14c{bottom:441.000000px;}
.y21b{bottom:442.335000px;}
.y25{bottom:444.135000px;}
.ybd{bottom:444.855000px;}
.y282{bottom:445.035000px;}
.y132{bottom:453.675000px;}
.y1cd{bottom:456.915000px;}
.y18a{bottom:457.275000px;}
.y18b{bottom:457.635000px;}
.y14b{bottom:462.600000px;}
.y24{bottom:463.935000px;}
.y21a{bottom:464.115000px;}
.y220{bottom:464.295000px;}
.y281{bottom:464.475000px;}
.ybc{bottom:464.655000px;}
.y149{bottom:467.820000px;}
.y131{bottom:470.235000px;}
.y219{bottom:472.575000px;}
.y23{bottom:483.735000px;}
.ybb{bottom:484.635000px;}
.y22{bottom:503.535000px;}
.yba{bottom:504.435000px;}
.y280{bottom:504.615000px;}
.y21{bottom:523.335000px;}
.yb9{bottom:524.235000px;}
.y27f{bottom:524.415000px;}
.y2b8{bottom:532.875000px;}
.y1f2{bottom:537.015000px;}
.y6b{bottom:541.335000px;}
.y20{bottom:543.315000px;}
.yb8{bottom:544.035000px;}
.y27e{bottom:544.215000px;}
.y6a{bottom:561.135000px;}
.y1f{bottom:563.115000px;}
.yb7{bottom:563.835000px;}
.y27d{bottom:564.015000px;}
.y2b7{bottom:569.055000px;}
.yf2{bottom:570.135000px;}
.y69{bottom:580.935000px;}
.y1e{bottom:582.915000px;}
.yb6{bottom:583.815000px;}
.y2b6{bottom:590.835000px;}
.y68{bottom:600.945000px;}
.y1d{bottom:602.745000px;}
.yb5{bottom:603.645000px;}
.y27c{bottom:603.825000px;}
.y2b5{bottom:610.665000px;}
.y67{bottom:620.745000px;}
.y1c{bottom:622.545000px;}
.yb4{bottom:623.445000px;}
.y27b{bottom:623.625000px;}
.y2b4{bottom:630.645000px;}
.y20d{bottom:635.295000px;}
.y66{bottom:640.545000px;}
.y1b{bottom:642.165000px;}
.yb3{bottom:643.245000px;}
.y27a{bottom:643.425000px;}
.y2a2{bottom:645.225000px;}
.y2b3{bottom:650.445000px;}
.y115{bottom:653.325000px;}
.y8b{bottom:654.045000px;}
.y65{bottom:660.345000px;}
.y1a{bottom:661.965000px;}
.yb2{bottom:663.045000px;}
.y279{bottom:663.225000px;}
.y2a1{bottom:665.025000px;}
.y2b2{bottom:670.245000px;}
.y114{bottom:673.125000px;}
.y8a{bottom:674.025000px;}
.y64{bottom:680.865000px;}
.y19{bottom:682.125000px;}
.yb1{bottom:683.025000px;}
.y2a0{bottom:684.825000px;}
.y2b1{bottom:690.045000px;}
.y113{bottom:693.105000px;}
.y89{bottom:693.825000px;}
.y171{bottom:699.225000px;}
.y63{bottom:700.845000px;}
.yb0{bottom:702.465000px;}
.y278{bottom:703.005000px;}
.y29f{bottom:704.625000px;}
.ye7{bottom:706.785000px;}
.y18{bottom:706.965000px;}
.y2b0{bottom:709.845000px;}
.y112{bottom:712.905000px;}
.y88{bottom:713.625000px;}
.y5b{bottom:714.885000px;}
.yaf{bottom:722.265000px;}
.y277{bottom:723.525000px;}
.y29e{bottom:724.425000px;}
.y17{bottom:726.765000px;}
.y189{bottom:727.665000px;}
.y2af{bottom:729.825000px;}
.y111{bottom:732.705000px;}
.y87{bottom:734.145000px;}
.y1e7{bottom:741.885000px;}
.yae{bottom:742.065000px;}
.y276{bottom:743.685000px;}
.y29d{bottom:744.405000px;}
.y16{bottom:746.565000px;}
.y2ae{bottom:749.625000px;}
.y23d{bottom:750.705000px;}
.y110{bottom:752.505000px;}
.y86{bottom:753.945000px;}
.yad{bottom:761.865000px;}
.y275{bottom:763.485000px;}
.y29c{bottom:764.205000px;}
.y15{bottom:766.365000px;}
.y2ad{bottom:769.425000px;}
.y10f{bottom:772.305000px;}
.y85{bottom:774.285000px;}
.y224{bottom:775.185000px;}
.yac{bottom:781.845000px;}
.y274{bottom:783.285000px;}
.y29b{bottom:784.725000px;}
.y14{bottom:786.165000px;}
.y83{bottom:787.965000px;}
.y2ac{bottom:789.225000px;}
.y10e{bottom:792.285000px;}
.yab{bottom:798.405000px;}
.y273{bottom:803.265000px;}
.y13{bottom:806.145000px;}
.y29a{bottom:806.865000px;}
.y2ab{bottom:809.025000px;}
.y10d{bottom:812.085000px;}
.yd1{bottom:822.885000px;}
.y272{bottom:824.145000px;}
.y12{bottom:825.945000px;}
.y299{bottom:826.845000px;}
.y2aa{bottom:829.005000px;}
.y10c{bottom:831.885000px;}
.yd0{bottom:837.105000px;}
.yda{bottom:843.405000px;}
.y271{bottom:843.945000px;}
.y11{bottom:845.745000px;}
.y298{bottom:846.645000px;}
.y2a9{bottom:848.805000px;}
.y10b{bottom:851.685000px;}
.y57{bottom:853.665000px;}
.ycf{bottom:854.385000px;}
.y16f{bottom:858.705000px;}
.y270{bottom:863.790000px;}
.y15e{bottom:865.410000px;}
.y21c{bottom:865.590000px;}
.y297{bottom:866.490000px;}
.y80{bottom:867.210000px;}
.y2a8{bottom:868.650000px;}
.y10{bottom:878.550000px;}
.y26f{bottom:883.590000px;}
.y16e{bottom:885.210000px;}
.y296{bottom:886.290000px;}
.y2a7{bottom:888.450000px;}
.yf{bottom:893.130000px;}
.y26e{bottom:899.250000px;}
.y16d{bottom:905.010000px;}
.y295{bottom:906.090000px;}
.y2a6{bottom:908.250000px;}
.ye{bottom:918.150000px;}
.y16c{bottom:924.810000px;}
.y294{bottom:926.070000px;}
.y2a5{bottom:928.230000px;}
.yd{bottom:937.950000px;}
.y16b{bottom:944.610000px;}
.y293{bottom:945.870000px;}
.y2a4{bottom:948.030000px;}
.y215{bottom:951.270000px;}
.y1de{bottom:955.230000px;}
.y16a{bottom:964.410000px;}
.y292{bottom:965.670000px;}
.y2a3{bottom:967.830000px;}
.yc{bottom:973.050000px;}
.y169{bottom:979.350000px;}
.y291{bottom:985.470000px;}
.y130{bottom:987.630000px;}
.yb{bottom:993.570000px;}
.y7f{bottom:1004.190000px;}
.y290{bottom:1005.270000px;}
.y12f{bottom:1007.430000px;}
.y237{bottom:1010.850000px;}
.y210{bottom:1016.790000px;}
.y165{bottom:1019.670000px;}
.y7e{bottom:1024.170000px;}
.ya{bottom:1025.250000px;}
.y12e{bottom:1027.050000px;}
.yaa{bottom:1027.410000px;}
.yd2{bottom:1038.210000px;}
.y26d{bottom:1039.470000px;}
.y7d{bottom:1043.970000px;}
.y28f{bottom:1044.690000px;}
.y56{bottom:1045.050000px;}
.ya9{bottom:1047.210000px;}
.y5{bottom:1054.590000px;}
.y20e{bottom:1060.710000px;}
.y7c{bottom:1063.770000px;}
.y55{bottom:1064.850000px;}
.ya8{bottom:1067.010000px;}
.y54{bottom:1084.650000px;}
.ya7{bottom:1086.810000px;}
.y4{bottom:1088.070000px;}
.y26b{bottom:1099.770000px;}
.y53{bottom:1104.450000px;}
.y1cc{bottom:1104.810000px;}
.ya6{bottom:1106.610000px;}
.y3{bottom:1119.030000px;}
.y7b{bottom:1124.430000px;}
.y1cb{bottom:1124.610000px;}
.y52{bottom:1125.510000px;}
.ya5{bottom:1126.230000px;}
.y10a{bottom:1126.590000px;}
.y163{bottom:1139.400000px;}
.y1ca{bottom:1144.440000px;}
.y51{bottom:1145.340000px;}
.ya4{bottom:1146.420000px;}
.y2{bottom:1149.840000px;}
.y1c9{bottom:1159.380000px;}
.y50{bottom:1165.140000px;}
.y12d{bottom:1165.860000px;}
.ya3{bottom:1166.220000px;}
.y1{bottom:1181.700000px;}
.y4f{bottom:1184.940000px;}
.y12c{bottom:1185.660000px;}
.ya2{bottom:1186.020000px;}
.y4d{bottom:1215.180000px;}
.h30{height:19.800000px;}
.h38{height:19.836000px;}
.h32{height:19.980000px;}
.h46{height:21.420000px;}
.h5{height:21.816000px;}
.h12{height:22.176000px;}
.h45{height:30.476250px;}
.h9{height:38.158594px;}
.h33{height:39.600000px;}
.hb{height:42.123766px;}
.h17{height:42.164648px;}
.h2d{height:42.445547px;}
.h48{height:43.020000px;}
.h1d{height:46.308164px;}
.h2e{height:47.344922px;}
.h1a{height:47.796328px;}
.h8{height:48.616875px;}
.h23{height:49.583118px;}
.h14{height:52.581797px;}
.h28{height:52.998047px;}
.h25{height:54.421875px;}
.h15{height:55.425526px;}
.h29{height:55.503491px;}
.h26{height:56.214844px;}
.h4f{height:58.621992px;}
.hd{height:58.651172px;}
.ha{height:59.038594px;}
.h54{height:59.400000px;}
.h36{height:59.580000px;}
.h53{height:59.616000px;}
.hc{height:60.226875px;}
.he{height:61.423863px;}
.h56{height:61.831758px;}
.h1e{height:62.211094px;}
.h49{height:64.745789px;}
.h4a{height:64.800000px;}
.h4{height:65.010937px;}
.h47{height:65.575595px;}
.h6{height:65.884219px;}
.h3{height:66.757500px;}
.h2{height:78.367500px;}
.h55{height:79.200000px;}
.h19{height:79.236000px;}
.h4c{height:84.960000px;}
.h4d{height:89.676000px;}
.h21{height:89.911172px;}
.h7{height:96.508125px;}
.h24{height:111.996000px;}
.h11{height:118.711172px;}
.h37{height:119.016000px;}
.h1c{height:119.251172px;}
.h10{height:119.971172px;}
.h20{height:120.391172px;}
.hf{height:128.520000px;}
.h18{height:130.860000px;}
.h1f{height:132.300000px;}
.h2a{height:135.720000px;}
.h2b{height:135.936000px;}
.h16{height:138.780000px;}
.h31{height:142.200000px;}
.h39{height:158.760000px;}
.h1b{height:169.200000px;}
.h35{height:175.500000px;}
.h42{height:184.320000px;}
.h13{height:185.250000px;}
.h50{height:188.130000px;}
.h27{height:194.070000px;}
.h41{height:204.150000px;}
.h2f{height:207.570000px;}
.h40{height:212.610000px;}
.h2c{height:232.920000px;}
.h3e{height:241.230000px;}
.h3f{height:243.750000px;}
.h43{height:257.970000px;}
.h51{height:259.230000px;}
.h4e{height:301.890000px;}
.h3d{height:302.430000px;}
.h3a{height:317.370000px;}
.h3c{height:317.550000px;}
.h52{height:436.395000px;}
.h3b{height:471.315000px;}
.h4b{height:477.975000px;}
.h34{height:553.320000px;}
.h44{height:642.135000px;}
.h22{height:868.605000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2b{width:41.760000px;}
.w2e{width:43.380000px;}
.w3{width:48.816000px;}
.w12{width:73.800000px;}
.wf{width:74.160000px;}
.w33{width:80.820000px;}
.w30{width:81.180000px;}
.w21{width:83.880000px;}
.w1e{width:83.916000px;}
.w17{width:84.276000px;}
.w10{width:95.976000px;}
.wd{width:96.516000px;}
.w34{width:102.060000px;}
.w31{width:102.960000px;}
.w16{width:105.300000px;}
.w1c{width:105.336000px;}
.w2f{width:114.696000px;}
.w2d{width:116.100000px;}
.w2c{width:116.316000px;}
.w29{width:116.460000px;}
.w1f{width:134.640000px;}
.w22{width:134.676000px;}
.w20{width:152.310000px;}
.w23{width:152.460000px;}
.w26{width:152.640000px;}
.w24{width:152.850000px;}
.w1a{width:158.610000px;}
.w2a{width:158.790000px;}
.w28{width:159.690000px;}
.w14{width:168.870000px;}
.wa{width:169.740000px;}
.w32{width:170.130000px;}
.w11{width:174.450000px;}
.w7{width:174.810000px;}
.we{width:175.170000px;}
.w18{width:180.000000px;}
.w8{width:191.190000px;}
.w9{width:196.230000px;}
.w25{width:197.850000px;}
.w13{width:200.730000px;}
.w1b{width:207.390000px;}
.w19{width:264.990000px;}
.wc{width:356.655000px;}
.w27{width:361.515000px;}
.w15{width:371.010000px;}
.w1d{width:372.675000px;}
.wb{width:446.400000px;}
.w5{width:446.580000px;}
.w6{width:720.825000px;}
.w4{width:760.650000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x73{left:-28.440000px;}
.x72{left:-20.880000px;}
.x82{left:-10.800000px;}
.x1d{left:-5.220000px;}
.x1b{left:-3.960000px;}
.x0{left:0.000000px;}
.x5c{left:1.260000px;}
.x2e{left:5.040000px;}
.x3{left:8.100000px;}
.x4b{left:9.360000px;}
.x49{left:10.620000px;}
.x4e{left:11.700000px;}
.x31{left:12.780000px;}
.x20{left:14.040000px;}
.x4a{left:15.660000px;}
.x53{left:16.920000px;}
.x59{left:18.000000px;}
.x22{left:19.080000px;}
.x52{left:21.240000px;}
.x32{left:22.320000px;}
.x50{left:24.300000px;}
.x57{left:26.280000px;}
.x1f{left:28.260000px;}
.x58{left:29.700000px;}
.x56{left:30.780000px;}
.x1e{left:32.940000px;}
.x3e{left:34.379987px;}
.x21{left:35.640000px;}
.x2f{left:36.945000px;}
.x4f{left:38.196000px;}
.x55{left:41.400000px;}
.x54{left:43.200000px;}
.x15{left:44.640000px;}
.x81{left:50.394000px;}
.x4c{left:52.020000px;}
.x1{left:54.179987px;}
.x6{left:58.139987px;}
.x60{left:59.616000px;}
.x2{left:62.100000px;}
.x26{left:64.619987px;}
.x46{left:66.930000px;}
.x33{left:69.660000px;}
.x5f{left:72.216000px;}
.x51{left:73.620000px;}
.x6a{left:77.115000px;}
.x24{left:78.156000px;}
.xb{left:80.999987px;}
.x47{left:82.050000px;}
.x84{left:83.160000px;}
.xc{left:86.039987px;}
.x6d{left:87.735000px;}
.x18{left:89.819987px;}
.x6b{left:91.335000px;}
.x28{left:92.879987px;}
.x83{left:95.220000px;}
.x68{left:96.735000px;}
.x27{left:98.135987px;}
.x6c{left:99.795000px;}
.x67{left:102.315000px;}
.x5e{left:104.070000px;}
.x8b{left:108.035987px;}
.x4{left:111.636000px;}
.x39{left:112.751993px;}
.x38{left:117.071993px;}
.x70{left:125.355000px;}
.x5d{left:131.445000px;}
.x6e{left:133.635000px;}
.x66{left:139.215000px;}
.x86{left:140.445000px;}
.x35{left:142.919993px;}
.x2c{left:144.215987px;}
.x79{left:147.240000px;}
.x37{left:148.427993px;}
.x7b{left:149.940000px;}
.x14{left:156.345000px;}
.x7a{left:158.430000px;}
.x74{left:160.770000px;}
.x23{left:161.865000px;}
.x87{left:162.945000px;}
.x25{left:164.370000px;}
.x45{left:166.425000px;}
.x7f{left:170.865000px;}
.x65{left:171.900000px;}
.x5a{left:173.010000px;}
.x30{left:174.825000px;}
.x1c{left:177.525000px;}
.x76{left:178.605000px;}
.x16{left:181.440000px;}
.x69{left:184.215000px;}
.x19{left:185.259000px;}
.x88{left:187.785000px;}
.x8{left:191.369987px;}
.x48{left:202.350000px;}
.x7d{left:208.290000px;}
.x3a{left:210.134993px;}
.x6f{left:212.475000px;}
.x5b{left:221.070000px;}
.x5{left:224.859000px;}
.x29{left:232.949987px;}
.x36{left:234.179993px;}
.x2b{left:236.909987px;}
.x1a{left:245.190000px;}
.x3c{left:247.469993px;}
.x71{left:261.390000px;}
.x75{left:275.070000px;}
.x17{left:295.890000px;}
.x80{left:298.695000px;}
.x4d{left:330.555000px;}
.x7{left:332.174987px;}
.x85{left:354.675000px;}
.x3b{left:356.219993px;}
.x9{left:391.034987px;}
.x3d{left:411.734987px;}
.x7c{left:416.234987px;}
.x61{left:421.454987px;}
.x42{left:425.774987px;}
.x2a{left:427.574987px;}
.x34{left:432.434987px;}
.xd{left:437.294987px;}
.xa{left:446.474987px;}
.xe{left:473.144987px;}
.x89{left:476.925000px;}
.x40{left:493.664987px;}
.x13{left:500.144987px;}
.x10{left:503.024987px;}
.x11{left:521.744987px;}
.x8c{left:527.144987px;}
.x44{left:533.084987px;}
.x77{left:558.645000px;}
.x8d{left:562.604987px;}
.x63{left:579.885000px;}
.x41{left:614.264987px;}
.x7e{left:627.405000px;}
.x2d{left:642.885000px;}
.x12{left:656.024987px;}
.x8a{left:661.065000px;}
.x64{left:664.890000px;}
.x78{left:694.050000px;}
.x3f{left:814.649987px;}
.xf{left:828.689987px;}
.x43{left:857.879987px;}
.x62{left:869.219987px;}
@media print{
.v2{vertical-align:-71.040000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:27.786667pt;}
.v6{vertical-align:53.386667pt;}
.v5{vertical-align:54.506667pt;}
.ls25{letter-spacing:-0.592000pt;}
.ls20{letter-spacing:-0.239467pt;}
.lsb{letter-spacing:-0.185067pt;}
.ls1b{letter-spacing:-0.183467pt;}
.ls1d{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.007680pt;}
.ls14{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.199040pt;}
.lsc{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.233067pt;}
.ls1f{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.456533pt;}
.lsa{letter-spacing:0.624000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.800000pt;}
.ls15{letter-spacing:0.938667pt;}
.ls12{letter-spacing:3.360000pt;}
.ls13{letter-spacing:9.120000pt;}
.ls23{letter-spacing:14.672640pt;}
.ls11{letter-spacing:34.080000pt;}
.ls1c{letter-spacing:38.352640pt;}
.ls10{letter-spacing:40.912640pt;}
.ls22{letter-spacing:41.040640pt;}
.ls19{letter-spacing:44.112640pt;}
.ls21{letter-spacing:49.232640pt;}
.ls4{letter-spacing:56.912640pt;}
.ls5{letter-spacing:74.832640pt;}
.lsf{letter-spacing:81.232640pt;}
.ls6{letter-spacing:81.339307pt;}
.ls1{letter-spacing:269.728000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.600000pt;}
.ws3{word-spacing:-21.094933pt;}
.ws0{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.ws1d{word-spacing:-13.440000pt;}
.ws15{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.185067pt;}
.ws1b{word-spacing:-12.688000pt;}
.ws14{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.480533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws13{word-spacing:-8.647680pt;}
.ws4{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
.ws1c{word-spacing:23.520000pt;}
.ws1a{word-spacing:52.960000pt;}
.wsd{word-spacing:78.560000pt;}
.ws8{word-spacing:97.120000pt;}
.wsa{word-spacing:145.659093pt;}
.ws9{word-spacing:178.405760pt;}
.wse{word-spacing:192.958507pt;}
.ws11{word-spacing:210.562987pt;}
.ws10{word-spacing:257.069653pt;}
._1{margin-left:-1704.053760pt;}
._3{margin-left:-1461.496320pt;}
._4{margin-left:-1040.837333pt;}
._2f{margin-left:-531.900800pt;}
._2c{margin-left:-397.807360pt;}
._36{margin-left:-378.168960pt;}
._37{margin-left:-377.015040pt;}
._79{margin-left:-362.330240pt;}
._43{margin-left:-347.448960pt;}
._44{margin-left:-346.046080pt;}
._25{margin-left:-328.707627pt;}
._26{margin-left:-327.513600pt;}
._46{margin-left:-326.275627pt;}
._2b{margin-left:-324.736640pt;}
._47{margin-left:-313.589760pt;}
._45{margin-left:-301.244160pt;}
._39{margin-left:-270.595627pt;}
._2d{margin-left:-263.691520pt;}
._1f{margin-left:-257.411840pt;}
._17{margin-left:-218.062720pt;}
._35{margin-left:-202.334720pt;}
._29{margin-left:-199.190400pt;}
._21{margin-left:-193.043840pt;}
._20{margin-left:-189.560320pt;}
._2a{margin-left:-180.888960pt;}
._76{margin-left:-173.690240pt;}
._1e{margin-left:-170.648960pt;}
._38{margin-left:-158.514560pt;}
._42{margin-left:-149.285760pt;}
._78{margin-left:-145.306880pt;}
._2e{margin-left:-138.654720pt;}
._22{margin-left:-124.480000pt;}
._23{margin-left:-45.208960pt;}
._24{margin-left:-31.200000pt;}
._7{margin-left:-2.974720pt;}
._b{margin-left:-1.912320pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.175040pt;}
._6{width:2.658773pt;}
._5{width:3.594667pt;}
._9{width:4.933760pt;}
._8{width:5.896320pt;}
._a{width:7.322240pt;}
._12{width:8.543360pt;}
._f{width:9.827200pt;}
._10{width:10.776960pt;}
._c{width:11.686400pt;}
._31{width:14.555520pt;}
._e{width:15.457920pt;}
._33{width:16.414080pt;}
._11{width:17.308160pt;}
._1b{width:19.167360pt;}
._34{width:20.929280pt;}
._27{width:21.938560pt;}
._73{width:23.029333pt;}
._13{width:23.939413pt;}
._1d{width:24.906453pt;}
._1a{width:26.677120pt;}
._d{width:27.569280pt;}
._15{width:28.614400pt;}
._74{width:29.559040pt;}
._48{width:30.607360pt;}
._3a{width:31.978240pt;}
._14{width:32.987520pt;}
._32{width:34.054400pt;}
._28{width:35.743360pt;}
._41{width:36.652800pt;}
._3f{width:37.602560pt;}
._40{width:38.690560pt;}
._4a{width:40.515840pt;}
._6a{width:41.501440pt;}
._68{width:42.761600pt;}
._5b{width:44.567680pt;}
._1c{width:46.624000pt;}
._6e{width:47.967360pt;}
._77{width:50.675840pt;}
._51{width:52.748160pt;}
._65{width:55.191680pt;}
._19{width:56.254080pt;}
._69{width:60.928640pt;}
._30{width:62.635520pt;}
._6f{width:63.584640pt;}
._5d{width:64.965760pt;}
._6c{width:66.187520pt;}
._54{width:67.249920pt;}
._3e{width:68.672427pt;}
._3d{width:69.705173pt;}
._63{width:70.702720pt;}
._61{width:74.900480pt;}
._52{width:76.439680pt;}
._55{width:78.245760pt;}
._4c{width:80.158080pt;}
._66{width:81.645440pt;}
._72{width:84.832640pt;}
._56{width:91.334400pt;}
._4d{width:93.225600pt;}
._5f{width:94.340480pt;}
._70{width:96.147200pt;}
._3c{width:97.847040pt;}
._3b{width:98.856320pt;}
._4e{width:103.212160pt;}
._6d{width:106.771200pt;}
._16{width:108.176000pt;}
._5a{width:111.339520pt;}
._58{width:125.469440pt;}
._53{width:129.700480pt;}
._4b{width:136.359040pt;}
._75{width:137.710080pt;}
._5e{width:142.574080pt;}
._50{width:148.895360pt;}
._71{width:150.064000pt;}
._67{width:163.662720pt;}
._6b{width:172.944000pt;}
._4f{width:176.836480pt;}
._49{width:180.236160pt;}
._5c{width:185.760640pt;}
._59{width:189.744640pt;}
._62{width:195.800320pt;}
._57{width:213.117440pt;}
._7a{width:237.138560pt;}
._64{width:519.840000pt;}
._60{width:567.840000pt;}
._18{width:881.367680pt;}
.fsa{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:36.429074pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y109{bottom:-17.800000pt;}
.y108{bottom:-5.480000pt;}
.y0{bottom:0.000000pt;}
.y236{bottom:1.280000pt;}
.y81{bottom:2.400000pt;}
.y84{bottom:5.120000pt;}
.y170{bottom:5.160000pt;}
.y146{bottom:5.280000pt;}
.y144{bottom:5.434667pt;}
.y59{bottom:5.440000pt;}
.y147{bottom:5.600000pt;}
.y8{bottom:5.792000pt;}
.y7{bottom:6.112000pt;}
.y82{bottom:6.400000pt;}
.y4e{bottom:6.432000pt;}
.yf0{bottom:6.560000pt;}
.y20f{bottom:6.720000pt;}
.y212{bottom:6.880000pt;}
.y214{bottom:7.200000pt;}
.y21d{bottom:7.520000pt;}
.y225{bottom:14.560000pt;}
.y161{bottom:16.000000pt;}
.y1a0{bottom:18.880000pt;}
.yd9{bottom:19.360000pt;}
.y58{bottom:20.040000pt;}
.y92{bottom:21.853333pt;}
.y5a{bottom:21.960000pt;}
.y91{bottom:22.146667pt;}
.y62{bottom:22.720000pt;}
.y164{bottom:22.880000pt;}
.y143{bottom:23.034667pt;}
.y61{bottom:23.040000pt;}
.y259{bottom:23.080000pt;}
.y11b{bottom:23.200000pt;}
.yef{bottom:23.680000pt;}
.yfb{bottom:23.706667pt;}
.ye5{bottom:23.720000pt;}
.y106{bottom:23.840000pt;}
.yfa{bottom:23.866667pt;}
.yce{bottom:25.346667pt;}
.ycd{bottom:25.413333pt;}
.y20c{bottom:25.760000pt;}
.y211{bottom:25.920000pt;}
.y141{bottom:26.074667pt;}
.y217{bottom:26.080000pt;}
.y213{bottom:26.240000pt;}
.y235{bottom:26.400000pt;}
.y25f{bottom:26.920000pt;}
.y1fa{bottom:28.160000pt;}
.y178{bottom:30.560000pt;}
.y160{bottom:33.280000pt;}
.y4c{bottom:33.666667pt;}
.y4b{bottom:34.080000pt;}
.y4a{bottom:34.213333pt;}
.y1a9{bottom:35.040000pt;}
.y9{bottom:35.520000pt;}
.y1f0{bottom:35.840000pt;}
.y90{bottom:35.906667pt;}
.y19f{bottom:36.480000pt;}
.yd8{bottom:36.800000pt;}
.y142{bottom:37.594667pt;}
.ycc{bottom:39.173333pt;}
.y15d{bottom:40.226667pt;}
.y60{bottom:40.320000pt;}
.y11a{bottom:40.480000pt;}
.y26c{bottom:40.506667pt;}
.y1c8{bottom:40.634667pt;}
.y185{bottom:40.640000pt;}
.y258{bottom:40.680000pt;}
.y119{bottom:40.800000pt;}
.yee{bottom:40.960000pt;}
.yf9{bottom:40.986667pt;}
.ye4{bottom:41.000000pt;}
.y105{bottom:41.120000pt;}
.y20b{bottom:43.520000pt;}
.y140{bottom:43.674667pt;}
.y1db{bottom:43.680000pt;}
.y21f{bottom:44.160000pt;}
.y25e{bottom:44.520000pt;}
.y216{bottom:45.280000pt;}
.y234{bottom:45.440000pt;}
.y218{bottom:45.600000pt;}
.y1f9{bottom:45.760000pt;}
.y49{bottom:47.973333pt;}
.y15f{bottom:48.000000pt;}
.y177{bottom:48.160000pt;}
.y227{bottom:48.320000pt;}
.y6{bottom:49.280000pt;}
.y1a8{bottom:52.640000pt;}
.y1ef{bottom:53.440000pt;}
.yd6{bottom:53.920000pt;}
.y15c{bottom:53.986667pt;}
.yd7{bottom:54.080000pt;}
.y162{bottom:55.200000pt;}
.y5f{bottom:57.920000pt;}
.y118{bottom:58.080000pt;}
.y1c7{bottom:58.234667pt;}
.yed{bottom:58.240000pt;}
.yf8{bottom:58.266667pt;}
.ye3{bottom:58.280000pt;}
.y1dd{bottom:58.394667pt;}
.y168{bottom:58.400000pt;}
.y21e{bottom:60.160000pt;}
.y20a{bottom:61.114667pt;}
.y13f{bottom:61.274667pt;}
.y25d{bottom:62.120000pt;}
.y176{bottom:62.720000pt;}
.y1fe{bottom:63.520000pt;}
.y1f8{bottom:63.546667pt;}
.y95{bottom:64.093333pt;}
.y233{bottom:64.640000pt;}
.y23c{bottom:66.880000pt;}
.y226{bottom:67.680000pt;}
.y15b{bottom:67.746667pt;}
.y8f{bottom:70.013333pt;}
.y93{bottom:70.173333pt;}
.y1a7{bottom:70.240000pt;}
.y1ee{bottom:71.040000pt;}
.yd5{bottom:71.200000pt;}
.y19e{bottom:71.680000pt;}
.y48{bottom:72.066667pt;}
.y1dc{bottom:72.794667pt;}
.y1ff{bottom:72.960000pt;}
.y37{bottom:73.472000pt;}
.y148{bottom:75.072000pt;}
.yec{bottom:75.520000pt;}
.yf7{bottom:75.546667pt;}
.ye2{bottom:75.560000pt;}
.y5e{bottom:75.680000pt;}
.y1c6{bottom:75.994667pt;}
.y167{bottom:76.000000pt;}
.y1fc{bottom:76.026667pt;}
.y257{bottom:76.040000pt;}
.y94{bottom:77.853333pt;}
.y209{bottom:78.714667pt;}
.y13e{bottom:78.874667pt;}
.y25c{bottom:79.720000pt;}
.y1c3{bottom:80.314667pt;}
.ycb{bottom:80.866667pt;}
.y1e6{bottom:81.120000pt;}
.y1f7{bottom:81.146667pt;}
.y1d4{bottom:82.912000pt;}
.y7a{bottom:83.072000pt;}
.y232{bottom:83.840000pt;}
.yc9{bottom:83.872000pt;}
.y23b{bottom:84.480000pt;}
.y46{bottom:84.512000pt;}
.y15a{bottom:86.946667pt;}
.y26a{bottom:87.552000pt;}
.y188{bottom:87.680000pt;}
.y1a6{bottom:87.840000pt;}
.yd3{bottom:88.346667pt;}
.yd4{bottom:88.506667pt;}
.y1ed{bottom:88.640000pt;}
.y19d{bottom:89.280000pt;}
.y1f1{bottom:90.400000pt;}
.y1fb{bottom:90.426667pt;}
.y117{bottom:90.560000pt;}
.y36{bottom:91.072000pt;}
.ye9{bottom:92.320000pt;}
.yf4{bottom:92.346667pt;}
.yf1{bottom:92.640000pt;}
.y12b{bottom:92.672000pt;}
.ye1{bottom:92.680000pt;}
.yeb{bottom:92.800000pt;}
.yf6{bottom:92.826667pt;}
.y5d{bottom:93.280000pt;}
.y1c5{bottom:93.594667pt;}
.y166{bottom:93.600000pt;}
.y256{bottom:93.640000pt;}
.y1b0{bottom:93.760000pt;}
.y1b6{bottom:94.432000pt;}
.y208{bottom:96.314667pt;}
.y13d{bottom:96.474667pt;}
.y25b{bottom:97.480000pt;}
.y1c2{bottom:97.914667pt;}
.y1e5{bottom:98.720000pt;}
.y1f6{bottom:98.746667pt;}
.y79{bottom:100.672000pt;}
.y159{bottom:100.866667pt;}
.yc8{bottom:101.472000pt;}
.y23a{bottom:102.080000pt;}
.y45{bottom:102.112000pt;}
.y231{bottom:103.040000pt;}
.ya1{bottom:103.552000pt;}
.y8e{bottom:104.866667pt;}
.y269{bottom:105.312000pt;}
.y187{bottom:105.440000pt;}
.y1a5{bottom:105.600000pt;}
.y1ec{bottom:106.240000pt;}
.y19c{bottom:106.720000pt;}
.y1b5{bottom:106.880000pt;}
.y1c4{bottom:107.994667pt;}
.ye8{bottom:109.600000pt;}
.y35{bottom:109.632000pt;}
.yf3{bottom:109.786667pt;}
.yea{bottom:109.920000pt;}
.ye0{bottom:109.960000pt;}
.y104{bottom:110.080000pt;}
.yf5{bottom:110.106667pt;}
.y12a{bottom:110.272000pt;}
.y28e{bottom:110.592000pt;}
.y207{bottom:110.874667pt;}
.y5c{bottom:110.880000pt;}
.y145{bottom:110.912000pt;}
.y173{bottom:111.040000pt;}
.y184{bottom:111.200000pt;}
.y255{bottom:111.240000pt;}
.y206{bottom:111.354667pt;}
.y175{bottom:111.360000pt;}
.y25a{bottom:111.880000pt;}
.y244{bottom:112.520000pt;}
.y13b{bottom:113.914667pt;}
.y1da{bottom:114.074667pt;}
.y13c{bottom:114.234667pt;}
.y158{bottom:114.626667pt;}
.y1c1{bottom:115.674667pt;}
.y1e4{bottom:116.320000pt;}
.y1f5{bottom:116.346667pt;}
.y78{bottom:118.272000pt;}
.y8d{bottom:118.626667pt;}
.yc7{bottom:119.072000pt;}
.y44{bottom:119.712000pt;}
.y186{bottom:119.840000pt;}
.y239{bottom:119.866667pt;}
.ya0{bottom:121.152000pt;}
.y230{bottom:122.106667pt;}
.y268{bottom:122.912000pt;}
.y1a4{bottom:123.240000pt;}
.y1eb{bottom:124.040000pt;}
.y1b4{bottom:124.480000pt;}
.y19b{bottom:124.680000pt;}
.ydf{bottom:127.240000pt;}
.y103{bottom:127.360000pt;}
.y34{bottom:127.392000pt;}
.y129{bottom:127.872000pt;}
.y28d{bottom:128.192000pt;}
.y172{bottom:128.640000pt;}
.y183{bottom:128.800000pt;}
.y254{bottom:128.840000pt;}
.y205{bottom:128.954667pt;}
.y174{bottom:128.960000pt;}
.y13a{bottom:129.312000pt;}
.y243{bottom:130.120000pt;}
.y1d9{bottom:131.834667pt;}
.y1c0{bottom:132.954667pt;}
.y1e3{bottom:133.920000pt;}
.y1f4{bottom:133.946667pt;}
.yc6{bottom:136.666667pt;}
.y77{bottom:136.826667pt;}
.y43{bottom:137.466667pt;}
.y9f{bottom:138.746667pt;}
.y267{bottom:140.506667pt;}
.y1a3{bottom:140.840000pt;}
.y22f{bottom:141.306667pt;}
.y1ea{bottom:141.640000pt;}
.y1b3{bottom:142.080000pt;}
.y19a{bottom:142.280000pt;}
.ydc{bottom:144.040000pt;}
.y107{bottom:144.320000pt;}
.ye6{bottom:144.360000pt;}
.y102{bottom:144.480000pt;}
.yde{bottom:144.520000pt;}
.y33{bottom:145.626667pt;}
.y28c{bottom:145.786667pt;}
.y253{bottom:146.440000pt;}
.y204{bottom:146.554667pt;}
.y182{bottom:146.560000pt;}
.y242{bottom:147.880000pt;}
.y1d8{bottom:149.434667pt;}
.y1bf{bottom:150.554667pt;}
.y1e2{bottom:151.520000pt;}
.y1fd{bottom:151.680000pt;}
.y1f3{bottom:151.706667pt;}
.yc5{bottom:154.426667pt;}
.y76{bottom:154.586667pt;}
.y238{bottom:155.066667pt;}
.y42{bottom:156.026667pt;}
.y9e{bottom:156.346667pt;}
.y14a{bottom:157.053333pt;}
.y1a2{bottom:158.440000pt;}
.y266{bottom:159.066667pt;}
.y1e9{bottom:159.240000pt;}
.y1b2{bottom:159.680000pt;}
.y199{bottom:159.880000pt;}
.y22e{bottom:160.506667pt;}
.ydb{bottom:161.480000pt;}
.y101{bottom:161.760000pt;}
.ydd{bottom:161.800000pt;}
.y128{bottom:163.226667pt;}
.y32{bottom:163.546667pt;}
.y203{bottom:164.154667pt;}
.y181{bottom:164.160000pt;}
.y252{bottom:164.200000pt;}
.y157{bottom:165.306667pt;}
.y241{bottom:165.480000pt;}
.y1d7{bottom:167.034667pt;}
.y1be{bottom:168.474667pt;}
.y1e1{bottom:169.306667pt;}
.yc4{bottom:172.026667pt;}
.y75{bottom:172.186667pt;}
.y1a1{bottom:173.000000pt;}
.y41{bottom:173.626667pt;}
.y9d{bottom:174.106667pt;}
.y1b1{bottom:174.266667pt;}
.y265{bottom:176.666667pt;}
.y1e8{bottom:176.840000pt;}
.y198{bottom:177.480000pt;}
.yfe{bottom:178.560000pt;}
.y100{bottom:179.040000pt;}
.y156{bottom:179.226667pt;}
.y22d{bottom:179.706667pt;}
.y127{bottom:180.506667pt;}
.y28b{bottom:181.146667pt;}
.y202{bottom:181.754667pt;}
.y180{bottom:181.760000pt;}
.y251{bottom:181.800000pt;}
.y1af{bottom:181.946667pt;}
.y31{bottom:182.106667pt;}
.y240{bottom:183.080000pt;}
.y1d6{bottom:184.634667pt;}
.y1bd{bottom:186.074667pt;}
.y1e0{bottom:186.906667pt;}
.yc3{bottom:189.626667pt;}
.y74{bottom:189.786667pt;}
.y40{bottom:191.226667pt;}
.y9c{bottom:191.706667pt;}
.y155{bottom:192.986667pt;}
.y264{bottom:194.426667pt;}
.y197{bottom:195.240000pt;}
.yfd{bottom:196.000000pt;}
.yff{bottom:196.320000pt;}
.y22c{bottom:198.906667pt;}
.y126{bottom:199.386667pt;}
.y250{bottom:199.400000pt;}
.y201{bottom:199.514667pt;}
.y1ae{bottom:199.546667pt;}
.y30{bottom:199.706667pt;}
.y228{bottom:200.026667pt;}
.y23f{bottom:200.680000pt;}
.y1d5{bottom:202.234667pt;}
.y1bc{bottom:203.874667pt;}
.y1df{bottom:204.506667pt;}
.yc2{bottom:207.226667pt;}
.y73{bottom:207.386667pt;}
.y9b{bottom:209.306667pt;}
.y3f{bottom:209.786667pt;}
.y263{bottom:212.026667pt;}
.y154{bottom:212.186667pt;}
.y196{bottom:212.840000pt;}
.y125{bottom:216.986667pt;}
.y24f{bottom:217.000000pt;}
.y1ad{bottom:217.146667pt;}
.y200{bottom:217.154667pt;}
.y28a{bottom:217.306667pt;}
.y22b{bottom:217.946667pt;}
.y2f{bottom:218.106667pt;}
.y23e{bottom:218.280000pt;}
.y1bb{bottom:221.154667pt;}
.yc1{bottom:224.506667pt;}
.y72{bottom:224.986667pt;}
.y9a{bottom:226.906667pt;}
.y3e{bottom:227.546667pt;}
.y262{bottom:230.266667pt;}
.y195{bottom:230.440000pt;}
.y17c{bottom:234.426667pt;}
.y24e{bottom:234.600000pt;}
.y17f{bottom:234.746667pt;}
.y289{bottom:234.906667pt;}
.y124{bottom:235.706667pt;}
.y2e{bottom:236.026667pt;}
.y22a{bottom:237.146667pt;}
.y1b8{bottom:238.754667pt;}
.y1ba{bottom:239.074667pt;}
.yc0{bottom:242.266667pt;}
.y71{bottom:242.426667pt;}
.y99{bottom:244.506667pt;}
.y3d{bottom:244.826667pt;}
.y223{bottom:247.066667pt;}
.y261{bottom:247.866667pt;}
.y194{bottom:248.040000pt;}
.y17b{bottom:252.026667pt;}
.y17e{bottom:252.346667pt;}
.y24d{bottom:252.386667pt;}
.y288{bottom:252.506667pt;}
.y123{bottom:253.306667pt;}
.y2d{bottom:253.626667pt;}
.yca{bottom:254.880000pt;}
.y139{bottom:256.346667pt;}
.y1b7{bottom:256.354667pt;}
.y1b9{bottom:256.674667pt;}
.ybf{bottom:256.986667pt;}
.y153{bottom:259.613333pt;}
.y70{bottom:260.026667pt;}
.y229{bottom:260.826667pt;}
.y98{bottom:261.946667pt;}
.y3c{bottom:262.426667pt;}
.y193{bottom:265.640000pt;}
.y260{bottom:265.786667pt;}
.y17a{bottom:269.626667pt;}
.y1ab{bottom:269.786667pt;}
.y17d{bottom:269.946667pt;}
.y24c{bottom:269.986667pt;}
.y1ac{bottom:270.106667pt;}
.y2c{bottom:271.226667pt;}
.y122{bottom:271.866667pt;}
.y222{bottom:272.666667pt;}
.y152{bottom:273.373333pt;}
.y6f{bottom:277.626667pt;}
.y245{bottom:278.746667pt;}
.y97{bottom:279.546667pt;}
.y138{bottom:279.706667pt;}
.y3b{bottom:280.026667pt;}
.y192{bottom:283.400000pt;}
.y151{bottom:287.293333pt;}
.y24b{bottom:287.586667pt;}
.y2b{bottom:288.826667pt;}
.y121{bottom:289.466667pt;}
.y96{bottom:294.306667pt;}
.y6e{bottom:295.266667pt;}
.y3a{bottom:297.666667pt;}
.y221{bottom:297.946667pt;}
.yfc{bottom:299.106667pt;}
.y191{bottom:301.000000pt;}
.y1d3{bottom:303.266667pt;}
.y24a{bottom:305.186667pt;}
.y287{bottom:306.466667pt;}
.y150{bottom:306.533333pt;}
.y2a{bottom:306.626667pt;}
.y120{bottom:308.066667pt;}
.y6d{bottom:312.866667pt;}
.y137{bottom:315.106667pt;}
.y39{bottom:315.426667pt;}
.y190{bottom:318.600000pt;}
.y14f{bottom:320.293333pt;}
.y1d2{bottom:320.866667pt;}
.y249{bottom:322.786667pt;}
.y29{bottom:324.226667pt;}
.y286{bottom:325.026667pt;}
.y8c{bottom:325.440000pt;}
.y11f{bottom:325.826667pt;}
.y6c{bottom:327.746667pt;}
.y47{bottom:328.000000pt;}
.y38{bottom:330.146667pt;}
.y136{bottom:332.706667pt;}
.y18f{bottom:336.200000pt;}
.y1d1{bottom:338.466667pt;}
.y179{bottom:338.786667pt;}
.y248{bottom:340.546667pt;}
.y28{bottom:341.826667pt;}
.y285{bottom:342.626667pt;}
.y11e{bottom:343.426667pt;}
.y135{bottom:350.306667pt;}
.y18e{bottom:353.800000pt;}
.y1d0{bottom:356.066667pt;}
.y247{bottom:358.146667pt;}
.y27{bottom:359.426667pt;}
.y284{bottom:360.386667pt;}
.y11d{bottom:360.706667pt;}
.y1aa{bottom:363.906667pt;}
.y14e{bottom:364.320000pt;}
.y134{bottom:367.906667pt;}
.y18d{bottom:371.586667pt;}
.y1cf{bottom:373.826667pt;}
.y246{bottom:375.746667pt;}
.y26{bottom:377.026667pt;}
.ybe{bottom:377.826667pt;}
.y283{bottom:377.986667pt;}
.y14d{bottom:378.240000pt;}
.y11c{bottom:378.306667pt;}
.y133{bottom:385.506667pt;}
.y18c{bottom:389.186667pt;}
.y116{bottom:390.786667pt;}
.y1ce{bottom:391.426667pt;}
.y14c{bottom:392.000000pt;}
.y21b{bottom:393.186667pt;}
.y25{bottom:394.786667pt;}
.ybd{bottom:395.426667pt;}
.y282{bottom:395.586667pt;}
.y132{bottom:403.266667pt;}
.y1cd{bottom:406.146667pt;}
.y18a{bottom:406.466667pt;}
.y18b{bottom:406.786667pt;}
.y14b{bottom:411.200000pt;}
.y24{bottom:412.386667pt;}
.y21a{bottom:412.546667pt;}
.y220{bottom:412.706667pt;}
.y281{bottom:412.866667pt;}
.ybc{bottom:413.026667pt;}
.y149{bottom:415.840000pt;}
.y131{bottom:417.986667pt;}
.y219{bottom:420.066667pt;}
.y23{bottom:429.986667pt;}
.ybb{bottom:430.786667pt;}
.y22{bottom:447.586667pt;}
.yba{bottom:448.386667pt;}
.y280{bottom:448.546667pt;}
.y21{bottom:465.186667pt;}
.yb9{bottom:465.986667pt;}
.y27f{bottom:466.146667pt;}
.y2b8{bottom:473.666667pt;}
.y1f2{bottom:477.346667pt;}
.y6b{bottom:481.186667pt;}
.y20{bottom:482.946667pt;}
.yb8{bottom:483.586667pt;}
.y27e{bottom:483.746667pt;}
.y6a{bottom:498.786667pt;}
.y1f{bottom:500.546667pt;}
.yb7{bottom:501.186667pt;}
.y27d{bottom:501.346667pt;}
.y2b7{bottom:505.826667pt;}
.yf2{bottom:506.786667pt;}
.y69{bottom:516.386667pt;}
.y1e{bottom:518.146667pt;}
.yb6{bottom:518.946667pt;}
.y2b6{bottom:525.186667pt;}
.y68{bottom:534.173333pt;}
.y1d{bottom:535.773333pt;}
.yb5{bottom:536.573333pt;}
.y27c{bottom:536.733333pt;}
.y2b5{bottom:542.813333pt;}
.y67{bottom:551.773333pt;}
.y1c{bottom:553.373333pt;}
.yb4{bottom:554.173333pt;}
.y27b{bottom:554.333333pt;}
.y2b4{bottom:560.573333pt;}
.y20d{bottom:564.706667pt;}
.y66{bottom:569.373333pt;}
.y1b{bottom:570.813333pt;}
.yb3{bottom:571.773333pt;}
.y27a{bottom:571.933333pt;}
.y2a2{bottom:573.533333pt;}
.y2b3{bottom:578.173333pt;}
.y115{bottom:580.733333pt;}
.y8b{bottom:581.373333pt;}
.y65{bottom:586.973333pt;}
.y1a{bottom:588.413333pt;}
.yb2{bottom:589.373333pt;}
.y279{bottom:589.533333pt;}
.y2a1{bottom:591.133333pt;}
.y2b2{bottom:595.773333pt;}
.y114{bottom:598.333333pt;}
.y8a{bottom:599.133333pt;}
.y64{bottom:605.213333pt;}
.y19{bottom:606.333333pt;}
.yb1{bottom:607.133333pt;}
.y2a0{bottom:608.733333pt;}
.y2b1{bottom:613.373333pt;}
.y113{bottom:616.093333pt;}
.y89{bottom:616.733333pt;}
.y171{bottom:621.533333pt;}
.y63{bottom:622.973333pt;}
.yb0{bottom:624.413333pt;}
.y278{bottom:624.893333pt;}
.y29f{bottom:626.333333pt;}
.ye7{bottom:628.253333pt;}
.y18{bottom:628.413333pt;}
.y2b0{bottom:630.973333pt;}
.y112{bottom:633.693333pt;}
.y88{bottom:634.333333pt;}
.y5b{bottom:635.453333pt;}
.yaf{bottom:642.013333pt;}
.y277{bottom:643.133333pt;}
.y29e{bottom:643.933333pt;}
.y17{bottom:646.013333pt;}
.y189{bottom:646.813333pt;}
.y2af{bottom:648.733333pt;}
.y111{bottom:651.293333pt;}
.y87{bottom:652.573333pt;}
.y1e7{bottom:659.453333pt;}
.yae{bottom:659.613333pt;}
.y276{bottom:661.053333pt;}
.y29d{bottom:661.693333pt;}
.y16{bottom:663.613333pt;}
.y2ae{bottom:666.333333pt;}
.y23d{bottom:667.293333pt;}
.y110{bottom:668.893333pt;}
.y86{bottom:670.173333pt;}
.yad{bottom:677.213333pt;}
.y275{bottom:678.653333pt;}
.y29c{bottom:679.293333pt;}
.y15{bottom:681.213333pt;}
.y2ad{bottom:683.933333pt;}
.y10f{bottom:686.493333pt;}
.y85{bottom:688.253333pt;}
.y224{bottom:689.053333pt;}
.yac{bottom:694.973333pt;}
.y274{bottom:696.253333pt;}
.y29b{bottom:697.533333pt;}
.y14{bottom:698.813333pt;}
.y83{bottom:700.413333pt;}
.y2ac{bottom:701.533333pt;}
.y10e{bottom:704.253333pt;}
.yab{bottom:709.693333pt;}
.y273{bottom:714.013333pt;}
.y13{bottom:716.573333pt;}
.y29a{bottom:717.213333pt;}
.y2ab{bottom:719.133333pt;}
.y10d{bottom:721.853333pt;}
.yd1{bottom:731.453333pt;}
.y272{bottom:732.573333pt;}
.y12{bottom:734.173333pt;}
.y299{bottom:734.973333pt;}
.y2aa{bottom:736.893333pt;}
.y10c{bottom:739.453333pt;}
.yd0{bottom:744.093333pt;}
.yda{bottom:749.693333pt;}
.y271{bottom:750.173333pt;}
.y11{bottom:751.773333pt;}
.y298{bottom:752.573333pt;}
.y2a9{bottom:754.493333pt;}
.y10b{bottom:757.053333pt;}
.y57{bottom:758.813333pt;}
.ycf{bottom:759.453333pt;}
.y16f{bottom:763.293333pt;}
.y270{bottom:767.813333pt;}
.y15e{bottom:769.253333pt;}
.y21c{bottom:769.413333pt;}
.y297{bottom:770.213333pt;}
.y80{bottom:770.853333pt;}
.y2a8{bottom:772.133333pt;}
.y10{bottom:780.933333pt;}
.y26f{bottom:785.413333pt;}
.y16e{bottom:786.853333pt;}
.y296{bottom:787.813333pt;}
.y2a7{bottom:789.733333pt;}
.yf{bottom:793.893333pt;}
.y26e{bottom:799.333333pt;}
.y16d{bottom:804.453333pt;}
.y295{bottom:805.413333pt;}
.y2a6{bottom:807.333333pt;}
.ye{bottom:816.133333pt;}
.y16c{bottom:822.053333pt;}
.y294{bottom:823.173333pt;}
.y2a5{bottom:825.093333pt;}
.yd{bottom:833.733333pt;}
.y16b{bottom:839.653333pt;}
.y293{bottom:840.773333pt;}
.y2a4{bottom:842.693333pt;}
.y215{bottom:845.573333pt;}
.y1de{bottom:849.093333pt;}
.y16a{bottom:857.253333pt;}
.y292{bottom:858.373333pt;}
.y2a3{bottom:860.293333pt;}
.yc{bottom:864.933333pt;}
.y169{bottom:870.533333pt;}
.y291{bottom:875.973333pt;}
.y130{bottom:877.893333pt;}
.yb{bottom:883.173333pt;}
.y7f{bottom:892.613333pt;}
.y290{bottom:893.573333pt;}
.y12f{bottom:895.493333pt;}
.y237{bottom:898.533333pt;}
.y210{bottom:903.813333pt;}
.y165{bottom:906.373333pt;}
.y7e{bottom:910.373333pt;}
.ya{bottom:911.333333pt;}
.y12e{bottom:912.933333pt;}
.yaa{bottom:913.253333pt;}
.yd2{bottom:922.853333pt;}
.y26d{bottom:923.973333pt;}
.y7d{bottom:927.973333pt;}
.y28f{bottom:928.613333pt;}
.y56{bottom:928.933333pt;}
.ya9{bottom:930.853333pt;}
.y5{bottom:937.413333pt;}
.y20e{bottom:942.853333pt;}
.y7c{bottom:945.573333pt;}
.y55{bottom:946.533333pt;}
.ya8{bottom:948.453333pt;}
.y54{bottom:964.133333pt;}
.ya7{bottom:966.053333pt;}
.y4{bottom:967.173333pt;}
.y26b{bottom:977.573333pt;}
.y53{bottom:981.733333pt;}
.y1cc{bottom:982.053333pt;}
.ya6{bottom:983.653333pt;}
.y3{bottom:994.693333pt;}
.y7b{bottom:999.493333pt;}
.y1cb{bottom:999.653333pt;}
.y52{bottom:1000.453333pt;}
.ya5{bottom:1001.093333pt;}
.y10a{bottom:1001.413333pt;}
.y163{bottom:1012.800000pt;}
.y1ca{bottom:1017.280000pt;}
.y51{bottom:1018.080000pt;}
.ya4{bottom:1019.040000pt;}
.y2{bottom:1022.080000pt;}
.y1c9{bottom:1030.560000pt;}
.y50{bottom:1035.680000pt;}
.y12d{bottom:1036.320000pt;}
.ya3{bottom:1036.640000pt;}
.y1{bottom:1050.400000pt;}
.y4f{bottom:1053.280000pt;}
.y12c{bottom:1053.920000pt;}
.ya2{bottom:1054.240000pt;}
.y4d{bottom:1080.160000pt;}
.h30{height:17.600000pt;}
.h38{height:17.632000pt;}
.h32{height:17.760000pt;}
.h46{height:19.040000pt;}
.h5{height:19.392000pt;}
.h12{height:19.712000pt;}
.h45{height:27.090000pt;}
.h9{height:33.918750pt;}
.h33{height:35.200000pt;}
.hb{height:37.443348pt;}
.h17{height:37.479688pt;}
.h2d{height:37.729375pt;}
.h48{height:38.240000pt;}
.h1d{height:41.162813pt;}
.h2e{height:42.084375pt;}
.h1a{height:42.485625pt;}
.h8{height:43.215000pt;}
.h23{height:44.073883pt;}
.h14{height:46.739375pt;}
.h28{height:47.109375pt;}
.h25{height:48.375000pt;}
.h15{height:49.267134pt;}
.h29{height:49.336436pt;}
.h26{height:49.968750pt;}
.h4f{height:52.108438pt;}
.hd{height:52.134375pt;}
.ha{height:52.478750pt;}
.h54{height:52.800000pt;}
.h36{height:52.960000pt;}
.h53{height:52.992000pt;}
.hc{height:53.535000pt;}
.he{height:54.598989pt;}
.h56{height:54.961563pt;}
.h1e{height:55.298750pt;}
.h49{height:57.551813pt;}
.h4a{height:57.600000pt;}
.h4{height:57.787500pt;}
.h47{height:58.289418pt;}
.h6{height:58.563750pt;}
.h3{height:59.340000pt;}
.h2{height:69.660000pt;}
.h55{height:70.400000pt;}
.h19{height:70.432000pt;}
.h4c{height:75.520000pt;}
.h4d{height:79.712000pt;}
.h21{height:79.921042pt;}
.h7{height:85.785000pt;}
.h24{height:99.552000pt;}
.h11{height:105.521042pt;}
.h37{height:105.792000pt;}
.h1c{height:106.001042pt;}
.h10{height:106.641042pt;}
.h20{height:107.014375pt;}
.hf{height:114.240000pt;}
.h18{height:116.320000pt;}
.h1f{height:117.600000pt;}
.h2a{height:120.640000pt;}
.h2b{height:120.832000pt;}
.h16{height:123.360000pt;}
.h31{height:126.400000pt;}
.h39{height:141.120000pt;}
.h1b{height:150.400000pt;}
.h35{height:156.000000pt;}
.h42{height:163.840000pt;}
.h13{height:164.666667pt;}
.h50{height:167.226667pt;}
.h27{height:172.506667pt;}
.h41{height:181.466667pt;}
.h2f{height:184.506667pt;}
.h40{height:188.986667pt;}
.h2c{height:207.040000pt;}
.h3e{height:214.426667pt;}
.h3f{height:216.666667pt;}
.h43{height:229.306667pt;}
.h51{height:230.426667pt;}
.h4e{height:268.346667pt;}
.h3d{height:268.826667pt;}
.h3a{height:282.106667pt;}
.h3c{height:282.266667pt;}
.h52{height:387.906667pt;}
.h3b{height:418.946667pt;}
.h4b{height:424.866667pt;}
.h34{height:491.840000pt;}
.h44{height:570.786667pt;}
.h22{height:772.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2b{width:37.120000pt;}
.w2e{width:38.560000pt;}
.w3{width:43.392000pt;}
.w12{width:65.600000pt;}
.wf{width:65.920000pt;}
.w33{width:71.840000pt;}
.w30{width:72.160000pt;}
.w21{width:74.560000pt;}
.w1e{width:74.592000pt;}
.w17{width:74.912000pt;}
.w10{width:85.312000pt;}
.wd{width:85.792000pt;}
.w34{width:90.720000pt;}
.w31{width:91.520000pt;}
.w16{width:93.600000pt;}
.w1c{width:93.632000pt;}
.w2f{width:101.952000pt;}
.w2d{width:103.200000pt;}
.w2c{width:103.392000pt;}
.w29{width:103.520000pt;}
.w1f{width:119.680000pt;}
.w22{width:119.712000pt;}
.w20{width:135.386667pt;}
.w23{width:135.520000pt;}
.w26{width:135.680000pt;}
.w24{width:135.866667pt;}
.w1a{width:140.986667pt;}
.w2a{width:141.146667pt;}
.w28{width:141.946667pt;}
.w14{width:150.106667pt;}
.wa{width:150.880000pt;}
.w32{width:151.226667pt;}
.w11{width:155.066667pt;}
.w7{width:155.386667pt;}
.we{width:155.706667pt;}
.w18{width:160.000000pt;}
.w8{width:169.946667pt;}
.w9{width:174.426667pt;}
.w25{width:175.866667pt;}
.w13{width:178.426667pt;}
.w1b{width:184.346667pt;}
.w19{width:235.546667pt;}
.wc{width:317.026667pt;}
.w27{width:321.346667pt;}
.w15{width:329.786667pt;}
.w1d{width:331.266667pt;}
.wb{width:396.800000pt;}
.w5{width:396.960000pt;}
.w6{width:640.733333pt;}
.w4{width:676.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x73{left:-25.280000pt;}
.x72{left:-18.560000pt;}
.x82{left:-9.600000pt;}
.x1d{left:-4.640000pt;}
.x1b{left:-3.520000pt;}
.x0{left:0.000000pt;}
.x5c{left:1.120000pt;}
.x2e{left:4.480000pt;}
.x3{left:7.200000pt;}
.x4b{left:8.320000pt;}
.x49{left:9.440000pt;}
.x4e{left:10.400000pt;}
.x31{left:11.360000pt;}
.x20{left:12.480000pt;}
.x4a{left:13.920000pt;}
.x53{left:15.040000pt;}
.x59{left:16.000000pt;}
.x22{left:16.960000pt;}
.x52{left:18.880000pt;}
.x32{left:19.840000pt;}
.x50{left:21.600000pt;}
.x57{left:23.360000pt;}
.x1f{left:25.120000pt;}
.x58{left:26.400000pt;}
.x56{left:27.360000pt;}
.x1e{left:29.280000pt;}
.x3e{left:30.559988pt;}
.x21{left:31.680000pt;}
.x2f{left:32.840000pt;}
.x4f{left:33.952000pt;}
.x55{left:36.800000pt;}
.x54{left:38.400000pt;}
.x15{left:39.680000pt;}
.x81{left:44.794667pt;}
.x4c{left:46.240000pt;}
.x1{left:48.159988pt;}
.x6{left:51.679988pt;}
.x60{left:52.992000pt;}
.x2{left:55.200000pt;}
.x26{left:57.439988pt;}
.x46{left:59.493333pt;}
.x33{left:61.920000pt;}
.x5f{left:64.192000pt;}
.x51{left:65.440000pt;}
.x6a{left:68.546667pt;}
.x24{left:69.472000pt;}
.xb{left:71.999988pt;}
.x47{left:72.933333pt;}
.x84{left:73.920000pt;}
.xc{left:76.479988pt;}
.x6d{left:77.986667pt;}
.x18{left:79.839988pt;}
.x6b{left:81.186667pt;}
.x28{left:82.559988pt;}
.x83{left:84.640000pt;}
.x68{left:85.986667pt;}
.x27{left:87.231988pt;}
.x6c{left:88.706667pt;}
.x67{left:90.946667pt;}
.x5e{left:92.506667pt;}
.x8b{left:96.031988pt;}
.x4{left:99.232000pt;}
.x39{left:100.223994pt;}
.x38{left:104.063994pt;}
.x70{left:111.426667pt;}
.x5d{left:116.840000pt;}
.x6e{left:118.786667pt;}
.x66{left:123.746667pt;}
.x86{left:124.840000pt;}
.x35{left:127.039994pt;}
.x2c{left:128.191988pt;}
.x79{left:130.880000pt;}
.x37{left:131.935994pt;}
.x7b{left:133.280000pt;}
.x14{left:138.973333pt;}
.x7a{left:140.826667pt;}
.x74{left:142.906667pt;}
.x23{left:143.880000pt;}
.x87{left:144.840000pt;}
.x25{left:146.106667pt;}
.x45{left:147.933333pt;}
.x7f{left:151.880000pt;}
.x65{left:152.800000pt;}
.x5a{left:153.786667pt;}
.x30{left:155.400000pt;}
.x1c{left:157.800000pt;}
.x76{left:158.760000pt;}
.x16{left:161.280000pt;}
.x69{left:163.746667pt;}
.x19{left:164.674667pt;}
.x88{left:166.920000pt;}
.x8{left:170.106655pt;}
.x48{left:179.866667pt;}
.x7d{left:185.146667pt;}
.x3a{left:186.786661pt;}
.x6f{left:188.866667pt;}
.x5b{left:196.506667pt;}
.x5{left:199.874667pt;}
.x29{left:207.066655pt;}
.x36{left:208.159994pt;}
.x2b{left:210.586655pt;}
.x1a{left:217.946667pt;}
.x3c{left:219.973327pt;}
.x71{left:232.346667pt;}
.x75{left:244.506667pt;}
.x17{left:263.013333pt;}
.x80{left:265.506667pt;}
.x4d{left:293.826667pt;}
.x7{left:295.266655pt;}
.x85{left:315.266667pt;}
.x3b{left:316.639994pt;}
.x9{left:347.586655pt;}
.x3d{left:365.986655pt;}
.x7c{left:369.986655pt;}
.x61{left:374.626655pt;}
.x42{left:378.466655pt;}
.x2a{left:380.066655pt;}
.x34{left:384.386655pt;}
.xd{left:388.706655pt;}
.xa{left:396.866655pt;}
.xe{left:420.573322pt;}
.x89{left:423.933333pt;}
.x40{left:438.813322pt;}
.x13{left:444.573322pt;}
.x10{left:447.133322pt;}
.x11{left:463.773322pt;}
.x8c{left:468.573322pt;}
.x44{left:473.853322pt;}
.x77{left:496.573333pt;}
.x8d{left:500.093322pt;}
.x63{left:515.453333pt;}
.x41{left:546.013322pt;}
.x7e{left:557.693333pt;}
.x2d{left:571.453333pt;}
.x12{left:583.133322pt;}
.x8a{left:587.613333pt;}
.x64{left:591.013333pt;}
.x78{left:616.933333pt;}
.x3f{left:724.133322pt;}
.xf{left:736.613322pt;}
.x43{left:762.559988pt;}
.x62{left:772.639988pt;}
}




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