
    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_329a7fbb16609ece3c00fab7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_4eff36a7a13523b661dc1704.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_cf01f69f37009133d0b7903c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_3bf977fb9111f46828e88f38.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_3384a01c8d32e711fadabb84.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202000;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_eea0dcc654c109c78ff5ed5a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_e90c91e4b2165cdecdf9c810.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_92cc12a2569b8262a44b1683.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.113000;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_1d816db34749688a69d6e805.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202000;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_0dd3f69806eb758031204dde.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.222000;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_67276f2c01f5be5effe936d0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.444000;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_c156e45054da2d1c5f6cc913.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.588000;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_b180ae881c83cff1ab730f72.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202000;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_f1c942e82a0ab6c00a2548ff.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714000;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_91ca06b19214528bc34c6c9b.woff2')format("woff");}.fff{font-family:fff;line-height:1.005000;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_7d52eb9caad612361ba0229b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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_255439aa1f257ec696231b75.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.027000;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;}
.m2{transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,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);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v7{vertical-align:3.402000px;}
.v2{vertical-align:9.550415px;}
.v6{vertical-align:18.000000px;}
.v5{vertical-align:23.503754px;}
.v3{vertical-align:26.399780px;}
.ls5{letter-spacing:-3.612000px;}
.ls7{letter-spacing:-1.176000px;}
.ls3{letter-spacing:-1.050000px;}
.ls4{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.294000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000002px;}
.ls9{letter-spacing:0.000070px;}
.lsd{letter-spacing:0.150130px;}
.lse{letter-spacing:0.225194px;}
.lsb{letter-spacing:0.630000px;}
.ls8{letter-spacing:0.882000px;}
.lsf{letter-spacing:1.125972px;}
.lsc{letter-spacing:1.876621px;}
.ls2{letter-spacing:5.460000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsed{word-spacing:-13.935600px;}
.ws47{word-spacing:-13.818000px;}
.ws114{word-spacing:-12.642000px;}
.ws3{word-spacing:-12.483600px;}
.ws130{word-spacing:-12.310630px;}
.ws4{word-spacing:-11.880000px;}
.ws12f{word-spacing:-11.559982px;}
.ws46{word-spacing:-11.426400px;}
.ws12e{word-spacing:-10.659204px;}
.ws12d{word-spacing:-10.584140px;}
.wsd5{word-spacing:-10.512000px;}
.ws12c{word-spacing:-10.485000px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.ws5{word-spacing:-9.855000px;}
.ws18{word-spacing:-9.672600px;}
.ws116{word-spacing:-9.315000px;}
.ws19{word-spacing:-8.640000px;}
.ws1{word-spacing:-8.148000px;}
.wscf{word-spacing:-7.644000px;}
.ws117{word-spacing:-6.898500px;}
.wsce{word-spacing:-4.032000px;}
.ws8{word-spacing:-2.772000px;}
.wsec{word-spacing:-2.016000px;}
.ws131{word-spacing:-1.876621px;}
.wseb{word-spacing:-1.722000px;}
.ws11f{word-spacing:-1.528800px;}
.ws4a{word-spacing:-1.058400px;}
.ws7{word-spacing:-0.780000px;}
.ws30{word-spacing:-0.764400px;}
.wsa3{word-spacing:-0.705600px;}
.ws7e{word-spacing:-0.646800px;}
.ws132{word-spacing:-0.630000px;}
.ws1b{word-spacing:-0.529200px;}
.ws6c{word-spacing:-0.470400px;}
.ws50{word-spacing:-0.352800px;}
.ws10a{word-spacing:-0.294000px;}
.ws11{word-spacing:-0.235200px;}
.ws70{word-spacing:-0.176400px;}
.ws17{word-spacing:-0.090000px;}
.wsac{word-spacing:-0.058800px;}
.ws12b{word-spacing:-0.045000px;}
.ws6{word-spacing:0.000000px;}
.wsc6{word-spacing:0.058800px;}
.wsa8{word-spacing:0.176400px;}
.ws54{word-spacing:0.235200px;}
.wsfb{word-spacing:0.294000px;}
.ws27{word-spacing:0.352800px;}
.ws8f{word-spacing:0.411600px;}
.ws35{word-spacing:0.470400px;}
.ws90{word-spacing:0.529200px;}
.ws113{word-spacing:0.588000px;}
.wsfc{word-spacing:0.646800px;}
.ws6a{word-spacing:0.705600px;}
.ws9d{word-spacing:0.823200px;}
.ws74{word-spacing:0.940800px;}
.wsf0{word-spacing:0.999600px;}
.wsa1{word-spacing:1.058400px;}
.ws66{word-spacing:1.117200px;}
.wsc0{word-spacing:1.176000px;}
.wsc2{word-spacing:1.234800px;}
.ws126{word-spacing:1.293600px;}
.wsee{word-spacing:1.411200px;}
.wsbe{word-spacing:1.470000px;}
.ws8d{word-spacing:1.528800px;}
.ws91{word-spacing:1.705200px;}
.ws119{word-spacing:1.822800px;}
.ws115{word-spacing:1.940400px;}
.wsf{word-spacing:2.058000px;}
.ws61{word-spacing:2.116800px;}
.ws94{word-spacing:2.175600px;}
.ws60{word-spacing:2.234400px;}
.wsea{word-spacing:2.293200px;}
.wsbf{word-spacing:2.410800px;}
.ws37{word-spacing:2.469600px;}
.ws13{word-spacing:2.587200px;}
.wsb{word-spacing:2.646000px;}
.ws1d{word-spacing:2.704800px;}
.ws12{word-spacing:2.763600px;}
.ws7d{word-spacing:2.822400px;}
.ws34{word-spacing:2.881200px;}
.ws99{word-spacing:2.940000px;}
.ws7c{word-spacing:2.998800px;}
.ws51{word-spacing:3.057600px;}
.wsef{word-spacing:3.175200px;}
.ws67{word-spacing:3.292800px;}
.wsb6{word-spacing:3.351600px;}
.ws72{word-spacing:3.469200px;}
.ws29{word-spacing:3.528000px;}
.ws12a{word-spacing:3.586800px;}
.ws1a{word-spacing:3.645600px;}
.ws9b{word-spacing:3.704400px;}
.wsc3{word-spacing:3.763200px;}
.wsa4{word-spacing:3.822000px;}
.ws75{word-spacing:3.880800px;}
.wsad{word-spacing:3.939600px;}
.ws8a{word-spacing:3.998400px;}
.ws10{word-spacing:4.057200px;}
.wsc5{word-spacing:4.116000px;}
.wsd7{word-spacing:4.292400px;}
.ws118{word-spacing:4.351200px;}
.ws57{word-spacing:4.410000px;}
.ws128{word-spacing:4.468800px;}
.ws55{word-spacing:4.527600px;}
.wse5{word-spacing:4.586400px;}
.ws6b{word-spacing:4.645200px;}
.ws110{word-spacing:4.762800px;}
.wsf9{word-spacing:4.821600px;}
.ws9{word-spacing:4.880400px;}
.ws79{word-spacing:4.939200px;}
.ws1e{word-spacing:4.998000px;}
.ws31{word-spacing:5.056800px;}
.ws2f{word-spacing:5.115600px;}
.ws10e{word-spacing:5.174400px;}
.ws36{word-spacing:5.233200px;}
.ws104{word-spacing:5.292000px;}
.ws6e{word-spacing:5.350800px;}
.wscc{word-spacing:5.409600px;}
.ws5b{word-spacing:5.468400px;}
.ws53{word-spacing:5.527200px;}
.ws26{word-spacing:5.586000px;}
.ws8b{word-spacing:5.644800px;}
.ws4e{word-spacing:5.703600px;}
.ws1f{word-spacing:5.762400px;}
.ws96{word-spacing:5.821200px;}
.ws52{word-spacing:5.880000px;}
.ws82{word-spacing:5.938800px;}
.ws106{word-spacing:5.997600px;}
.wsbc{word-spacing:6.056400px;}
.ws69{word-spacing:6.115200px;}
.ws5f{word-spacing:6.174000px;}
.ws3b{word-spacing:6.291600px;}
.wsc1{word-spacing:6.350400px;}
.ws33{word-spacing:6.409200px;}
.ws4c{word-spacing:6.468000px;}
.wsb1{word-spacing:6.526800px;}
.ws22{word-spacing:6.585600px;}
.wse6{word-spacing:6.644400px;}
.wsc4{word-spacing:6.762000px;}
.ws63{word-spacing:6.820800px;}
.ws7a{word-spacing:6.879600px;}
.wsd{word-spacing:6.997200px;}
.ws59{word-spacing:7.056000px;}
.wsf7{word-spacing:7.114800px;}
.ws3f{word-spacing:7.232400px;}
.wse4{word-spacing:7.291200px;}
.ws24{word-spacing:7.408800px;}
.ws16{word-spacing:7.467600px;}
.wscd{word-spacing:7.526400px;}
.ws3a{word-spacing:7.585200px;}
.ws49{word-spacing:7.644000px;}
.wse8{word-spacing:7.702800px;}
.ws23{word-spacing:7.761600px;}
.ws97{word-spacing:7.820400px;}
.ws2b{word-spacing:7.996800px;}
.ws8e{word-spacing:8.055600px;}
.ws9e{word-spacing:8.114400px;}
.ws85{word-spacing:8.173200px;}
.wsf2{word-spacing:8.232000px;}
.ws2d{word-spacing:8.290800px;}
.wsb5{word-spacing:8.349600px;}
.wsaf{word-spacing:8.408400px;}
.wse{word-spacing:8.526000px;}
.ws10f{word-spacing:8.584800px;}
.ws32{word-spacing:8.643600px;}
.ws10b{word-spacing:8.702400px;}
.ws88{word-spacing:8.761200px;}
.ws2c{word-spacing:8.820000px;}
.ws40{word-spacing:8.878800px;}
.wsfa{word-spacing:9.055200px;}
.ws14{word-spacing:9.172800px;}
.ws9f{word-spacing:9.290400px;}
.ws68{word-spacing:9.408000px;}
.ws71{word-spacing:9.525600px;}
.wsc9{word-spacing:9.643200px;}
.ws56{word-spacing:9.878400px;}
.ws41{word-spacing:9.937200px;}
.wsa{word-spacing:9.996000px;}
.ws93{word-spacing:10.113600px;}
.ws8c{word-spacing:10.231200px;}
.ws86{word-spacing:10.290000px;}
.ws2e{word-spacing:10.348800px;}
.ws2a{word-spacing:10.407600px;}
.ws127{word-spacing:10.525200px;}
.ws42{word-spacing:10.584000px;}
.ws45{word-spacing:10.642800px;}
.ws83{word-spacing:10.701600px;}
.wse2{word-spacing:10.760400px;}
.ws100{word-spacing:10.819200px;}
.ws9c{word-spacing:10.878000px;}
.ws6f{word-spacing:10.995600px;}
.ws64{word-spacing:11.054400px;}
.wsf4{word-spacing:11.113200px;}
.ws112{word-spacing:11.172000px;}
.ws103{word-spacing:11.289600px;}
.ws21{word-spacing:11.407200px;}
.wsf8{word-spacing:11.466000px;}
.wsda{word-spacing:11.524800px;}
.ws101{word-spacing:11.583600px;}
.ws87{word-spacing:11.642400px;}
.ws95{word-spacing:11.701200px;}
.wsbd{word-spacing:11.760000px;}
.ws7f{word-spacing:11.818800px;}
.ws4d{word-spacing:11.877600px;}
.ws9a{word-spacing:11.936400px;}
.ws102{word-spacing:11.995200px;}
.ws98{word-spacing:12.054000px;}
.ws20{word-spacing:12.112800px;}
.ws5a{word-spacing:12.171600px;}
.ws124{word-spacing:12.230400px;}
.wsa2{word-spacing:12.348000px;}
.ws5d{word-spacing:12.406800px;}
.wsc8{word-spacing:12.524400px;}
.wsa5{word-spacing:12.583200px;}
.ws92{word-spacing:12.642000px;}
.ws3c{word-spacing:12.700800px;}
.wsd8{word-spacing:12.759600px;}
.ws48{word-spacing:12.818400px;}
.ws5e{word-spacing:12.877200px;}
.ws80{word-spacing:12.936000px;}
.ws4f{word-spacing:12.994800px;}
.wsa9{word-spacing:13.112400px;}
.wsba{word-spacing:13.171200px;}
.wsfd{word-spacing:13.230000px;}
.wsa0{word-spacing:13.288800px;}
.wsdd{word-spacing:13.406400px;}
.ws123{word-spacing:13.582800px;}
.wsb3{word-spacing:13.818000px;}
.ws65{word-spacing:13.876800px;}
.ws10c{word-spacing:13.935600px;}
.wsde{word-spacing:13.994400px;}
.ws15{word-spacing:14.053200px;}
.wsdb{word-spacing:14.112000px;}
.ws38{word-spacing:14.170800px;}
.ws58{word-spacing:14.288400px;}
.wsa6{word-spacing:14.347200px;}
.ws11e{word-spacing:14.464800px;}
.ws3e{word-spacing:14.523600px;}
.ws89{word-spacing:14.582400px;}
.ws43{word-spacing:14.641200px;}
.ws25{word-spacing:14.700000px;}
.ws107{word-spacing:14.758800px;}
.ws129{word-spacing:14.817600px;}
.wse7{word-spacing:14.935200px;}
.ws77{word-spacing:14.994000px;}
.wse1{word-spacing:15.052800px;}
.ws4b{word-spacing:15.111600px;}
.wsb7{word-spacing:15.170400px;}
.wsc{word-spacing:15.229200px;}
.wsca{word-spacing:15.288000px;}
.wse0{word-spacing:15.346800px;}
.wsf1{word-spacing:15.464400px;}
.wsb0{word-spacing:15.523200px;}
.ws11a{word-spacing:15.582000px;}
.ws76{word-spacing:15.640800px;}
.ws125{word-spacing:15.758400px;}
.ws105{word-spacing:15.993600px;}
.wscb{word-spacing:16.111200px;}
.ws108{word-spacing:16.346400px;}
.ws5c{word-spacing:16.405200px;}
.ws39{word-spacing:16.522800px;}
.wsf6{word-spacing:16.581600px;}
.ws120{word-spacing:16.640400px;}
.wsdf{word-spacing:16.816800px;}
.ws73{word-spacing:16.875600px;}
.ws121{word-spacing:16.993200px;}
.wsd9{word-spacing:17.169600px;}
.ws6d{word-spacing:17.287200px;}
.wsb4{word-spacing:17.346000px;}
.ws122{word-spacing:17.581200px;}
.wsfe{word-spacing:17.698800px;}
.ws44{word-spacing:17.816400px;}
.ws81{word-spacing:17.875200px;}
.ws10d{word-spacing:18.051600px;}
.ws3d{word-spacing:18.404400px;}
.wse9{word-spacing:18.580800px;}
.ws109{word-spacing:18.698400px;}
.ws62{word-spacing:19.933200px;}
.ws111{word-spacing:21.050400px;}
.wsa7{word-spacing:21.168000px;}
.wsdc{word-spacing:21.403200px;}
.wsab{word-spacing:21.638400px;}
.wsc7{word-spacing:21.697200px;}
.ws7b{word-spacing:21.814800px;}
.wse3{word-spacing:22.402800px;}
.wsb9{word-spacing:22.696800px;}
.wsaa{word-spacing:22.873200px;}
.wsff{word-spacing:22.932000px;}
.wsae{word-spacing:23.226000px;}
.wsbb{word-spacing:23.872800px;}
.ws11d{word-spacing:24.754800px;}
.wsb2{word-spacing:26.048400px;}
.wsf5{word-spacing:26.107200px;}
.wsf3{word-spacing:27.224400px;}
.ws1c{word-spacing:27.694800px;}
.wsd4{word-spacing:28.372800px;}
.ws84{word-spacing:28.635600px;}
.ws11b{word-spacing:29.811600px;}
.wsb8{word-spacing:32.281200px;}
.ws11c{word-spacing:34.927200px;}
.ws28{word-spacing:35.456400px;}
.ws78{word-spacing:54.978000px;}
.wsd6{word-spacing:104.692800px;}
.wsd2{word-spacing:170.260800px;}
.wsd0{word-spacing:258.720000px;}
.wsd3{word-spacing:430.895987px;}
.wsd1{word-spacing:443.567987px;}
._7{margin-left:-22.814400px;}
._27{margin-left:-10.995600px;}
._2a{margin-left:-9.442108px;}
._12{margin-left:-8.060420px;}
._c{margin-left:-6.055080px;}
._28{margin-left:-5.004960px;}
._8{margin-left:-3.976080px;}
._1{margin-left:-2.886000px;}
._0{margin-left:-1.348800px;}
._3{width:1.173600px;}
._4{width:2.539200px;}
._5{width:3.715200px;}
._a{width:4.833360px;}
._11{width:6.519480px;}
._e{width:8.468273px;}
._10{width:10.234680px;}
._d{width:12.054000px;}
._9{width:13.876800px;}
._b{width:15.288000px;}
._6{width:17.752800px;}
._2d{width:20.394960px;}
._2c{width:22.516080px;}
._f{width:23.855159px;}
._29{width:25.519200px;}
._25{width:27.988800px;}
._26{width:35.338800px;}
._17{width:37.701587px;}
._2b{width:44.476080px;}
._1a{width:113.594387px;}
._23{width:181.280387px;}
._21{width:212.152067px;}
._22{width:228.287987px;}
._18{width:293.567987px;}
._1f{width:344.927987px;}
._1b{width:346.171187px;}
._1c{width:378.527987px;}
._15{width:383.711987px;}
._16{width:389.951987px;}
._1d{width:392.591987px;}
._13{width:394.900787px;}
._20{width:410.639987px;}
._14{width:418.319987px;}
._24{width:481.514387px;}
._19{width:510.671987px;}
._1e{width:564.239987px;}
._2{width:1700.977750px;}
.fc3{color:transparent;}
.fc2{color:rgb(78,78,77);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:14.074549px;}
.fsb{font-size:31.500000px;}
.fsf{font-size:36.000000px;}
.fs11{font-size:37.532410px;}
.fs10{font-size:39.900000px;}
.fsc{font-size:41.160000px;}
.fs2{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs6{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsd{font-size:55.199999px;}
.fs9{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:74.580000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:0.326294px;}
.yb{bottom:81.133650px;}
.ya{bottom:93.135150px;}
.y31d{bottom:99.461998px;}
.y286{bottom:100.074898px;}
.y12c{bottom:100.669203px;}
.y24d{bottom:103.082098px;}
.y2c1{bottom:103.842728px;}
.y9{bottom:105.136650px;}
.ya7{bottom:106.635295px;}
.y1f5{bottom:109.035896px;}
.y1cb{bottom:109.084053px;}
.yfc{bottom:109.186500px;}
.y79{bottom:109.662150px;}
.y285{bottom:113.574898px;}
.y359{bottom:114.342773px;}
.y1e4{bottom:115.063957px;}
.y31b{bottom:115.974000px;}
.y8{bottom:117.138150px;}
.y2c0{bottom:117.342728px;}
.y12b{bottom:118.662003px;}
.y182{bottom:120.684896px;}
.y24c{bottom:121.074898px;}
.y16f{bottom:121.413457px;}
.y1ca{bottom:124.084053px;}
.ya6{bottom:124.628095px;}
.y78{bottom:124.662150px;}
.y284{bottom:127.074898px;}
.y358{bottom:127.842773px;}
.y7{bottom:129.139650px;}
.y2bf{bottom:130.842728px;}
.y1e3{bottom:133.056757px;}
.y319{bottom:133.764149px;}
.y1d8{bottom:134.141845px;}
.y15a{bottom:136.683603px;}
.y12a{bottom:136.698003px;}
.y181{bottom:138.677696px;}
.y24b{bottom:139.118098px;}
.y21f{bottom:139.274398px;}
.y16e{bottom:139.406257px;}
.y31a{bottom:139.914000px;}
.y20d{bottom:140.009998px;}
.y283{bottom:140.574898px;}
.y6{bottom:141.141150px;}
.y305{bottom:141.338997px;}
.y357{bottom:141.342773px;}
.ya5{bottom:142.620895px;}
.y2be{bottom:144.342728px;}
.y1e2{bottom:151.049557px;}
.y316{bottom:151.773148px;}
.y1d7{bottom:152.134645px;}
.y5{bottom:153.142650px;}
.y282{bottom:154.074898px;}
.y159{bottom:154.676403px;}
.y129{bottom:154.690803px;}
.y304{bottom:154.838997px;}
.y356{bottom:154.842773px;}
.y180{bottom:156.670496px;}
.y24a{bottom:157.110898px;}
.y21e{bottom:157.267198px;}
.y16d{bottom:157.399057px;}
.y2bd{bottom:157.842728px;}
.y20c{bottom:158.002798px;}
.yc9{bottom:160.628095px;}
.ya4{bottom:160.649695px;}
.y4{bottom:165.144150px;}
.y318{bottom:167.479649px;}
.y281{bottom:167.574898px;}
.y317{bottom:168.058205px;}
.y303{bottom:168.338997px;}
.y355{bottom:168.342773px;}
.y314{bottom:168.927749px;}
.y1d6{bottom:170.127445px;}
.y2bc{bottom:171.342728px;}
.y158{bottom:172.669203px;}
.y128{bottom:172.683603px;}
.y17f{bottom:174.663296px;}
.y249{bottom:175.103698px;}
.y21d{bottom:175.259998px;}
.y16c{bottom:175.391857px;}
.yc8{bottom:178.620895px;}
.ya3{bottom:178.642495px;}
.y302{bottom:181.838997px;}
.y354{bottom:181.842773px;}
.y31e{bottom:182.881943px;}
.y313{bottom:184.824749px;}
.y2bb{bottom:184.842728px;}
.y315{bottom:185.888248px;}
.y311{bottom:187.776139px;}
.y1e1{bottom:187.799557px;}
.y1d5{bottom:188.134657px;}
.y157{bottom:190.662003px;}
.y127{bottom:190.676403px;}
.y17e{bottom:192.656096px;}
.y248{bottom:193.096498px;}
.y21c{bottom:193.252798px;}
.y16b{bottom:193.384657px;}
.y280{bottom:194.574898px;}
.y20b{bottom:194.752798px;}
.y301{bottom:195.338997px;}
.y353{bottom:195.342773px;}
.yc7{bottom:196.628095px;}
.ya2{bottom:196.635295px;}
.y2ba{bottom:198.342728px;}
.y310{bottom:202.539139px;}
.y312{bottom:204.131400px;}
.y30e{bottom:205.759204px;}
.y31{bottom:205.766994px;}
.y1e0{bottom:205.792357px;}
.y1d4{bottom:206.127457px;}
.y27f{bottom:208.074898px;}
.y156{bottom:208.662003px;}
.y126{bottom:208.669203px;}
.y300{bottom:208.838997px;}
.y352{bottom:208.842773px;}
.y17d{bottom:210.648896px;}
.y247{bottom:211.089298px;}
.y21b{bottom:211.245598px;}
.y16a{bottom:211.377457px;}
.y2b9{bottom:211.842728px;}
.y20a{bottom:212.745598px;}
.yc6{bottom:214.620895px;}
.ya1{bottom:214.628095px;}
.y30d{bottom:220.060204px;}
.y30f{bottom:221.440041px;}
.y27e{bottom:221.574898px;}
.y2ff{bottom:222.338997px;}
.y351{bottom:222.342773px;}
.y40{bottom:222.402603px;}
.y30{bottom:223.759794px;}
.y30b{bottom:223.765945px;}
.y1d3{bottom:224.177696px;}
.y2b8{bottom:225.342728px;}
.y125{bottom:226.662003px;}
.y155{bottom:226.669203px;}
.y17c{bottom:228.641696px;}
.y246{bottom:229.082098px;}
.y21a{bottom:229.245598px;}
.y169{bottom:229.377457px;}
.y209{bottom:230.788958px;}
.y3f{bottom:231.402603px;}
.ya0{bottom:232.620895px;}
.y27d{bottom:235.074898px;}
.y2fe{bottom:235.838997px;}
.y350{bottom:235.842773px;}
.y30a{bottom:237.636445px;}
.y30c{bottom:238.801346px;}
.y2b7{bottom:238.842728px;}
.y2f{bottom:241.752594px;}
.y307{bottom:241.768497px;}
.y309{bottom:241.773445px;}
.y1d2{bottom:242.170496px;}
.y1df{bottom:242.542357px;}
.y124{bottom:244.662003px;}
.y17b{bottom:246.634496px;}
.y245{bottom:247.074898px;}
.y219{bottom:247.245598px;}
.y168{bottom:247.420496px;}
.y27c{bottom:248.574898px;}
.y208{bottom:248.781758px;}
.y2fd{bottom:249.338997px;}
.y34f{bottom:249.342773px;}
.y3e{bottom:249.402603px;}
.y9f{bottom:250.620895px;}
.y2b6{bottom:252.342728px;}
.y306{bottom:255.859497px;}
.y308{bottom:256.813042px;}
.y3d{bottom:258.402603px;}
.y2e{bottom:259.759794px;}
.y1d1{bottom:260.163296px;}
.y1de{bottom:260.535157px;}
.y27b{bottom:262.074898px;}
.y154{bottom:262.662003px;}
.y123{bottom:262.676403px;}
.y2fc{bottom:262.838997px;}
.y34e{bottom:262.842773px;}
.y244{bottom:265.082098px;}
.y167{bottom:265.413296px;}
.y2b5{bottom:265.842728px;}
.y207{bottom:266.774558px;}
.y9e{bottom:268.628095px;}
.y3c{bottom:271.902603px;}
.y27a{bottom:275.574898px;}
.y2fb{bottom:276.338997px;}
.y34d{bottom:276.342773px;}
.y2d{bottom:277.752594px;}
.y1d0{bottom:278.156096px;}
.y1dd{bottom:278.527957px;}
.y2b4{bottom:279.342728px;}
.y122{bottom:280.669203px;}
.y153{bottom:280.690803px;}
.y31c{bottom:282.343941px;}
.y243{bottom:283.074898px;}
.y17a{bottom:283.384496px;}
.y166{bottom:283.406096px;}
.y206{bottom:284.767358px;}
.y9d{bottom:286.620895px;}
.yc5{bottom:286.649695px;}
.y279{bottom:289.074898px;}
.y2fa{bottom:289.838997px;}
.y34c{bottom:289.842773px;}
.y3b{bottom:289.902603px;}
.y2b3{bottom:292.842728px;}
.y2c{bottom:295.752594px;}
.y1cf{bottom:296.148896px;}
.y1dc{bottom:296.520757px;}
.y121{bottom:298.662003px;}
.y152{bottom:298.683603px;}
.y3a{bottom:298.902603px;}
.y242{bottom:301.074898px;}
.y179{bottom:301.377296px;}
.y165{bottom:301.398896px;}
.y218{bottom:302.024558px;}
.y278{bottom:302.574898px;}
.y205{bottom:302.760158px;}
.y2f9{bottom:303.338997px;}
.y34b{bottom:303.342773px;}
.y9c{bottom:304.625696px;}
.yc4{bottom:304.642495px;}
.y2b2{bottom:306.342728px;}
.y2b{bottom:313.766994px;}
.y1ce{bottom:314.141696px;}
.y1db{bottom:314.513557px;}
.y277{bottom:316.074898px;}
.y120{bottom:316.662003px;}
.y151{bottom:316.676403px;}
.y2f8{bottom:316.838997px;}
.y34a{bottom:316.842773px;}
.y39{bottom:316.902603px;}
.y241{bottom:319.096498px;}
.y164{bottom:319.391696px;}
.y178{bottom:319.398896px;}
.y2b1{bottom:319.842728px;}
.y217{bottom:320.017358px;}
.y204{bottom:320.752958px;}
.y9b{bottom:322.620895px;}
.yc3{bottom:322.635295px;}
.y38{bottom:325.902603px;}
.y276{bottom:329.574898px;}
.y2f7{bottom:330.338997px;}
.y349{bottom:330.342773px;}
.y2a{bottom:331.759794px;}
.y1cd{bottom:332.134496px;}
.y1da{bottom:332.513557px;}
.y2b0{bottom:333.342728px;}
.y150{bottom:334.669203px;}
.y240{bottom:337.089298px;}
.y163{bottom:337.384496px;}
.y177{bottom:337.391696px;}
.y216{bottom:338.010158px;}
.y203{bottom:338.745758px;}
.yc2{bottom:340.628095px;}
.y2f6{bottom:343.838997px;}
.y348{bottom:343.842773px;}
.y37{bottom:343.902603px;}
.y2af{bottom:346.842728px;}
.y29{bottom:349.752594px;}
.y1cc{bottom:350.127296px;}
.y1d9{bottom:350.513557px;}
.y14f{bottom:352.662003px;}
.y23f{bottom:355.082098px;}
.y162{bottom:355.377296px;}
.y176{bottom:355.384496px;}
.y215{bottom:356.002958px;}
.y202{bottom:356.752958px;}
.y2f5{bottom:357.338997px;}
.y347{bottom:357.342773px;}
.y36{bottom:357.402603px;}
.yc1{bottom:358.620895px;}
.y9a{bottom:358.649695px;}
.y2ae{bottom:360.342728px;}
.y275{bottom:361.074898px;}
.y11f{bottom:365.214321px;}
.y28{bottom:367.759794px;}
.y274{bottom:370.074898px;}
.y14e{bottom:370.662003px;}
.y2f4{bottom:370.838997px;}
.y346{bottom:370.842773px;}
.y35{bottom:370.902603px;}
.y23e{bottom:373.074898px;}
.y175{bottom:373.377296px;}
.y161{bottom:373.384519px;}
.y2ad{bottom:373.842728px;}
.y214{bottom:373.995758px;}
.y201{bottom:374.745758px;}
.y99{bottom:376.642495px;}
.y34{bottom:379.902603px;}
.y11e{bottom:383.207121px;}
.y2f3{bottom:384.338997px;}
.y345{bottom:384.342773px;}
.y27{bottom:385.752594px;}
.y2ac{bottom:387.342728px;}
.y273{bottom:388.074921px;}
.y23d{bottom:391.074921px;}
.y160{bottom:391.377319px;}
.y174{bottom:391.384519px;}
.y213{bottom:392.002958px;}
.y200{bottom:392.745758px;}
.y33{bottom:393.402603px;}
.y98{bottom:394.635295px;}
.y2f2{bottom:397.838997px;}
.y344{bottom:397.842773px;}
.y2ab{bottom:400.842728px;}
.y11d{bottom:401.199921px;}
.y272{bottom:401.577171px;}
.y26{bottom:403.766994px;}
.y32{bottom:406.902603px;}
.y14d{bottom:408.438139px;}
.y173{bottom:409.377319px;}
.y15f{bottom:409.391719px;}
.y212{bottom:409.995758px;}
.y271{bottom:410.574921px;}
.y1ff{bottom:410.774558px;}
.y2f1{bottom:411.338997px;}
.y343{bottom:411.342773px;}
.y97{bottom:412.628095px;}
.y1e5{bottom:413.659332px;}
.y11c{bottom:419.279121px;}
.y25{bottom:421.759794px;}
.y270{bottom:424.074921px;}
.y2f0{bottom:424.838997px;}
.y342{bottom:424.842773px;}
.y14c{bottom:426.430939px;}
.y172{bottom:427.377319px;}
.y15e{bottom:427.384519px;}
.y211{bottom:428.010158px;}
.y1fe{bottom:428.767358px;}
.y23c{bottom:430.237930px;}
.y96{bottom:430.620895px;}
.y11b{bottom:437.271921px;}
.y26f{bottom:437.574921px;}
.y2ef{bottom:438.338997px;}
.y341{bottom:438.342773px;}
.y24{bottom:439.752594px;}
.y14b{bottom:444.481339px;}
.y15d{bottom:445.377319px;}
.y1fd{bottom:446.760158px;}
.y23b{bottom:448.317130px;}
.yc0{bottom:448.620895px;}
.y95{bottom:448.649695px;}
.y26e{bottom:451.074921px;}
.y2ee{bottom:451.838997px;}
.y340{bottom:451.842773px;}
.y11a{bottom:455.264721px;}
.y23{bottom:457.752594px;}
.y14a{bottom:462.474139px;}
.y15c{bottom:463.377319px;}
.y171{bottom:463.423653px;}
.y26d{bottom:464.574921px;}
.y1fc{bottom:464.752958px;}
.y210{bottom:464.760158px;}
.y2ed{bottom:465.338997px;}
.y33f{bottom:465.342773px;}
.y23a{bottom:466.309930px;}
.ybf{bottom:466.635295px;}
.y94{bottom:466.642495px;}
.y2aa{bottom:469.842773px;}
.y119{bottom:473.257521px;}
.y22{bottom:475.752594px;}
.y26c{bottom:478.074921px;}
.y2ec{bottom:478.838997px;}
.y33e{bottom:478.842773px;}
.y149{bottom:480.466939px;}
.y15b{bottom:481.377319px;}
.y170{bottom:481.416453px;}
.y1fb{bottom:482.745758px;}
.y20f{bottom:482.752958px;}
.y239{bottom:484.302730px;}
.ybe{bottom:484.628095px;}
.y93{bottom:484.635295px;}
.y118{bottom:491.250321px;}
.y26b{bottom:491.574921px;}
.y2eb{bottom:492.338997px;}
.y33d{bottom:492.342773px;}
.y148{bottom:498.459739px;}
.y20e{bottom:500.745758px;}
.y1fa{bottom:500.774558px;}
.y238{bottom:502.295530px;}
.ybd{bottom:502.620895px;}
.y92{bottom:502.628095px;}
.y26a{bottom:505.074921px;}
.y2ea{bottom:505.838997px;}
.y33c{bottom:505.842773px;}
.y117{bottom:509.243121px;}
.y2a9{bottom:510.342773px;}
.y147{bottom:516.452539px;}
.y269{bottom:518.574921px;}
.y1f9{bottom:518.767358px;}
.y2e9{bottom:519.338997px;}
.y33b{bottom:519.342773px;}
.y237{bottom:520.288330px;}
.y91{bottom:520.620895px;}
.ybc{bottom:520.625696px;}
.y2a8{bottom:523.842773px;}
.y116{bottom:527.235921px;}
.y21{bottom:528.215103px;}
.y268{bottom:532.074921px;}
.y2e8{bottom:532.838997px;}
.y33a{bottom:532.842773px;}
.y146{bottom:534.445339px;}
.y185{bottom:536.340021px;}
.y1f8{bottom:536.760158px;}
.y2a7{bottom:537.342773px;}
.y236{bottom:538.281130px;}
.ybb{bottom:538.620895px;}
.y90{bottom:538.635295px;}
.y115{bottom:545.228721px;}
.y267{bottom:545.574921px;}
.y20{bottom:546.215103px;}
.y2e7{bottom:546.338997px;}
.y339{bottom:546.342773px;}
.y184{bottom:549.087021px;}
.y2a6{bottom:550.842773px;}
.y145{bottom:552.438139px;}
.y1f7{bottom:554.752958px;}
.y235{bottom:556.273930px;}
.y8f{bottom:556.628095px;}
.y266{bottom:559.074921px;}
.y2e6{bottom:559.838997px;}
.y338{bottom:559.842773px;}
.y114{bottom:563.221521px;}
.y2a5{bottom:564.342773px;}
.y1f{bottom:568.715103px;}
.y144{bottom:570.430939px;}
.y1a0{bottom:570.859518px;}
.y265{bottom:572.574921px;}
.y1f6{bottom:572.745758px;}
.y2e5{bottom:573.338997px;}
.y337{bottom:573.342773px;}
.y234{bottom:574.266730px;}
.y5d{bottom:574.620895px;}
.y77{bottom:574.635295px;}
.yba{bottom:574.649695px;}
.y1b2{bottom:575.023930px;}
.ye2{bottom:575.737930px;}
.y1c9{bottom:575.795530px;}
.y2a4{bottom:577.842773px;}
.y113{bottom:581.214321px;}
.y264{bottom:586.074921px;}
.y1e{bottom:586.715103px;}
.y2e4{bottom:586.838997px;}
.y336{bottom:586.842773px;}
.y143{bottom:588.430939px;}
.y19f{bottom:589.087518px;}
.y2a3{bottom:591.342773px;}
.y233{bottom:592.259530px;}
.y76{bottom:592.628095px;}
.y5c{bottom:592.642495px;}
.y8e{bottom:592.656895px;}
.y1b1{bottom:593.016730px;}
.ye1{bottom:593.737930px;}
.yfb{bottom:593.752330px;}
.y1c8{bottom:593.788330px;}
.y112{bottom:599.207121px;}
.y263{bottom:599.574921px;}
.y2e3{bottom:600.338997px;}
.y335{bottom:600.342773px;}
.y1d{bottom:604.715103px;}
.y2a2{bottom:604.842773px;}
.y19e{bottom:607.231518px;}
.y232{bottom:610.252330px;}
.y75{bottom:610.620895px;}
.y5b{bottom:610.635295px;}
.y8d{bottom:610.649695px;}
.y1b0{bottom:611.009530px;}
.ye0{bottom:611.737930px;}
.yfa{bottom:611.745130px;}
.y1c7{bottom:611.781130px;}
.y262{bottom:613.074921px;}
.y2e2{bottom:613.838997px;}
.y334{bottom:613.842773px;}
.y111{bottom:617.199921px;}
.y2a1{bottom:618.342773px;}
.y1c{bottom:622.715103px;}
.y19d{bottom:625.375518px;}
.y142{bottom:626.207121px;}
.y2e1{bottom:627.338997px;}
.y333{bottom:627.342773px;}
.y231{bottom:628.245130px;}
.y74{bottom:628.620895px;}
.y5a{bottom:628.628095px;}
.y8c{bottom:628.642495px;}
.y1af{bottom:629.002330px;}
.ydf{bottom:629.737930px;}
.y1c6{bottom:629.773930px;}
.y2a0{bottom:631.842773px;}
.y110{bottom:635.199921px;}
.y1b{bottom:640.715103px;}
.y2e0{bottom:640.838997px;}
.y332{bottom:640.842773px;}
.y220{bottom:642.354172px;}
.y19c{bottom:643.519518px;}
.y141{bottom:644.199921px;}
.y29f{bottom:645.342773px;}
.y230{bottom:646.237930px;}
.y59{bottom:646.620895px;}
.y8b{bottom:646.635295px;}
.y1ae{bottom:646.995130px;}
.y1c5{bottom:647.766730px;}
.yf9{bottom:647.802776px;}
.y261{bottom:652.078671px;}
.y10f{bottom:653.214321px;}
.y2df{bottom:654.338997px;}
.y331{bottom:654.342773px;}
.y1a{bottom:658.715103px;}
.y29e{bottom:658.842773px;}
.y19b{bottom:661.663518px;}
.y140{bottom:662.199921px;}
.y22f{bottom:664.324376px;}
.yb9{bottom:664.620895px;}
.y8a{bottom:664.628095px;}
.y58{bottom:664.642495px;}
.y73{bottom:664.649695px;}
.y1ad{bottom:664.987930px;}
.yde{bottom:665.745130px;}
.y1c4{bottom:665.759530px;}
.yf8{bottom:665.795576px;}
.y2de{bottom:667.838997px;}
.y330{bottom:667.842773px;}
.y10e{bottom:671.207121px;}
.y260{bottom:671.574921px;}
.y374{bottom:672.342728px;}
.y29d{bottom:672.342773px;}
.y19{bottom:676.715103px;}
.y19a{bottom:679.807518px;}
.y13f{bottom:680.207121px;}
.y2dd{bottom:681.338997px;}
.y32f{bottom:681.342773px;}
.y22e{bottom:682.317176px;}
.y89{bottom:682.620895px;}
.y57{bottom:682.635295px;}
.y72{bottom:682.642495px;}
.yb8{bottom:682.671341px;}
.y1ac{bottom:682.987930px;}
.ydd{bottom:683.737930px;}
.y1c3{bottom:683.752330px;}
.yf7{bottom:683.788376px;}
.y373{bottom:685.842728px;}
.y10d{bottom:689.199921px;}
.y199{bottom:693.307518px;}
.y18{bottom:694.715103px;}
.y2dc{bottom:694.838997px;}
.y32e{bottom:694.842773px;}
.y13e{bottom:698.199921px;}
.y372{bottom:699.342728px;}
.y29c{bottom:699.342773px;}
.y22d{bottom:700.309976px;}
.y56{bottom:700.628095px;}
.y71{bottom:700.635295px;}
.yb7{bottom:700.664141px;}
.y1ab{bottom:701.002330px;}
.ydc{bottom:701.737930px;}
.y1c2{bottom:701.745130px;}
.yf6{bottom:701.781176px;}
.y25f{bottom:703.074921px;}
.y10c{bottom:707.199921px;}
.y2db{bottom:708.338997px;}
.y32d{bottom:708.342773px;}
.y198{bottom:711.451518px;}
.y17{bottom:712.715103px;}
.y29b{bottom:712.842773px;}
.y13d{bottom:716.199921px;}
.y25e{bottom:716.574921px;}
.y55{bottom:718.620895px;}
.y70{bottom:718.628095px;}
.yb6{bottom:718.656941px;}
.y1aa{bottom:718.995130px;}
.ydb{bottom:719.737930px;}
.yf5{bottom:719.773976px;}
.y2da{bottom:721.838997px;}
.y32c{bottom:721.842773px;}
.y197{bottom:729.595518px;}
.y16{bottom:730.715103px;}
.y13c{bottom:734.214321px;}
.y25d{bottom:734.574921px;}
.y2d9{bottom:735.338997px;}
.y32b{bottom:735.342773px;}
.y371{bottom:735.342808px;}
.y6f{bottom:736.620895px;}
.y88{bottom:736.625696px;}
.y54{bottom:736.628095px;}
.yb5{bottom:736.649741px;}
.y1a9{bottom:736.987930px;}
.y22c{bottom:737.059976px;}
.y1c1{bottom:737.737930px;}
.yf4{bottom:737.766776px;}
.y29a{bottom:739.842773px;}
.y196{bottom:747.739518px;}
.y15{bottom:748.715103px;}
.y2d8{bottom:748.838997px;}
.y32a{bottom:748.842773px;}
.y370{bottom:748.842808px;}
.y13b{bottom:752.207121px;}
.y299{bottom:753.342773px;}
.y53{bottom:754.620895px;}
.yb4{bottom:754.642541px;}
.y6e{bottom:754.649741px;}
.y1a8{bottom:755.009576px;}
.y22b{bottom:755.052776px;}
.y10b{bottom:755.737930px;}
.yf3{bottom:755.759576px;}
.y1c0{bottom:755.781176px;}
.yda{bottom:755.809976px;}
.y195{bottom:761.167518px;}
.y2d7{bottom:762.338997px;}
.y329{bottom:762.342773px;}
.y36f{bottom:762.342808px;}
.y14{bottom:766.715103px;}
.y298{bottom:766.842773px;}
.y13a{bottom:770.199921px;}
.y25c{bottom:770.574921px;}
.y52{bottom:772.628141px;}
.yb3{bottom:772.635341px;}
.y6d{bottom:772.642541px;}
.y1a7{bottom:773.002376px;}
.y22a{bottom:773.045576px;}
.yf2{bottom:773.752376px;}
.y10a{bottom:773.759576px;}
.y1bf{bottom:773.773976px;}
.yd9{bottom:773.802776px;}
.y2d6{bottom:775.838997px;}
.y328{bottom:775.842773px;}
.y36e{bottom:775.842808px;}
.y194{bottom:779.395518px;}
.y297{bottom:780.342773px;}
.y139{bottom:788.199921px;}
.y25b{bottom:788.582121px;}
.y13{bottom:789.215057px;}
.y2d5{bottom:789.338997px;}
.y327{bottom:789.342773px;}
.y36d{bottom:789.342808px;}
.y51{bottom:790.620941px;}
.yb2{bottom:790.628141px;}
.y6c{bottom:790.635341px;}
.y1a6{bottom:790.995176px;}
.y229{bottom:791.038376px;}
.yf1{bottom:791.745176px;}
.y109{bottom:791.752376px;}
.y1be{bottom:791.766776px;}
.yd8{bottom:791.795576px;}
.y1f4{bottom:792.195871px;}
.y296{bottom:793.842773px;}
.y193{bottom:797.551518px;}
.y2d4{bottom:802.838997px;}
.y326{bottom:802.842773px;}
.y36c{bottom:802.842808px;}
.y25a{bottom:806.574921px;}
.y295{bottom:807.342773px;}
.yb1{bottom:808.620941px;}
.y6b{bottom:808.628141px;}
.y50{bottom:808.635341px;}
.y1a5{bottom:808.987976px;}
.y228{bottom:809.031176px;}
.yf0{bottom:809.737976px;}
.y108{bottom:809.745176px;}
.y1bd{bottom:809.759576px;}
.yd7{bottom:809.788376px;}
.y1f3{bottom:810.188671px;}
.y192{bottom:815.695518px;}
.y2d3{bottom:816.338997px;}
.y325{bottom:816.342773px;}
.y36b{bottom:816.342808px;}
.y294{bottom:820.842773px;}
.y259{bottom:824.603721px;}
.y138{bottom:825.997611px;}
.y6a{bottom:826.620941px;}
.y4f{bottom:826.628141px;}
.y1a4{bottom:826.987976px;}
.y227{bottom:827.023976px;}
.y107{bottom:827.737976px;}
.yef{bottom:827.745176px;}
.y1bc{bottom:827.752376px;}
.yd6{bottom:827.781176px;}
.y1f2{bottom:828.181471px;}
.y191{bottom:829.195518px;}
.y2d2{bottom:829.838997px;}
.y324{bottom:829.842773px;}
.y36a{bottom:829.842808px;}
.y293{bottom:834.342773px;}
.y258{bottom:842.596521px;}
.y2d1{bottom:843.338997px;}
.y323{bottom:843.342773px;}
.y369{bottom:843.342808px;}
.y137{bottom:843.990411px;}
.y4e{bottom:844.620941px;}
.y69{bottom:844.656941px;}
.y1a3{bottom:844.987976px;}
.y226{bottom:845.016776px;}
.yee{bottom:845.737976px;}
.y1bb{bottom:845.745176px;}
.yd5{bottom:845.773976px;}
.y1f1{bottom:846.174271px;}
.y190{bottom:847.351518px;}
.y2d0{bottom:856.838997px;}
.y322{bottom:856.842773px;}
.y368{bottom:856.842808px;}
.y257{bottom:860.589321px;}
.y292{bottom:861.342773px;}
.y12{bottom:861.548112px;}
.y136{bottom:861.983211px;}
.yb0{bottom:862.625558px;}
.y4d{bottom:862.642541px;}
.y87{bottom:862.649558px;}
.y68{bottom:862.649741px;}
.y225{bottom:863.009576px;}
.y1ba{bottom:863.737976px;}
.yed{bottom:863.745176px;}
.y106{bottom:863.759576px;}
.yd4{bottom:863.766776px;}
.y1f0{bottom:864.167071px;}
.y18f{bottom:865.495518px;}
.y2cf{bottom:870.338997px;}
.y321{bottom:870.342773px;}
.y367{bottom:870.342808px;}
.y256{bottom:878.582121px;}
.y135{bottom:879.976011px;}
.yaf{bottom:880.620758px;}
.y4c{bottom:880.635341px;}
.y86{bottom:880.642358px;}
.y67{bottom:880.642541px;}
.y224{bottom:881.002376px;}
.yec{bottom:881.737976px;}
.y105{bottom:881.752376px;}
.yd3{bottom:881.759576px;}
.y1ef{bottom:882.159871px;}
.y11{bottom:882.548112px;}
.y18e{bottom:883.639518px;}
.y2ce{bottom:883.838997px;}
.y320{bottom:883.842773px;}
.y366{bottom:883.842808px;}
.y255{bottom:896.574921px;}
.y18d{bottom:897.139518px;}
.y2cd{bottom:897.338997px;}
.y291{bottom:897.342773px;}
.y365{bottom:897.342808px;}
.y134{bottom:897.968811px;}
.y4b{bottom:898.628141px;}
.y85{bottom:898.635158px;}
.y66{bottom:898.635341px;}
.y223{bottom:898.995176px;}
.yeb{bottom:899.737976px;}
.y104{bottom:899.745176px;}
.yd2{bottom:899.752376px;}
.y1a2{bottom:899.773976px;}
.y1ee{bottom:900.152671px;}
.y10{bottom:903.552612px;}
.y18c{bottom:910.639518px;}
.y2cc{bottom:910.838997px;}
.y290{bottom:910.842773px;}
.y364{bottom:910.842808px;}
.y254{bottom:914.582121px;}
.y133{bottom:915.990411px;}
.y4a{bottom:916.620941px;}
.y84{bottom:916.627958px;}
.y65{bottom:916.628141px;}
.yae{bottom:916.635158px;}
.y103{bottom:917.737976px;}
.yd1{bottom:917.745176px;}
.yea{bottom:917.752376px;}
.y1a1{bottom:917.766776px;}
.y1ed{bottom:918.145471px;}
.y18b{bottom:924.139518px;}
.y2cb{bottom:924.338997px;}
.y28f{bottom:924.342773px;}
.y363{bottom:924.342808px;}
.y253{bottom:932.574921px;}
.y132{bottom:933.983211px;}
.y83{bottom:934.620758px;}
.y64{bottom:934.620941px;}
.yad{bottom:934.627958px;}
.y49{bottom:934.656941px;}
.yd0{bottom:935.737976px;}
.ye9{bottom:935.745176px;}
.y102{bottom:935.759576px;}
.y1b9{bottom:935.820730px;}
.y1ec{bottom:936.138271px;}
.y2ca{bottom:937.838997px;}
.y28e{bottom:937.842773px;}
.y362{bottom:937.842808px;}
.yf{bottom:939.565528px;}
.y18a{bottom:942.295518px;}
.y252{bottom:950.574921px;}
.y2c9{bottom:951.338997px;}
.y28d{bottom:951.342773px;}
.y361{bottom:951.342808px;}
.y131{bottom:951.976011px;}
.y82{bottom:952.620758px;}
.y63{bottom:952.635341px;}
.y48{bottom:952.649741px;}
.ye8{bottom:953.737976px;}
.y101{bottom:953.752376px;}
.ycf{bottom:953.759576px;}
.y1b8{bottom:953.813530px;}
.y1eb{bottom:954.131071px;}
.y189{bottom:960.439518px;}
.y2c8{bottom:964.838997px;}
.y28c{bottom:964.842773px;}
.y360{bottom:964.842808px;}
.y130{bottom:969.968811px;}
.yac{bottom:970.620758px;}
.y81{bottom:970.627958px;}
.y62{bottom:970.628141px;}
.y47{bottom:970.642541px;}
.y100{bottom:971.745176px;}
.yce{bottom:971.752376px;}
.y222{bottom:971.766776px;}
.ye7{bottom:971.770629px;}
.y1b7{bottom:971.806330px;}
.y1ea{bottom:972.123871px;}
.y2c7{bottom:978.338997px;}
.y31f{bottom:978.342773px;}
.y35f{bottom:978.342808px;}
.ye{bottom:978.553528px;}
.y188{bottom:978.595518px;}
.y12f{bottom:987.968811px;}
.y80{bottom:988.620758px;}
.y61{bottom:988.620941px;}
.y46{bottom:988.635341px;}
.yab{bottom:988.649995px;}
.yff{bottom:989.737976px;}
.ycd{bottom:989.745176px;}
.y221{bottom:989.759576px;}
.ye6{bottom:989.763429px;}
.y251{bottom:989.771414px;}
.y1b6{bottom:989.799130px;}
.y1e9{bottom:990.138271px;}
.y2c6{bottom:991.838997px;}
.y28b{bottom:991.842773px;}
.y35e{bottom:991.842808px;}
.y187{bottom:992.095518px;}
.y2c5{bottom:1005.338997px;}
.y28a{bottom:1005.342773px;}
.y35d{bottom:1005.342808px;}
.y45{bottom:1006.628141px;}
.y7f{bottom:1006.635158px;}
.y60{bottom:1006.635341px;}
.yaa{bottom:1006.642795px;}
.ycc{bottom:1007.737976px;}
.yfe{bottom:1007.752376px;}
.ye5{bottom:1007.756229px;}
.y250{bottom:1007.764214px;}
.y1b5{bottom:1007.791930px;}
.y1e8{bottom:1008.131071px;}
.y2c4{bottom:1018.838997px;}
.y289{bottom:1018.842773px;}
.y35c{bottom:1018.842808px;}
.y186{bottom:1018.987518px;}
.y44{bottom:1024.620941px;}
.y7e{bottom:1024.627958px;}
.y5f{bottom:1024.628141px;}
.ya9{bottom:1024.635595px;}
.ycb{bottom:1025.737976px;}
.yfd{bottom:1025.745176px;}
.ye4{bottom:1025.749029px;}
.y12e{bottom:1025.754885px;}
.y24f{bottom:1025.757014px;}
.y1b4{bottom:1025.784730px;}
.y1e7{bottom:1026.123871px;}
.y2c3{bottom:1032.338997px;}
.y288{bottom:1032.342773px;}
.y35b{bottom:1032.342808px;}
.y3{bottom:1033.362579px;}
.y7d{bottom:1042.620758px;}
.y43{bottom:1042.620941px;}
.y5e{bottom:1042.624794px;}
.ya8{bottom:1042.628395px;}
.y183{bottom:1043.300079px;}
.yca{bottom:1043.737976px;}
.ye3{bottom:1043.741829px;}
.y12d{bottom:1043.747685px;}
.y24e{bottom:1043.749814px;}
.y1b3{bottom:1043.777530px;}
.y1e6{bottom:1044.123871px;}
.y2c2{bottom:1045.838997px;}
.y287{bottom:1045.842773px;}
.y35a{bottom:1045.842808px;}
.y2{bottom:1112.297079px;}
.yc{bottom:1122.254974px;}
.y7a{bottom:1126.524628px;}
.y41{bottom:1126.524719px;}
.y7c{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y7b{bottom:1127.300079px;}
.y42{bottom:1127.304719px;}
.h27{height:10.640359px;}
.h7{height:13.729500px;}
.h21{height:27.540000px;}
.h11{height:27.814500px;}
.h25{height:28.374502px;}
.h1f{height:29.988000px;}
.h23{height:30.324000px;}
.h24{height:30.523500px;}
.h20{height:32.130000px;}
.h22{height:35.532000px;}
.h6{height:37.086000px;}
.h10{height:39.735000px;}
.h1a{height:40.026000px;}
.h5{height:41.538000px;}
.h15{height:42.384000px;}
.h1e{height:42.840000px;}
.h1c{height:43.785000px;}
.h3{height:45.696000px;}
.h12{height:45.744000px;}
.h1d{height:45.814500px;}
.h1b{height:46.704000px;}
.h2{height:47.232000px;}
.h14{height:47.472000px;}
.hd{height:52.980000px;}
.h19{height:53.406000px;}
.h17{height:53.654399px;}
.h16{height:53.709599px;}
.h18{height:54.625200px;}
.hf{height:55.860000px;}
.he{height:58.380000px;}
.hc{height:61.120200px;}
.h13{height:62.605754px;}
.ha{height:67.194379px;}
.hb{height:67.212379px;}
.h8{height:71.000160px;}
.h4{height:86.692415px;}
.h9{height:137.088000px;}
.h26{height:204.143990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:140.273998px;}
.w3{width:344.762993px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x5{left:-1.332275px;}
.x0{left:0.000000px;}
.x1b{left:12.796051px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x6{left:94.683002px;}
.xa{left:97.034552px;}
.x12{left:107.539352px;}
.xf{left:115.039352px;}
.x1d{left:139.550400px;}
.x1f{left:140.704651px;}
.xe{left:187.519353px;}
.x3{left:270.817497px;}
.xd{left:348.379350px;}
.x7{left:457.086594px;}
.x1a{left:463.109985px;}
.x11{left:466.086594px;}
.xb{left:467.582394px;}
.x8{left:469.081794px;}
.x19{left:475.906036px;}
.x18{left:476.938660px;}
.x13{left:479.588093px;}
.x14{left:483.529633px;}
.xc{left:487.089294px;}
.x15{left:490.386133px;}
.x16{left:493.103989px;}
.x1c{left:602.660385px;}
.x1e{left:603.814636px;}
.x17{left:660.952332px;}
.x4{left:667.600479px;}
.x10{left:741.068390px;}
.x9{left:747.224258px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v7{vertical-align:3.024000pt;}
.v2{vertical-align:8.489258pt;}
.v6{vertical-align:16.000000pt;}
.v5{vertical-align:20.892226pt;}
.v3{vertical-align:23.466471pt;}
.ls5{letter-spacing:-3.210667pt;}
.ls7{letter-spacing:-1.045333pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.261333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000001pt;}
.ls9{letter-spacing:0.000063pt;}
.lsd{letter-spacing:0.133449pt;}
.lse{letter-spacing:0.200173pt;}
.lsb{letter-spacing:0.560000pt;}
.ls8{letter-spacing:0.784000pt;}
.lsf{letter-spacing:1.000864pt;}
.lsc{letter-spacing:1.668107pt;}
.ls2{letter-spacing:4.853333pt;}
.wsed{word-spacing:-12.387200pt;}
.ws47{word-spacing:-12.282667pt;}
.ws114{word-spacing:-11.237333pt;}
.ws3{word-spacing:-11.096533pt;}
.ws130{word-spacing:-10.942783pt;}
.ws4{word-spacing:-10.560000pt;}
.ws12f{word-spacing:-10.275540pt;}
.ws46{word-spacing:-10.156800pt;}
.ws12e{word-spacing:-9.474848pt;}
.ws12d{word-spacing:-9.408124pt;}
.wsd5{word-spacing:-9.344000pt;}
.ws12c{word-spacing:-9.320000pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.ws5{word-spacing:-8.760000pt;}
.ws18{word-spacing:-8.597867pt;}
.ws116{word-spacing:-8.280000pt;}
.ws19{word-spacing:-7.680000pt;}
.ws1{word-spacing:-7.242667pt;}
.wscf{word-spacing:-6.794667pt;}
.ws117{word-spacing:-6.132000pt;}
.wsce{word-spacing:-3.584000pt;}
.ws8{word-spacing:-2.464000pt;}
.wsec{word-spacing:-1.792000pt;}
.ws131{word-spacing:-1.668107pt;}
.wseb{word-spacing:-1.530667pt;}
.ws11f{word-spacing:-1.358933pt;}
.ws4a{word-spacing:-0.940800pt;}
.ws7{word-spacing:-0.693333pt;}
.ws30{word-spacing:-0.679467pt;}
.wsa3{word-spacing:-0.627200pt;}
.ws7e{word-spacing:-0.574933pt;}
.ws132{word-spacing:-0.560000pt;}
.ws1b{word-spacing:-0.470400pt;}
.ws6c{word-spacing:-0.418133pt;}
.ws50{word-spacing:-0.313600pt;}
.ws10a{word-spacing:-0.261333pt;}
.ws11{word-spacing:-0.209067pt;}
.ws70{word-spacing:-0.156800pt;}
.ws17{word-spacing:-0.080000pt;}
.wsac{word-spacing:-0.052267pt;}
.ws12b{word-spacing:-0.040000pt;}
.ws6{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.052267pt;}
.wsa8{word-spacing:0.156800pt;}
.ws54{word-spacing:0.209067pt;}
.wsfb{word-spacing:0.261333pt;}
.ws27{word-spacing:0.313600pt;}
.ws8f{word-spacing:0.365867pt;}
.ws35{word-spacing:0.418133pt;}
.ws90{word-spacing:0.470400pt;}
.ws113{word-spacing:0.522667pt;}
.wsfc{word-spacing:0.574933pt;}
.ws6a{word-spacing:0.627200pt;}
.ws9d{word-spacing:0.731733pt;}
.ws74{word-spacing:0.836267pt;}
.wsf0{word-spacing:0.888533pt;}
.wsa1{word-spacing:0.940800pt;}
.ws66{word-spacing:0.993067pt;}
.wsc0{word-spacing:1.045333pt;}
.wsc2{word-spacing:1.097600pt;}
.ws126{word-spacing:1.149867pt;}
.wsee{word-spacing:1.254400pt;}
.wsbe{word-spacing:1.306667pt;}
.ws8d{word-spacing:1.358933pt;}
.ws91{word-spacing:1.515733pt;}
.ws119{word-spacing:1.620267pt;}
.ws115{word-spacing:1.724800pt;}
.wsf{word-spacing:1.829333pt;}
.ws61{word-spacing:1.881600pt;}
.ws94{word-spacing:1.933867pt;}
.ws60{word-spacing:1.986133pt;}
.wsea{word-spacing:2.038400pt;}
.wsbf{word-spacing:2.142933pt;}
.ws37{word-spacing:2.195200pt;}
.ws13{word-spacing:2.299733pt;}
.wsb{word-spacing:2.352000pt;}
.ws1d{word-spacing:2.404267pt;}
.ws12{word-spacing:2.456533pt;}
.ws7d{word-spacing:2.508800pt;}
.ws34{word-spacing:2.561067pt;}
.ws99{word-spacing:2.613333pt;}
.ws7c{word-spacing:2.665600pt;}
.ws51{word-spacing:2.717867pt;}
.wsef{word-spacing:2.822400pt;}
.ws67{word-spacing:2.926933pt;}
.wsb6{word-spacing:2.979200pt;}
.ws72{word-spacing:3.083733pt;}
.ws29{word-spacing:3.136000pt;}
.ws12a{word-spacing:3.188267pt;}
.ws1a{word-spacing:3.240533pt;}
.ws9b{word-spacing:3.292800pt;}
.wsc3{word-spacing:3.345067pt;}
.wsa4{word-spacing:3.397333pt;}
.ws75{word-spacing:3.449600pt;}
.wsad{word-spacing:3.501867pt;}
.ws8a{word-spacing:3.554133pt;}
.ws10{word-spacing:3.606400pt;}
.wsc5{word-spacing:3.658667pt;}
.wsd7{word-spacing:3.815467pt;}
.ws118{word-spacing:3.867733pt;}
.ws57{word-spacing:3.920000pt;}
.ws128{word-spacing:3.972267pt;}
.ws55{word-spacing:4.024533pt;}
.wse5{word-spacing:4.076800pt;}
.ws6b{word-spacing:4.129067pt;}
.ws110{word-spacing:4.233600pt;}
.wsf9{word-spacing:4.285867pt;}
.ws9{word-spacing:4.338133pt;}
.ws79{word-spacing:4.390400pt;}
.ws1e{word-spacing:4.442667pt;}
.ws31{word-spacing:4.494933pt;}
.ws2f{word-spacing:4.547200pt;}
.ws10e{word-spacing:4.599467pt;}
.ws36{word-spacing:4.651733pt;}
.ws104{word-spacing:4.704000pt;}
.ws6e{word-spacing:4.756267pt;}
.wscc{word-spacing:4.808533pt;}
.ws5b{word-spacing:4.860800pt;}
.ws53{word-spacing:4.913067pt;}
.ws26{word-spacing:4.965333pt;}
.ws8b{word-spacing:5.017600pt;}
.ws4e{word-spacing:5.069867pt;}
.ws1f{word-spacing:5.122133pt;}
.ws96{word-spacing:5.174400pt;}
.ws52{word-spacing:5.226667pt;}
.ws82{word-spacing:5.278933pt;}
.ws106{word-spacing:5.331200pt;}
.wsbc{word-spacing:5.383467pt;}
.ws69{word-spacing:5.435733pt;}
.ws5f{word-spacing:5.488000pt;}
.ws3b{word-spacing:5.592533pt;}
.wsc1{word-spacing:5.644800pt;}
.ws33{word-spacing:5.697067pt;}
.ws4c{word-spacing:5.749333pt;}
.wsb1{word-spacing:5.801600pt;}
.ws22{word-spacing:5.853867pt;}
.wse6{word-spacing:5.906133pt;}
.wsc4{word-spacing:6.010667pt;}
.ws63{word-spacing:6.062933pt;}
.ws7a{word-spacing:6.115200pt;}
.wsd{word-spacing:6.219733pt;}
.ws59{word-spacing:6.272000pt;}
.wsf7{word-spacing:6.324267pt;}
.ws3f{word-spacing:6.428800pt;}
.wse4{word-spacing:6.481067pt;}
.ws24{word-spacing:6.585600pt;}
.ws16{word-spacing:6.637867pt;}
.wscd{word-spacing:6.690133pt;}
.ws3a{word-spacing:6.742400pt;}
.ws49{word-spacing:6.794667pt;}
.wse8{word-spacing:6.846933pt;}
.ws23{word-spacing:6.899200pt;}
.ws97{word-spacing:6.951467pt;}
.ws2b{word-spacing:7.108267pt;}
.ws8e{word-spacing:7.160533pt;}
.ws9e{word-spacing:7.212800pt;}
.ws85{word-spacing:7.265067pt;}
.wsf2{word-spacing:7.317333pt;}
.ws2d{word-spacing:7.369600pt;}
.wsb5{word-spacing:7.421867pt;}
.wsaf{word-spacing:7.474133pt;}
.wse{word-spacing:7.578667pt;}
.ws10f{word-spacing:7.630933pt;}
.ws32{word-spacing:7.683200pt;}
.ws10b{word-spacing:7.735467pt;}
.ws88{word-spacing:7.787733pt;}
.ws2c{word-spacing:7.840000pt;}
.ws40{word-spacing:7.892267pt;}
.wsfa{word-spacing:8.049067pt;}
.ws14{word-spacing:8.153600pt;}
.ws9f{word-spacing:8.258133pt;}
.ws68{word-spacing:8.362667pt;}
.ws71{word-spacing:8.467200pt;}
.wsc9{word-spacing:8.571733pt;}
.ws56{word-spacing:8.780800pt;}
.ws41{word-spacing:8.833067pt;}
.wsa{word-spacing:8.885333pt;}
.ws93{word-spacing:8.989867pt;}
.ws8c{word-spacing:9.094400pt;}
.ws86{word-spacing:9.146667pt;}
.ws2e{word-spacing:9.198933pt;}
.ws2a{word-spacing:9.251200pt;}
.ws127{word-spacing:9.355733pt;}
.ws42{word-spacing:9.408000pt;}
.ws45{word-spacing:9.460267pt;}
.ws83{word-spacing:9.512533pt;}
.wse2{word-spacing:9.564800pt;}
.ws100{word-spacing:9.617067pt;}
.ws9c{word-spacing:9.669333pt;}
.ws6f{word-spacing:9.773867pt;}
.ws64{word-spacing:9.826133pt;}
.wsf4{word-spacing:9.878400pt;}
.ws112{word-spacing:9.930667pt;}
.ws103{word-spacing:10.035200pt;}
.ws21{word-spacing:10.139733pt;}
.wsf8{word-spacing:10.192000pt;}
.wsda{word-spacing:10.244267pt;}
.ws101{word-spacing:10.296533pt;}
.ws87{word-spacing:10.348800pt;}
.ws95{word-spacing:10.401067pt;}
.wsbd{word-spacing:10.453333pt;}
.ws7f{word-spacing:10.505600pt;}
.ws4d{word-spacing:10.557867pt;}
.ws9a{word-spacing:10.610133pt;}
.ws102{word-spacing:10.662400pt;}
.ws98{word-spacing:10.714667pt;}
.ws20{word-spacing:10.766933pt;}
.ws5a{word-spacing:10.819200pt;}
.ws124{word-spacing:10.871467pt;}
.wsa2{word-spacing:10.976000pt;}
.ws5d{word-spacing:11.028267pt;}
.wsc8{word-spacing:11.132800pt;}
.wsa5{word-spacing:11.185067pt;}
.ws92{word-spacing:11.237333pt;}
.ws3c{word-spacing:11.289600pt;}
.wsd8{word-spacing:11.341867pt;}
.ws48{word-spacing:11.394133pt;}
.ws5e{word-spacing:11.446400pt;}
.ws80{word-spacing:11.498667pt;}
.ws4f{word-spacing:11.550933pt;}
.wsa9{word-spacing:11.655467pt;}
.wsba{word-spacing:11.707733pt;}
.wsfd{word-spacing:11.760000pt;}
.wsa0{word-spacing:11.812267pt;}
.wsdd{word-spacing:11.916800pt;}
.ws123{word-spacing:12.073600pt;}
.wsb3{word-spacing:12.282667pt;}
.ws65{word-spacing:12.334933pt;}
.ws10c{word-spacing:12.387200pt;}
.wsde{word-spacing:12.439467pt;}
.ws15{word-spacing:12.491733pt;}
.wsdb{word-spacing:12.544000pt;}
.ws38{word-spacing:12.596267pt;}
.ws58{word-spacing:12.700800pt;}
.wsa6{word-spacing:12.753067pt;}
.ws11e{word-spacing:12.857600pt;}
.ws3e{word-spacing:12.909867pt;}
.ws89{word-spacing:12.962133pt;}
.ws43{word-spacing:13.014400pt;}
.ws25{word-spacing:13.066667pt;}
.ws107{word-spacing:13.118933pt;}
.ws129{word-spacing:13.171200pt;}
.wse7{word-spacing:13.275733pt;}
.ws77{word-spacing:13.328000pt;}
.wse1{word-spacing:13.380267pt;}
.ws4b{word-spacing:13.432533pt;}
.wsb7{word-spacing:13.484800pt;}
.wsc{word-spacing:13.537067pt;}
.wsca{word-spacing:13.589333pt;}
.wse0{word-spacing:13.641600pt;}
.wsf1{word-spacing:13.746133pt;}
.wsb0{word-spacing:13.798400pt;}
.ws11a{word-spacing:13.850667pt;}
.ws76{word-spacing:13.902933pt;}
.ws125{word-spacing:14.007467pt;}
.ws105{word-spacing:14.216533pt;}
.wscb{word-spacing:14.321067pt;}
.ws108{word-spacing:14.530133pt;}
.ws5c{word-spacing:14.582400pt;}
.ws39{word-spacing:14.686933pt;}
.wsf6{word-spacing:14.739200pt;}
.ws120{word-spacing:14.791467pt;}
.wsdf{word-spacing:14.948267pt;}
.ws73{word-spacing:15.000533pt;}
.ws121{word-spacing:15.105067pt;}
.wsd9{word-spacing:15.261867pt;}
.ws6d{word-spacing:15.366400pt;}
.wsb4{word-spacing:15.418667pt;}
.ws122{word-spacing:15.627733pt;}
.wsfe{word-spacing:15.732267pt;}
.ws44{word-spacing:15.836800pt;}
.ws81{word-spacing:15.889067pt;}
.ws10d{word-spacing:16.045867pt;}
.ws3d{word-spacing:16.359467pt;}
.wse9{word-spacing:16.516267pt;}
.ws109{word-spacing:16.620800pt;}
.ws62{word-spacing:17.718400pt;}
.ws111{word-spacing:18.711467pt;}
.wsa7{word-spacing:18.816000pt;}
.wsdc{word-spacing:19.025067pt;}
.wsab{word-spacing:19.234133pt;}
.wsc7{word-spacing:19.286400pt;}
.ws7b{word-spacing:19.390933pt;}
.wse3{word-spacing:19.913600pt;}
.wsb9{word-spacing:20.174933pt;}
.wsaa{word-spacing:20.331733pt;}
.wsff{word-spacing:20.384000pt;}
.wsae{word-spacing:20.645333pt;}
.wsbb{word-spacing:21.220267pt;}
.ws11d{word-spacing:22.004267pt;}
.wsb2{word-spacing:23.154133pt;}
.wsf5{word-spacing:23.206400pt;}
.wsf3{word-spacing:24.199467pt;}
.ws1c{word-spacing:24.617600pt;}
.wsd4{word-spacing:25.220267pt;}
.ws84{word-spacing:25.453867pt;}
.ws11b{word-spacing:26.499200pt;}
.wsb8{word-spacing:28.694400pt;}
.ws11c{word-spacing:31.046400pt;}
.ws28{word-spacing:31.516800pt;}
.ws78{word-spacing:48.869333pt;}
.wsd6{word-spacing:93.060267pt;}
.wsd2{word-spacing:151.342933pt;}
.wsd0{word-spacing:229.973333pt;}
.wsd3{word-spacing:383.018655pt;}
.wsd1{word-spacing:394.282655pt;}
._7{margin-left:-20.279467pt;}
._27{margin-left:-9.773867pt;}
._2a{margin-left:-8.392985pt;}
._12{margin-left:-7.164818pt;}
._c{margin-left:-5.382293pt;}
._28{margin-left:-4.448853pt;}
._8{margin-left:-3.534293pt;}
._1{margin-left:-2.565333pt;}
._0{margin-left:-1.198933pt;}
._3{width:1.043200pt;}
._4{width:2.257067pt;}
._5{width:3.302400pt;}
._a{width:4.296320pt;}
._11{width:5.795093pt;}
._e{width:7.527353pt;}
._10{width:9.097493pt;}
._d{width:10.714667pt;}
._9{width:12.334933pt;}
._b{width:13.589333pt;}
._6{width:15.780267pt;}
._2d{width:18.128853pt;}
._2c{width:20.014293pt;}
._f{width:21.204586pt;}
._29{width:22.683733pt;}
._25{width:24.878933pt;}
._26{width:31.412267pt;}
._17{width:33.512522pt;}
._2b{width:39.534293pt;}
._1a{width:100.972789pt;}
._23{width:161.138122pt;}
._21{width:188.579615pt;}
._22{width:202.922655pt;}
._18{width:260.949322pt;}
._1f{width:306.602655pt;}
._1b{width:307.707722pt;}
._1c{width:336.469322pt;}
._15{width:341.077322pt;}
._16{width:346.623989pt;}
._1d{width:348.970655pt;}
._13{width:351.022922pt;}
._20{width:365.013322pt;}
._14{width:371.839989pt;}
._24{width:428.012789pt;}
._19{width:453.930655pt;}
._1e{width:501.546655pt;}
._2{width:1511.980222pt;}
.fs12{font-size:12.510710pt;}
.fsb{font-size:28.000000pt;}
.fsf{font-size:32.000000pt;}
.fs11{font-size:33.362142pt;}
.fs10{font-size:35.466667pt;}
.fsc{font-size:36.586667pt;}
.fs2{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs6{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsd{font-size:49.066666pt;}
.fs9{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:66.293333pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:0.290039pt;}
.yb{bottom:72.118800pt;}
.ya{bottom:82.786800pt;}
.y31d{bottom:88.410665pt;}
.y286{bottom:88.955465pt;}
.y12c{bottom:89.483736pt;}
.y24d{bottom:91.628531pt;}
.y2c1{bottom:92.304647pt;}
.y9{bottom:93.454800pt;}
.ya7{bottom:94.786929pt;}
.y1f5{bottom:96.920797pt;}
.y1cb{bottom:96.963603pt;}
.yfc{bottom:97.054667pt;}
.y79{bottom:97.477467pt;}
.y285{bottom:100.955465pt;}
.y359{bottom:101.638021pt;}
.y1e4{bottom:102.279073pt;}
.y31b{bottom:103.088000pt;}
.y8{bottom:104.122800pt;}
.y2c0{bottom:104.304647pt;}
.y12b{bottom:105.477336pt;}
.y182{bottom:107.275464pt;}
.y24c{bottom:107.622131pt;}
.y16f{bottom:107.923073pt;}
.y1ca{bottom:110.296936pt;}
.ya6{bottom:110.780529pt;}
.y78{bottom:110.810800pt;}
.y284{bottom:112.955465pt;}
.y358{bottom:113.638021pt;}
.y7{bottom:114.790800pt;}
.y2bf{bottom:116.304647pt;}
.y1e3{bottom:118.272673pt;}
.y319{bottom:118.901465pt;}
.y1d8{bottom:119.237196pt;}
.y15a{bottom:121.496536pt;}
.y12a{bottom:121.509336pt;}
.y181{bottom:123.269064pt;}
.y24b{bottom:123.660531pt;}
.y21f{bottom:123.799465pt;}
.y16e{bottom:123.916673pt;}
.y31a{bottom:124.368000pt;}
.y20d{bottom:124.453331pt;}
.y283{bottom:124.955465pt;}
.y6{bottom:125.458800pt;}
.y305{bottom:125.634664pt;}
.y357{bottom:125.638021pt;}
.ya5{bottom:126.774129pt;}
.y2be{bottom:128.304647pt;}
.y1e2{bottom:134.266273pt;}
.y316{bottom:134.909465pt;}
.y1d7{bottom:135.230796pt;}
.y5{bottom:136.126800pt;}
.y282{bottom:136.955465pt;}
.y159{bottom:137.490136pt;}
.y129{bottom:137.502936pt;}
.y304{bottom:137.634664pt;}
.y356{bottom:137.638021pt;}
.y180{bottom:139.262664pt;}
.y24a{bottom:139.654131pt;}
.y21e{bottom:139.793065pt;}
.y16d{bottom:139.910273pt;}
.y2bd{bottom:140.304647pt;}
.y20c{bottom:140.446931pt;}
.yc9{bottom:142.780529pt;}
.ya4{bottom:142.799729pt;}
.y4{bottom:146.794800pt;}
.y318{bottom:148.870799pt;}
.y281{bottom:148.955465pt;}
.y317{bottom:149.385071pt;}
.y303{bottom:149.634664pt;}
.y355{bottom:149.638021pt;}
.y314{bottom:150.157999pt;}
.y1d6{bottom:151.224396pt;}
.y2bc{bottom:152.304647pt;}
.y158{bottom:153.483736pt;}
.y128{bottom:153.496536pt;}
.y17f{bottom:155.256264pt;}
.y249{bottom:155.647731pt;}
.y21d{bottom:155.786665pt;}
.y16c{bottom:155.903873pt;}
.yc8{bottom:158.774129pt;}
.ya3{bottom:158.793329pt;}
.y302{bottom:161.634664pt;}
.y354{bottom:161.638021pt;}
.y31e{bottom:162.561727pt;}
.y313{bottom:164.288666pt;}
.y2bb{bottom:164.304647pt;}
.y315{bottom:165.233999pt;}
.y311{bottom:166.912123pt;}
.y1e1{bottom:166.932940pt;}
.y1d5{bottom:167.230806pt;}
.y157{bottom:169.477336pt;}
.y127{bottom:169.490136pt;}
.y17e{bottom:171.249864pt;}
.y248{bottom:171.641331pt;}
.y21c{bottom:171.780265pt;}
.y16b{bottom:171.897473pt;}
.y280{bottom:172.955465pt;}
.y20b{bottom:173.113598pt;}
.y301{bottom:173.634664pt;}
.y353{bottom:173.638021pt;}
.yc7{bottom:174.780529pt;}
.ya2{bottom:174.786929pt;}
.y2ba{bottom:176.304647pt;}
.y310{bottom:180.034790pt;}
.y312{bottom:181.450133pt;}
.y30e{bottom:182.897070pt;}
.y31{bottom:182.903995pt;}
.y1e0{bottom:182.926540pt;}
.y1d4{bottom:183.224406pt;}
.y27f{bottom:184.955465pt;}
.y156{bottom:185.477336pt;}
.y126{bottom:185.483736pt;}
.y300{bottom:185.634664pt;}
.y352{bottom:185.638021pt;}
.y17d{bottom:187.243464pt;}
.y247{bottom:187.634931pt;}
.y21b{bottom:187.773865pt;}
.y16a{bottom:187.891073pt;}
.y2b9{bottom:188.304647pt;}
.y20a{bottom:189.107198pt;}
.yc6{bottom:190.774129pt;}
.ya1{bottom:190.780529pt;}
.y30d{bottom:195.609070pt;}
.y30f{bottom:196.835592pt;}
.y27e{bottom:196.955465pt;}
.y2ff{bottom:197.634664pt;}
.y351{bottom:197.638021pt;}
.y40{bottom:197.691203pt;}
.y30{bottom:198.897595pt;}
.y30b{bottom:198.903062pt;}
.y1d3{bottom:199.269064pt;}
.y2b8{bottom:200.304647pt;}
.y125{bottom:201.477336pt;}
.y155{bottom:201.483736pt;}
.y17c{bottom:203.237064pt;}
.y246{bottom:203.628531pt;}
.y21a{bottom:203.773865pt;}
.y169{bottom:203.891073pt;}
.y209{bottom:205.145740pt;}
.y3f{bottom:205.691203pt;}
.ya0{bottom:206.774129pt;}
.y27d{bottom:208.955465pt;}
.y2fe{bottom:209.634664pt;}
.y350{bottom:209.638021pt;}
.y30a{bottom:211.232396pt;}
.y30c{bottom:212.267863pt;}
.y2b7{bottom:212.304647pt;}
.y2f{bottom:214.891195pt;}
.y307{bottom:214.905331pt;}
.y309{bottom:214.909729pt;}
.y1d2{bottom:215.262664pt;}
.y1df{bottom:215.593207pt;}
.y124{bottom:217.477336pt;}
.y17b{bottom:219.230664pt;}
.y245{bottom:219.622131pt;}
.y219{bottom:219.773865pt;}
.y168{bottom:219.929330pt;}
.y27c{bottom:220.955465pt;}
.y208{bottom:221.139340pt;}
.y2fd{bottom:221.634664pt;}
.y34f{bottom:221.638021pt;}
.y3e{bottom:221.691203pt;}
.y9f{bottom:222.774129pt;}
.y2b6{bottom:224.304647pt;}
.y306{bottom:227.430664pt;}
.y308{bottom:228.278259pt;}
.y3d{bottom:229.691203pt;}
.y2e{bottom:230.897595pt;}
.y1d1{bottom:231.256264pt;}
.y1de{bottom:231.586807pt;}
.y27b{bottom:232.955465pt;}
.y154{bottom:233.477336pt;}
.y123{bottom:233.490136pt;}
.y2fc{bottom:233.634664pt;}
.y34e{bottom:233.638021pt;}
.y244{bottom:235.628531pt;}
.y167{bottom:235.922930pt;}
.y2b5{bottom:236.304647pt;}
.y207{bottom:237.132940pt;}
.y9e{bottom:238.780529pt;}
.y3c{bottom:241.691203pt;}
.y27a{bottom:244.955465pt;}
.y2fb{bottom:245.634664pt;}
.y34d{bottom:245.638021pt;}
.y2d{bottom:246.891195pt;}
.y1d0{bottom:247.249864pt;}
.y1dd{bottom:247.580407pt;}
.y2b4{bottom:248.304647pt;}
.y122{bottom:249.483736pt;}
.y153{bottom:249.502936pt;}
.y31c{bottom:250.972392pt;}
.y243{bottom:251.622131pt;}
.y17a{bottom:251.897330pt;}
.y166{bottom:251.916530pt;}
.y206{bottom:253.126540pt;}
.y9d{bottom:254.774129pt;}
.yc5{bottom:254.799729pt;}
.y279{bottom:256.955465pt;}
.y2fa{bottom:257.634664pt;}
.y34c{bottom:257.638021pt;}
.y3b{bottom:257.691203pt;}
.y2b3{bottom:260.304647pt;}
.y2c{bottom:262.891195pt;}
.y1cf{bottom:263.243464pt;}
.y1dc{bottom:263.574007pt;}
.y121{bottom:265.477336pt;}
.y152{bottom:265.496536pt;}
.y3a{bottom:265.691203pt;}
.y242{bottom:267.622131pt;}
.y179{bottom:267.890930pt;}
.y165{bottom:267.910130pt;}
.y218{bottom:268.466274pt;}
.y278{bottom:268.955465pt;}
.y205{bottom:269.120140pt;}
.y2f9{bottom:269.634664pt;}
.y34b{bottom:269.638021pt;}
.y9c{bottom:270.778396pt;}
.yc4{bottom:270.793329pt;}
.y2b2{bottom:272.304647pt;}
.y2b{bottom:278.903995pt;}
.y1ce{bottom:279.237064pt;}
.y1db{bottom:279.567607pt;}
.y277{bottom:280.955465pt;}
.y120{bottom:281.477336pt;}
.y151{bottom:281.490136pt;}
.y2f8{bottom:281.634664pt;}
.y34a{bottom:281.638021pt;}
.y39{bottom:281.691203pt;}
.y241{bottom:283.641331pt;}
.y164{bottom:283.903730pt;}
.y178{bottom:283.910130pt;}
.y2b1{bottom:284.304647pt;}
.y217{bottom:284.459874pt;}
.y204{bottom:285.113740pt;}
.y9b{bottom:286.774129pt;}
.yc3{bottom:286.786929pt;}
.y38{bottom:289.691203pt;}
.y276{bottom:292.955465pt;}
.y2f7{bottom:293.634664pt;}
.y349{bottom:293.638021pt;}
.y2a{bottom:294.897595pt;}
.y1cd{bottom:295.230664pt;}
.y1da{bottom:295.567607pt;}
.y2b0{bottom:296.304647pt;}
.y150{bottom:297.483736pt;}
.y240{bottom:299.634931pt;}
.y163{bottom:299.897330pt;}
.y177{bottom:299.903730pt;}
.y216{bottom:300.453474pt;}
.y203{bottom:301.107340pt;}
.yc2{bottom:302.780529pt;}
.y2f6{bottom:305.634664pt;}
.y348{bottom:305.638021pt;}
.y37{bottom:305.691203pt;}
.y2af{bottom:308.304647pt;}
.y29{bottom:310.891195pt;}
.y1cc{bottom:311.224264pt;}
.y1d9{bottom:311.567607pt;}
.y14f{bottom:313.477336pt;}
.y23f{bottom:315.628531pt;}
.y162{bottom:315.890930pt;}
.y176{bottom:315.897330pt;}
.y215{bottom:316.447074pt;}
.y202{bottom:317.113740pt;}
.y2f5{bottom:317.634664pt;}
.y347{bottom:317.638021pt;}
.y36{bottom:317.691203pt;}
.yc1{bottom:318.774129pt;}
.y9a{bottom:318.799729pt;}
.y2ae{bottom:320.304647pt;}
.y275{bottom:320.955465pt;}
.y11f{bottom:324.634952pt;}
.y28{bottom:326.897595pt;}
.y274{bottom:328.955465pt;}
.y14e{bottom:329.477336pt;}
.y2f4{bottom:329.634664pt;}
.y346{bottom:329.638021pt;}
.y35{bottom:329.691203pt;}
.y23e{bottom:331.622131pt;}
.y175{bottom:331.890930pt;}
.y161{bottom:331.897351pt;}
.y2ad{bottom:332.304647pt;}
.y214{bottom:332.440674pt;}
.y201{bottom:333.107340pt;}
.y99{bottom:334.793329pt;}
.y34{bottom:337.691203pt;}
.y11e{bottom:340.628552pt;}
.y2f3{bottom:341.634664pt;}
.y345{bottom:341.638021pt;}
.y27{bottom:342.891195pt;}
.y2ac{bottom:344.304647pt;}
.y273{bottom:344.955485pt;}
.y23d{bottom:347.622152pt;}
.y160{bottom:347.890951pt;}
.y174{bottom:347.897351pt;}
.y213{bottom:348.447074pt;}
.y200{bottom:349.107340pt;}
.y33{bottom:349.691203pt;}
.y98{bottom:350.786929pt;}
.y2f2{bottom:353.634664pt;}
.y344{bottom:353.638021pt;}
.y2ab{bottom:356.304647pt;}
.y11d{bottom:356.622152pt;}
.y272{bottom:356.957485pt;}
.y26{bottom:358.903995pt;}
.y32{bottom:361.691203pt;}
.y14d{bottom:363.056123pt;}
.y173{bottom:363.890951pt;}
.y15f{bottom:363.903751pt;}
.y212{bottom:364.440674pt;}
.y271{bottom:364.955485pt;}
.y1ff{bottom:365.132940pt;}
.y2f1{bottom:365.634664pt;}
.y343{bottom:365.638021pt;}
.y97{bottom:366.780529pt;}
.y1e5{bottom:367.697184pt;}
.y11c{bottom:372.692552pt;}
.y25{bottom:374.897595pt;}
.y270{bottom:376.955485pt;}
.y2f0{bottom:377.634664pt;}
.y342{bottom:377.638021pt;}
.y14c{bottom:379.049723pt;}
.y172{bottom:379.890951pt;}
.y15e{bottom:379.897351pt;}
.y211{bottom:380.453474pt;}
.y1fe{bottom:381.126540pt;}
.y23c{bottom:382.433716pt;}
.y96{bottom:382.774129pt;}
.y11b{bottom:388.686152pt;}
.y26f{bottom:388.955485pt;}
.y2ef{bottom:389.634664pt;}
.y341{bottom:389.638021pt;}
.y24{bottom:390.891195pt;}
.y14b{bottom:395.094523pt;}
.y15d{bottom:395.890951pt;}
.y1fd{bottom:397.120140pt;}
.y23b{bottom:398.504116pt;}
.yc0{bottom:398.774129pt;}
.y95{bottom:398.799729pt;}
.y26e{bottom:400.955485pt;}
.y2ee{bottom:401.634664pt;}
.y340{bottom:401.638021pt;}
.y11a{bottom:404.679752pt;}
.y23{bottom:406.891195pt;}
.y14a{bottom:411.088123pt;}
.y15c{bottom:411.890951pt;}
.y171{bottom:411.932136pt;}
.y26d{bottom:412.955485pt;}
.y1fc{bottom:413.113740pt;}
.y210{bottom:413.120140pt;}
.y2ed{bottom:413.634664pt;}
.y33f{bottom:413.638021pt;}
.y23a{bottom:414.497716pt;}
.ybf{bottom:414.786929pt;}
.y94{bottom:414.793329pt;}
.y2aa{bottom:417.638021pt;}
.y119{bottom:420.673352pt;}
.y22{bottom:422.891195pt;}
.y26c{bottom:424.955485pt;}
.y2ec{bottom:425.634664pt;}
.y33e{bottom:425.638021pt;}
.y149{bottom:427.081723pt;}
.y15b{bottom:427.890951pt;}
.y170{bottom:427.925736pt;}
.y1fb{bottom:429.107340pt;}
.y20f{bottom:429.113740pt;}
.y239{bottom:430.491316pt;}
.ybe{bottom:430.780529pt;}
.y93{bottom:430.786929pt;}
.y118{bottom:436.666952pt;}
.y26b{bottom:436.955485pt;}
.y2eb{bottom:437.634664pt;}
.y33d{bottom:437.638021pt;}
.y148{bottom:443.075323pt;}
.y20e{bottom:445.107340pt;}
.y1fa{bottom:445.132940pt;}
.y238{bottom:446.484916pt;}
.ybd{bottom:446.774129pt;}
.y92{bottom:446.780529pt;}
.y26a{bottom:448.955485pt;}
.y2ea{bottom:449.634664pt;}
.y33c{bottom:449.638021pt;}
.y117{bottom:452.660552pt;}
.y2a9{bottom:453.638021pt;}
.y147{bottom:459.068923pt;}
.y269{bottom:460.955485pt;}
.y1f9{bottom:461.126540pt;}
.y2e9{bottom:461.634664pt;}
.y33b{bottom:461.638021pt;}
.y237{bottom:462.478516pt;}
.y91{bottom:462.774129pt;}
.ybc{bottom:462.778396pt;}
.y2a8{bottom:465.638021pt;}
.y116{bottom:468.654152pt;}
.y21{bottom:469.524536pt;}
.y268{bottom:472.955485pt;}
.y2e8{bottom:473.634664pt;}
.y33a{bottom:473.638021pt;}
.y146{bottom:475.062523pt;}
.y185{bottom:476.746685pt;}
.y1f8{bottom:477.120140pt;}
.y2a7{bottom:477.638021pt;}
.y236{bottom:478.472116pt;}
.ybb{bottom:478.774129pt;}
.y90{bottom:478.786929pt;}
.y115{bottom:484.647752pt;}
.y267{bottom:484.955485pt;}
.y20{bottom:485.524536pt;}
.y2e7{bottom:485.634664pt;}
.y339{bottom:485.638021pt;}
.y184{bottom:488.077352pt;}
.y2a6{bottom:489.638021pt;}
.y145{bottom:491.056123pt;}
.y1f7{bottom:493.113740pt;}
.y235{bottom:494.465716pt;}
.y8f{bottom:494.780529pt;}
.y266{bottom:496.955485pt;}
.y2e6{bottom:497.634664pt;}
.y338{bottom:497.638021pt;}
.y114{bottom:500.641352pt;}
.y2a5{bottom:501.638021pt;}
.y1f{bottom:505.524536pt;}
.y144{bottom:507.049723pt;}
.y1a0{bottom:507.430683pt;}
.y265{bottom:508.955485pt;}
.y1f6{bottom:509.107340pt;}
.y2e5{bottom:509.634664pt;}
.y337{bottom:509.638021pt;}
.y234{bottom:510.459316pt;}
.y5d{bottom:510.774129pt;}
.y77{bottom:510.786929pt;}
.yba{bottom:510.799729pt;}
.y1b2{bottom:511.132382pt;}
.ye2{bottom:511.767049pt;}
.y1c9{bottom:511.818249pt;}
.y2a4{bottom:513.638021pt;}
.y113{bottom:516.634952pt;}
.y264{bottom:520.955485pt;}
.y1e{bottom:521.524536pt;}
.y2e4{bottom:521.634664pt;}
.y336{bottom:521.638021pt;}
.y143{bottom:523.049723pt;}
.y19f{bottom:523.633350pt;}
.y2a3{bottom:525.638021pt;}
.y233{bottom:526.452916pt;}
.y76{bottom:526.780529pt;}
.y5c{bottom:526.793329pt;}
.y8e{bottom:526.806129pt;}
.y1b1{bottom:527.125982pt;}
.ye1{bottom:527.767049pt;}
.yfb{bottom:527.779849pt;}
.y1c8{bottom:527.811849pt;}
.y112{bottom:532.628552pt;}
.y263{bottom:532.955485pt;}
.y2e3{bottom:533.634664pt;}
.y335{bottom:533.638021pt;}
.y1d{bottom:537.524536pt;}
.y2a2{bottom:537.638021pt;}
.y19e{bottom:539.761350pt;}
.y232{bottom:542.446516pt;}
.y75{bottom:542.774129pt;}
.y5b{bottom:542.786929pt;}
.y8d{bottom:542.799729pt;}
.y1b0{bottom:543.119582pt;}
.ye0{bottom:543.767049pt;}
.yfa{bottom:543.773449pt;}
.y1c7{bottom:543.805449pt;}
.y262{bottom:544.955485pt;}
.y2e2{bottom:545.634664pt;}
.y334{bottom:545.638021pt;}
.y111{bottom:548.622152pt;}
.y2a1{bottom:549.638021pt;}
.y1c{bottom:553.524536pt;}
.y19d{bottom:555.889350pt;}
.y142{bottom:556.628552pt;}
.y2e1{bottom:557.634664pt;}
.y333{bottom:557.638021pt;}
.y231{bottom:558.440116pt;}
.y74{bottom:558.774129pt;}
.y5a{bottom:558.780529pt;}
.y8c{bottom:558.793329pt;}
.y1af{bottom:559.113182pt;}
.ydf{bottom:559.767049pt;}
.y1c6{bottom:559.799049pt;}
.y2a0{bottom:561.638021pt;}
.y110{bottom:564.622152pt;}
.y1b{bottom:569.524536pt;}
.y2e0{bottom:569.634664pt;}
.y332{bottom:569.638021pt;}
.y220{bottom:570.981486pt;}
.y19c{bottom:572.017350pt;}
.y141{bottom:572.622152pt;}
.y29f{bottom:573.638021pt;}
.y230{bottom:574.433716pt;}
.y59{bottom:574.774129pt;}
.y8b{bottom:574.786929pt;}
.y1ae{bottom:575.106782pt;}
.y1c5{bottom:575.792649pt;}
.yf9{bottom:575.824690pt;}
.y261{bottom:579.625485pt;}
.y10f{bottom:580.634952pt;}
.y2df{bottom:581.634664pt;}
.y331{bottom:581.638021pt;}
.y1a{bottom:585.524536pt;}
.y29e{bottom:585.638021pt;}
.y19b{bottom:588.145350pt;}
.y140{bottom:588.622152pt;}
.y22f{bottom:590.510557pt;}
.yb9{bottom:590.774129pt;}
.y8a{bottom:590.780529pt;}
.y58{bottom:590.793329pt;}
.y73{bottom:590.799729pt;}
.y1ad{bottom:591.100382pt;}
.yde{bottom:591.773449pt;}
.y1c4{bottom:591.786249pt;}
.yf8{bottom:591.818290pt;}
.y2de{bottom:593.634664pt;}
.y330{bottom:593.638021pt;}
.y10e{bottom:596.628552pt;}
.y260{bottom:596.955485pt;}
.y374{bottom:597.637980pt;}
.y29d{bottom:597.638021pt;}
.y19{bottom:601.524536pt;}
.y19a{bottom:604.273350pt;}
.y13f{bottom:604.628552pt;}
.y2dd{bottom:605.634664pt;}
.y32f{bottom:605.638021pt;}
.y22e{bottom:606.504157pt;}
.y89{bottom:606.774129pt;}
.y57{bottom:606.786929pt;}
.y72{bottom:606.793329pt;}
.yb8{bottom:606.818970pt;}
.y1ac{bottom:607.100382pt;}
.ydd{bottom:607.767049pt;}
.y1c3{bottom:607.779849pt;}
.yf7{bottom:607.811890pt;}
.y373{bottom:609.637980pt;}
.y10d{bottom:612.622152pt;}
.y199{bottom:616.273350pt;}
.y18{bottom:617.524536pt;}
.y2dc{bottom:617.634664pt;}
.y32e{bottom:617.638021pt;}
.y13e{bottom:620.622152pt;}
.y372{bottom:621.637980pt;}
.y29c{bottom:621.638021pt;}
.y22d{bottom:622.497757pt;}
.y56{bottom:622.780529pt;}
.y71{bottom:622.786929pt;}
.yb7{bottom:622.812570pt;}
.y1ab{bottom:623.113182pt;}
.ydc{bottom:623.767049pt;}
.y1c2{bottom:623.773449pt;}
.yf6{bottom:623.805490pt;}
.y25f{bottom:624.955485pt;}
.y10c{bottom:628.622152pt;}
.y2db{bottom:629.634664pt;}
.y32d{bottom:629.638021pt;}
.y198{bottom:632.401350pt;}
.y17{bottom:633.524536pt;}
.y29b{bottom:633.638021pt;}
.y13d{bottom:636.622152pt;}
.y25e{bottom:636.955485pt;}
.y55{bottom:638.774129pt;}
.y70{bottom:638.780529pt;}
.yb6{bottom:638.806170pt;}
.y1aa{bottom:639.106782pt;}
.ydb{bottom:639.767049pt;}
.yf5{bottom:639.799090pt;}
.y2da{bottom:641.634664pt;}
.y32c{bottom:641.638021pt;}
.y197{bottom:648.529350pt;}
.y16{bottom:649.524536pt;}
.y13c{bottom:652.634952pt;}
.y25d{bottom:652.955485pt;}
.y2d9{bottom:653.634664pt;}
.y32b{bottom:653.638021pt;}
.y371{bottom:653.638051pt;}
.y6f{bottom:654.774129pt;}
.y88{bottom:654.778396pt;}
.y54{bottom:654.780529pt;}
.yb5{bottom:654.799770pt;}
.y1a9{bottom:655.100382pt;}
.y22c{bottom:655.164423pt;}
.y1c1{bottom:655.767049pt;}
.yf4{bottom:655.792690pt;}
.y29a{bottom:657.638021pt;}
.y196{bottom:664.657350pt;}
.y15{bottom:665.524536pt;}
.y2d8{bottom:665.634664pt;}
.y32a{bottom:665.638021pt;}
.y370{bottom:665.638051pt;}
.y13b{bottom:668.628552pt;}
.y299{bottom:669.638021pt;}
.y53{bottom:670.774129pt;}
.yb4{bottom:670.793370pt;}
.y6e{bottom:670.799770pt;}
.y1a8{bottom:671.119623pt;}
.y22b{bottom:671.158023pt;}
.y10b{bottom:671.767049pt;}
.yf3{bottom:671.786290pt;}
.y1c0{bottom:671.805490pt;}
.yda{bottom:671.831090pt;}
.y195{bottom:676.593350pt;}
.y2d7{bottom:677.634664pt;}
.y329{bottom:677.638021pt;}
.y36f{bottom:677.638051pt;}
.y14{bottom:681.524536pt;}
.y298{bottom:681.638021pt;}
.y13a{bottom:684.622152pt;}
.y25c{bottom:684.955485pt;}
.y52{bottom:686.780570pt;}
.yb3{bottom:686.786970pt;}
.y6d{bottom:686.793370pt;}
.y1a7{bottom:687.113223pt;}
.y22a{bottom:687.151623pt;}
.yf2{bottom:687.779890pt;}
.y10a{bottom:687.786290pt;}
.y1bf{bottom:687.799090pt;}
.yd9{bottom:687.824690pt;}
.y2d6{bottom:689.634664pt;}
.y328{bottom:689.638021pt;}
.y36e{bottom:689.638051pt;}
.y194{bottom:692.796016pt;}
.y297{bottom:693.638021pt;}
.y139{bottom:700.622152pt;}
.y25b{bottom:700.961885pt;}
.y13{bottom:701.524495pt;}
.y2d5{bottom:701.634664pt;}
.y327{bottom:701.638021pt;}
.y36d{bottom:701.638051pt;}
.y51{bottom:702.774170pt;}
.yb2{bottom:702.780570pt;}
.y6c{bottom:702.786970pt;}
.y1a6{bottom:703.106823pt;}
.y229{bottom:703.145223pt;}
.yf1{bottom:703.773490pt;}
.y109{bottom:703.779890pt;}
.y1be{bottom:703.792690pt;}
.yd8{bottom:703.818290pt;}
.y1f4{bottom:704.174107pt;}
.y296{bottom:705.638021pt;}
.y193{bottom:708.934683pt;}
.y2d4{bottom:713.634664pt;}
.y326{bottom:713.638021pt;}
.y36c{bottom:713.638051pt;}
.y25a{bottom:716.955485pt;}
.y295{bottom:717.638021pt;}
.yb1{bottom:718.774170pt;}
.y6b{bottom:718.780570pt;}
.y50{bottom:718.786970pt;}
.y1a5{bottom:719.100423pt;}
.y228{bottom:719.138823pt;}
.yf0{bottom:719.767090pt;}
.y108{bottom:719.773490pt;}
.y1bd{bottom:719.786290pt;}
.yd7{bottom:719.811890pt;}
.y1f3{bottom:720.167707pt;}
.y192{bottom:725.062683pt;}
.y2d3{bottom:725.634664pt;}
.y325{bottom:725.638021pt;}
.y36b{bottom:725.638051pt;}
.y294{bottom:729.638021pt;}
.y259{bottom:732.981085pt;}
.y138{bottom:734.220099pt;}
.y6a{bottom:734.774170pt;}
.y4f{bottom:734.780570pt;}
.y1a4{bottom:735.100423pt;}
.y227{bottom:735.132423pt;}
.y107{bottom:735.767090pt;}
.yef{bottom:735.773490pt;}
.y1bc{bottom:735.779890pt;}
.yd6{bottom:735.805490pt;}
.y1f2{bottom:736.161307pt;}
.y191{bottom:737.062683pt;}
.y2d2{bottom:737.634664pt;}
.y324{bottom:737.638021pt;}
.y36a{bottom:737.638051pt;}
.y293{bottom:741.638021pt;}
.y258{bottom:748.974685pt;}
.y2d1{bottom:749.634664pt;}
.y323{bottom:749.638021pt;}
.y369{bottom:749.638051pt;}
.y137{bottom:750.213699pt;}
.y4e{bottom:750.774170pt;}
.y69{bottom:750.806170pt;}
.y1a3{bottom:751.100423pt;}
.y226{bottom:751.126023pt;}
.yee{bottom:751.767090pt;}
.y1bb{bottom:751.773490pt;}
.yd5{bottom:751.799090pt;}
.y1f1{bottom:752.154907pt;}
.y190{bottom:753.201350pt;}
.y2d0{bottom:761.634664pt;}
.y322{bottom:761.638021pt;}
.y368{bottom:761.638051pt;}
.y257{bottom:764.968285pt;}
.y292{bottom:765.638021pt;}
.y12{bottom:765.820544pt;}
.y136{bottom:766.207299pt;}
.yb0{bottom:766.778274pt;}
.y4d{bottom:766.793370pt;}
.y87{bottom:766.799607pt;}
.y68{bottom:766.799770pt;}
.y225{bottom:767.119623pt;}
.y1ba{bottom:767.767090pt;}
.yed{bottom:767.773490pt;}
.y106{bottom:767.786290pt;}
.yd4{bottom:767.792690pt;}
.y1f0{bottom:768.148507pt;}
.y18f{bottom:769.329350pt;}
.y2cf{bottom:773.634664pt;}
.y321{bottom:773.638021pt;}
.y367{bottom:773.638051pt;}
.y256{bottom:780.961885pt;}
.y135{bottom:782.200899pt;}
.yaf{bottom:782.774007pt;}
.y4c{bottom:782.786970pt;}
.y86{bottom:782.793207pt;}
.y67{bottom:782.793370pt;}
.y224{bottom:783.113223pt;}
.yec{bottom:783.767090pt;}
.y105{bottom:783.779890pt;}
.yd3{bottom:783.786290pt;}
.y1ef{bottom:784.142107pt;}
.y11{bottom:784.487211pt;}
.y18e{bottom:785.457350pt;}
.y2ce{bottom:785.634664pt;}
.y320{bottom:785.638021pt;}
.y366{bottom:785.638051pt;}
.y255{bottom:796.955485pt;}
.y18d{bottom:797.457350pt;}
.y2cd{bottom:797.634664pt;}
.y291{bottom:797.638021pt;}
.y365{bottom:797.638051pt;}
.y134{bottom:798.194499pt;}
.y4b{bottom:798.780570pt;}
.y85{bottom:798.786807pt;}
.y66{bottom:798.786970pt;}
.y223{bottom:799.106823pt;}
.yeb{bottom:799.767090pt;}
.y104{bottom:799.773490pt;}
.yd2{bottom:799.779890pt;}
.y1a2{bottom:799.799090pt;}
.y1ee{bottom:800.135707pt;}
.y10{bottom:803.157878pt;}
.y18c{bottom:809.457350pt;}
.y2cc{bottom:809.634664pt;}
.y290{bottom:809.638021pt;}
.y364{bottom:809.638051pt;}
.y254{bottom:812.961885pt;}
.y133{bottom:814.213699pt;}
.y4a{bottom:814.774170pt;}
.y84{bottom:814.780407pt;}
.y65{bottom:814.780570pt;}
.yae{bottom:814.786807pt;}
.y103{bottom:815.767090pt;}
.yd1{bottom:815.773490pt;}
.yea{bottom:815.779890pt;}
.y1a1{bottom:815.792690pt;}
.y1ed{bottom:816.129307pt;}
.y18b{bottom:821.457350pt;}
.y2cb{bottom:821.634664pt;}
.y28f{bottom:821.638021pt;}
.y363{bottom:821.638051pt;}
.y253{bottom:828.955485pt;}
.y132{bottom:830.207299pt;}
.y83{bottom:830.774007pt;}
.y64{bottom:830.774170pt;}
.yad{bottom:830.780407pt;}
.y49{bottom:830.806170pt;}
.yd0{bottom:831.767090pt;}
.ye9{bottom:831.773490pt;}
.y102{bottom:831.786290pt;}
.y1b9{bottom:831.840649pt;}
.y1ec{bottom:832.122907pt;}
.y2ca{bottom:833.634664pt;}
.y28e{bottom:833.638021pt;}
.y362{bottom:833.638051pt;}
.yf{bottom:835.169358pt;}
.y18a{bottom:837.596016pt;}
.y252{bottom:844.955485pt;}
.y2c9{bottom:845.634664pt;}
.y28d{bottom:845.638021pt;}
.y361{bottom:845.638051pt;}
.y131{bottom:846.200899pt;}
.y82{bottom:846.774007pt;}
.y63{bottom:846.786970pt;}
.y48{bottom:846.799770pt;}
.ye8{bottom:847.767090pt;}
.y101{bottom:847.779890pt;}
.ycf{bottom:847.786290pt;}
.y1b8{bottom:847.834249pt;}
.y1eb{bottom:848.116507pt;}
.y189{bottom:853.724016pt;}
.y2c8{bottom:857.634664pt;}
.y28c{bottom:857.638021pt;}
.y360{bottom:857.638051pt;}
.y130{bottom:862.194499pt;}
.yac{bottom:862.774007pt;}
.y81{bottom:862.780407pt;}
.y62{bottom:862.780570pt;}
.y47{bottom:862.793370pt;}
.y100{bottom:863.773490pt;}
.yce{bottom:863.779890pt;}
.y222{bottom:863.792690pt;}
.ye7{bottom:863.796114pt;}
.y1b7{bottom:863.827849pt;}
.y1ea{bottom:864.110107pt;}
.y2c7{bottom:869.634664pt;}
.y31f{bottom:869.638021pt;}
.y35f{bottom:869.638051pt;}
.ye{bottom:869.825358pt;}
.y188{bottom:869.862683pt;}
.y12f{bottom:878.194499pt;}
.y80{bottom:878.774007pt;}
.y61{bottom:878.774170pt;}
.y46{bottom:878.786970pt;}
.yab{bottom:878.799996pt;}
.yff{bottom:879.767090pt;}
.ycd{bottom:879.773490pt;}
.y221{bottom:879.786290pt;}
.ye6{bottom:879.789714pt;}
.y251{bottom:879.796813pt;}
.y1b6{bottom:879.821449pt;}
.y1e9{bottom:880.122907pt;}
.y2c6{bottom:881.634664pt;}
.y28b{bottom:881.638021pt;}
.y35e{bottom:881.638051pt;}
.y187{bottom:881.862683pt;}
.y2c5{bottom:893.634664pt;}
.y28a{bottom:893.638021pt;}
.y35d{bottom:893.638051pt;}
.y45{bottom:894.780570pt;}
.y7f{bottom:894.786807pt;}
.y60{bottom:894.786970pt;}
.yaa{bottom:894.793596pt;}
.ycc{bottom:895.767090pt;}
.yfe{bottom:895.779890pt;}
.ye5{bottom:895.783314pt;}
.y250{bottom:895.790413pt;}
.y1b5{bottom:895.815049pt;}
.y1e8{bottom:896.116507pt;}
.y2c4{bottom:905.634664pt;}
.y289{bottom:905.638021pt;}
.y35c{bottom:905.638051pt;}
.y186{bottom:905.766683pt;}
.y44{bottom:910.774170pt;}
.y7e{bottom:910.780407pt;}
.y5f{bottom:910.780570pt;}
.ya9{bottom:910.787196pt;}
.ycb{bottom:911.767090pt;}
.yfd{bottom:911.773490pt;}
.ye4{bottom:911.776914pt;}
.y12e{bottom:911.782120pt;}
.y24f{bottom:911.784013pt;}
.y1b4{bottom:911.808649pt;}
.y1e7{bottom:912.110107pt;}
.y2c3{bottom:917.634664pt;}
.y288{bottom:917.638021pt;}
.y35b{bottom:917.638051pt;}
.y3{bottom:918.544515pt;}
.y7d{bottom:926.774007pt;}
.y43{bottom:926.774170pt;}
.y5e{bottom:926.777594pt;}
.ya8{bottom:926.780796pt;}
.y183{bottom:927.377848pt;}
.yca{bottom:927.767090pt;}
.ye3{bottom:927.770514pt;}
.y12d{bottom:927.775720pt;}
.y24e{bottom:927.777613pt;}
.y1b3{bottom:927.802249pt;}
.y1e6{bottom:928.110107pt;}
.y2c2{bottom:929.634664pt;}
.y287{bottom:929.638021pt;}
.y35a{bottom:929.638051pt;}
.y2{bottom:988.708515pt;}
.yc{bottom:997.559977pt;}
.y7a{bottom:1001.355225pt;}
.y41{bottom:1001.355306pt;}
.y7c{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y7b{bottom:1002.044515pt;}
.y42{bottom:1002.048639pt;}
.h27{height:9.458097pt;}
.h7{height:12.204000pt;}
.h21{height:24.480000pt;}
.h11{height:24.724000pt;}
.h25{height:25.221780pt;}
.h1f{height:26.656000pt;}
.h23{height:26.954667pt;}
.h24{height:27.132000pt;}
.h20{height:28.560000pt;}
.h22{height:31.584000pt;}
.h6{height:32.965333pt;}
.h10{height:35.320000pt;}
.h1a{height:35.578667pt;}
.h5{height:36.922667pt;}
.h15{height:37.674667pt;}
.h1e{height:38.080000pt;}
.h1c{height:38.920000pt;}
.h3{height:40.618667pt;}
.h12{height:40.661333pt;}
.h1d{height:40.724000pt;}
.h1b{height:41.514667pt;}
.h2{height:41.984000pt;}
.h14{height:42.197333pt;}
.hd{height:47.093333pt;}
.h19{height:47.472000pt;}
.h17{height:47.692799pt;}
.h16{height:47.741866pt;}
.h18{height:48.555733pt;}
.hf{height:49.653333pt;}
.he{height:51.893333pt;}
.hc{height:54.329067pt;}
.h13{height:55.649560pt;}
.ha{height:59.728337pt;}
.hb{height:59.744337pt;}
.h8{height:63.111253pt;}
.h4{height:77.059924pt;}
.h9{height:121.856000pt;}
.h26{height:181.461324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:124.687998pt;}
.w3{width:306.455994pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x5{left:-1.184245pt;}
.x0{left:0.000000pt;}
.x1b{left:11.374268pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x6{left:84.162669pt;}
.xa{left:86.252935pt;}
.x12{left:95.590535pt;}
.xf{left:102.257202pt;}
.x1d{left:124.044800pt;}
.x1f{left:125.070801pt;}
.xe{left:166.683869pt;}
.x3{left:240.726664pt;}
.xd{left:309.670533pt;}
.x7{left:406.299194pt;}
.x1a{left:411.653320pt;}
.x11{left:414.299194pt;}
.xb{left:415.628794pt;}
.x8{left:416.961594pt;}
.x19{left:423.027588pt;}
.x18{left:423.945475pt;}
.x13{left:426.300527pt;}
.x14{left:429.804118pt;}
.xc{left:432.968261pt;}
.x15{left:435.898785pt;}
.x16{left:438.314657pt;}
.x1c{left:535.698120pt;}
.x1e{left:536.724121pt;}
.x17{left:587.513184pt;}
.x4{left:593.422648pt;}
.x10{left:658.727458pt;}
.x9{left:664.199341pt;}
}




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