
    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_9cd94f3f2a543759c029bf65.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_d05e81bc567f39efda5a1b8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_daa1171573f96e13b8582e96.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_f885537b3b3b539e972c5621.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_4d7bc33eba9e112f2f421582.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686000;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_94074b25f7a88e18294373a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.525000;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_d28a185268b5f689ae44e7eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.855000;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_a82bd333d29cc5f17ff15a40.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.896000;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_ed2cca8787ae8ab2b747897e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.911000;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_00a8e3af6ad919d9e46d8fee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.388000;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_23b9dbc31acad9d57d9c0b88.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_7d62ee116129e87ab0467575.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_a583dce1a8b30e10864ee56d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919922;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_a551e56587b665c3ce74758c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946289;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_e40d22c81dfe3fa87a3d57a0.woff2')format("woff");}.fff{font-family:fff;line-height:0.944824;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_2fc55360ae59e0b9b719c4ec.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_16fd02d83a0592257baa7372.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_444dfe0d031a23e6dded1a16.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a8ac2ca3e1934081bff8afa9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f68faac75a9f3d549fc361fe.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.919922;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-15.048000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.132000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000070px;}
.ls5{letter-spacing:0.168000px;}
.ls2{letter-spacing:1.578086px;}
.ls4{letter-spacing:35.114400px;}
.ls1{letter-spacing:35.865600px;}
.ls3{letter-spacing:38.110546px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10a{word-spacing:-67.500070px;}
.ws108{word-spacing:-67.500000px;}
.ws22{word-spacing:-46.475813px;}
.ws1e{word-spacing:-38.950042px;}
.ws0{word-spacing:-22.500000px;}
.ws89{word-spacing:-19.510886px;}
.ws100{word-spacing:-17.932800px;}
.wsd8{word-spacing:-7.531776px;}
.ws10{word-spacing:-3.873485px;}
.wsbb{word-spacing:-3.801754px;}
.ws4e{word-spacing:-3.730022px;}
.wsac{word-spacing:-3.586560px;}
.ws5c{word-spacing:-3.514829px;}
.wsdb{word-spacing:-3.299635px;}
.ws5e{word-spacing:-3.227904px;}
.wse2{word-spacing:-3.156173px;}
.wsc8{word-spacing:-3.084442px;}
.wsf3{word-spacing:-3.012710px;}
.wsd1{word-spacing:-2.797517px;}
.wsed{word-spacing:-2.725786px;}
.ws1b{word-spacing:-2.510592px;}
.ws101{word-spacing:-2.438861px;}
.wsc6{word-spacing:-2.367130px;}
.wsf7{word-spacing:-2.295398px;}
.ws6{word-spacing:-2.223667px;}
.wsa7{word-spacing:-2.151936px;}
.wsbe{word-spacing:-2.080205px;}
.ws31{word-spacing:-1.649818px;}
.ws6a{word-spacing:-1.506355px;}
.ws7c{word-spacing:-1.434624px;}
.wsc3{word-spacing:-1.291162px;}
.wsc7{word-spacing:-1.147699px;}
.ws83{word-spacing:-1.075968px;}
.ws34{word-spacing:-1.004237px;}
.ws38{word-spacing:-0.932506px;}
.ws4{word-spacing:-0.860774px;}
.ws3{word-spacing:-0.789043px;}
.ws44{word-spacing:-0.717312px;}
.wsd0{word-spacing:-0.645581px;}
.ws94{word-spacing:-0.573850px;}
.wscb{word-spacing:-0.502118px;}
.ws7f{word-spacing:-0.430387px;}
.ws20{word-spacing:-0.394522px;}
.ws45{word-spacing:-0.286925px;}
.ws8{word-spacing:-0.215194px;}
.wsd3{word-spacing:-0.143462px;}
.ws21{word-spacing:-0.071731px;}
.ws109{word-spacing:-0.067570px;}
.ws107{word-spacing:-0.067500px;}
.ws1{word-spacing:0.000000px;}
.ws76{word-spacing:0.071731px;}
.wsf2{word-spacing:0.143462px;}
.ws8c{word-spacing:0.215194px;}
.ws9a{word-spacing:0.286925px;}
.ws12{word-spacing:0.358656px;}
.ws68{word-spacing:0.430387px;}
.ws74{word-spacing:0.502118px;}
.wscf{word-spacing:0.573850px;}
.ws63{word-spacing:0.645581px;}
.wsa1{word-spacing:0.717312px;}
.wse6{word-spacing:0.789043px;}
.wsfd{word-spacing:0.860774px;}
.wsa8{word-spacing:0.932506px;}
.ws8e{word-spacing:1.004237px;}
.wsc4{word-spacing:1.075968px;}
.wsba{word-spacing:1.147699px;}
.ws81{word-spacing:1.219430px;}
.ws54{word-spacing:1.291162px;}
.ws17{word-spacing:1.362893px;}
.wsa9{word-spacing:1.412865px;}
.wsd{word-spacing:1.434624px;}
.ws58{word-spacing:1.506355px;}
.ws39{word-spacing:1.578086px;}
.ws7b{word-spacing:1.649818px;}
.wsa0{word-spacing:1.721549px;}
.ws9{word-spacing:1.793280px;}
.ws37{word-spacing:1.865011px;}
.ws8a{word-spacing:1.936742px;}
.ws99{word-spacing:2.008474px;}
.ws8b{word-spacing:2.080205px;}
.ws47{word-spacing:2.151936px;}
.ws49{word-spacing:2.223667px;}
.wsc5{word-spacing:2.295398px;}
.ws8f{word-spacing:2.367130px;}
.wsd4{word-spacing:2.438861px;}
.wsc1{word-spacing:2.510592px;}
.ws5{word-spacing:2.582323px;}
.ws4f{word-spacing:2.654054px;}
.wsb7{word-spacing:2.725786px;}
.wsf9{word-spacing:2.797517px;}
.ws93{word-spacing:2.869248px;}
.ws5a{word-spacing:2.940979px;}
.ws11{word-spacing:3.012710px;}
.ws41{word-spacing:3.084442px;}
.ws14{word-spacing:3.156173px;}
.ws59{word-spacing:3.227904px;}
.ws42{word-spacing:3.299635px;}
.ws43{word-spacing:3.371366px;}
.ws6b{word-spacing:3.443098px;}
.ws91{word-spacing:3.514829px;}
.ws72{word-spacing:3.586560px;}
.ws65{word-spacing:3.613094px;}
.ws67{word-spacing:3.658291px;}
.ws50{word-spacing:3.730022px;}
.ws85{word-spacing:3.801754px;}
.wsf{word-spacing:3.873485px;}
.ws106{word-spacing:3.887724px;}
.ws105{word-spacing:3.923992px;}
.ws24{word-spacing:3.945216px;}
.ws6e{word-spacing:4.016947px;}
.ws92{word-spacing:4.088678px;}
.ws51{word-spacing:4.160410px;}
.ws40{word-spacing:4.232141px;}
.ws75{word-spacing:4.303872px;}
.ws18{word-spacing:4.375603px;}
.wsd7{word-spacing:4.447334px;}
.ws1c{word-spacing:4.483200px;}
.wse3{word-spacing:4.519066px;}
.wsc0{word-spacing:4.590797px;}
.ws66{word-spacing:4.662528px;}
.wsc{word-spacing:4.734259px;}
.ws97{word-spacing:4.805990px;}
.wsb8{word-spacing:4.877722px;}
.ws3c{word-spacing:4.949453px;}
.wsb0{word-spacing:5.021184px;}
.wsaf{word-spacing:5.092915px;}
.wsa5{word-spacing:5.164646px;}
.ws9e{word-spacing:5.308109px;}
.ws52{word-spacing:5.379840px;}
.ws8d{word-spacing:5.451571px;}
.wsd6{word-spacing:5.523302px;}
.ws9f{word-spacing:5.595034px;}
.ws35{word-spacing:5.666765px;}
.ws96{word-spacing:5.738496px;}
.wsbc{word-spacing:5.810227px;}
.ws4c{word-spacing:5.881958px;}
.ws70{word-spacing:5.953690px;}
.ws55{word-spacing:6.025421px;}
.ws46{word-spacing:6.097152px;}
.ws36{word-spacing:6.168883px;}
.ws9c{word-spacing:6.240614px;}
.ws9d{word-spacing:6.312346px;}
.ws86{word-spacing:6.384077px;}
.ws4d{word-spacing:6.455775px;}
.ws60{word-spacing:6.455808px;}
.ws56{word-spacing:6.527539px;}
.ws2{word-spacing:6.599270px;}
.ws78{word-spacing:6.671002px;}
.wsb{word-spacing:6.742733px;}
.ws7{word-spacing:6.814464px;}
.ws5f{word-spacing:6.886195px;}
.ws57{word-spacing:6.957926px;}
.ws84{word-spacing:7.029658px;}
.ws69{word-spacing:7.101389px;}
.wsae{word-spacing:7.173120px;}
.wse{word-spacing:7.244851px;}
.ws1a{word-spacing:7.316582px;}
.ws5d{word-spacing:7.388314px;}
.ws48{word-spacing:7.460045px;}
.ws4b{word-spacing:7.531776px;}
.ws3a{word-spacing:7.603507px;}
.wsda{word-spacing:7.675238px;}
.wsde{word-spacing:7.746970px;}
.ws82{word-spacing:7.818701px;}
.ws4a{word-spacing:7.890432px;}
.ws88{word-spacing:7.962163px;}
.wsb1{word-spacing:8.033894px;}
.ws98{word-spacing:8.105626px;}
.ws3e{word-spacing:8.177357px;}
.wsb9{word-spacing:8.249088px;}
.wsf5{word-spacing:8.320819px;}
.ws77{word-spacing:8.392550px;}
.wsb4{word-spacing:8.464282px;}
.wsa6{word-spacing:8.536013px;}
.wse9{word-spacing:8.607744px;}
.ws53{word-spacing:8.679475px;}
.wsb5{word-spacing:8.751206px;}
.wscc{word-spacing:8.822938px;}
.ws19{word-spacing:8.894669px;}
.ws3f{word-spacing:8.966400px;}
.ws7e{word-spacing:9.038131px;}
.ws3d{word-spacing:9.109862px;}
.ws6f{word-spacing:9.181594px;}
.wsf4{word-spacing:9.253325px;}
.ws32{word-spacing:9.295163px;}
.wsad{word-spacing:9.325056px;}
.wsc2{word-spacing:9.468518px;}
.wsce{word-spacing:9.540250px;}
.ws9b{word-spacing:9.611981px;}
.wse1{word-spacing:9.683712px;}
.wsaa{word-spacing:9.827174px;}
.ws15{word-spacing:9.898906px;}
.ws87{word-spacing:9.970637px;}
.ws62{word-spacing:10.042368px;}
.wsd5{word-spacing:10.114099px;}
.wsab{word-spacing:10.185830px;}
.ws95{word-spacing:10.257562px;}
.wse0{word-spacing:10.329293px;}
.ws71{word-spacing:10.401024px;}
.wsa2{word-spacing:10.472755px;}
.wsa{word-spacing:10.544486px;}
.ws73{word-spacing:10.616218px;}
.wsec{word-spacing:10.687949px;}
.ws13{word-spacing:10.759680px;}
.wsdf{word-spacing:10.831411px;}
.ws7d{word-spacing:10.903142px;}
.ws6c{word-spacing:10.974874px;}
.wsfa{word-spacing:11.046605px;}
.ws6d{word-spacing:11.190067px;}
.wsbf{word-spacing:11.333530px;}
.ws79{word-spacing:11.405261px;}
.ws61{word-spacing:11.476992px;}
.wsa4{word-spacing:11.548723px;}
.wsf0{word-spacing:11.692186px;}
.wsee{word-spacing:11.763917px;}
.wse8{word-spacing:11.835648px;}
.ws3b{word-spacing:11.907379px;}
.wsbd{word-spacing:12.050842px;}
.wscd{word-spacing:12.122573px;}
.wsa3{word-spacing:12.266035px;}
.ws104{word-spacing:12.337766px;}
.wsdd{word-spacing:12.409498px;}
.wsd2{word-spacing:12.552960px;}
.wsb2{word-spacing:12.624691px;}
.wsf6{word-spacing:12.693247px;}
.ws90{word-spacing:12.696422px;}
.ws16{word-spacing:12.768154px;}
.ws7a{word-spacing:12.983347px;}
.ws5b{word-spacing:13.055078px;}
.wseb{word-spacing:13.270272px;}
.wsb3{word-spacing:13.342003px;}
.wsf8{word-spacing:13.413734px;}
.ws80{word-spacing:13.485466px;}
.wse7{word-spacing:13.628928px;}
.wsef{word-spacing:13.700659px;}
.wsdc{word-spacing:13.844122px;}
.wsf1{word-spacing:14.202778px;}
.wse4{word-spacing:14.274509px;}
.wsb6{word-spacing:14.417971px;}
.wsc9{word-spacing:14.561434px;}
.wsd9{word-spacing:14.920090px;}
.wsca{word-spacing:15.135283px;}
.wsea{word-spacing:15.350477px;}
.wse5{word-spacing:15.493939px;}
.ws102{word-spacing:15.637402px;}
.wsfb{word-spacing:18.076262px;}
.ws1d{word-spacing:20.192333px;}
.ws64{word-spacing:25.003657px;}
.ws103{word-spacing:25.009711px;}
.wsfe{word-spacing:25.894963px;}
.wsff{word-spacing:35.793869px;}
.wsfc{word-spacing:50.713958px;}
.ws33{word-spacing:83.925075px;}
.ws29{word-spacing:211.089375px;}
.ws2a{word-spacing:371.344049px;}
.ws2c{word-spacing:427.057672px;}
.ws26{word-spacing:473.302777px;}
.ws2d{word-spacing:474.715882px;}
.ws28{word-spacing:478.309615px;}
.ws25{word-spacing:483.603377px;}
.ws27{word-spacing:490.489572px;}
.ws23{word-spacing:491.737695px;}
.ws30{word-spacing:511.851124px;}
.ws2f{word-spacing:533.004655px;}
.ws2e{word-spacing:538.484918px;}
.ws2b{word-spacing:542.882041px;}
.ws1f{word-spacing:2215.740902px;}
._2d{margin-left:-83.582101px;}
._4c{margin-left:-79.708616px;}
._1a{margin-left:-72.192749px;}
._12{margin-left:-70.256006px;}
._1f{margin-left:-69.077146px;}
._30{margin-left:-65.140499px;}
._1c{margin-left:-63.195187px;}
._36{margin-left:-60.539020px;}
._31{margin-left:-58.153621px;}
._3b{margin-left:-54.616985px;}
._37{margin-left:-45.569100px;}
._1b{margin-left:-43.612570px;}
._26{margin-left:-41.747558px;}
._d{margin-left:-40.312934px;}
._11{margin-left:-37.802342px;}
._10{margin-left:-35.865600px;}
._4{margin-left:-34.686739px;}
._32{margin-left:-33.279245px;}
._15{margin-left:-31.992115px;}
._44{margin-left:-30.228195px;}
._8{margin-left:-27.329587px;}
._3e{margin-left:-25.309851px;}
._2f{margin-left:-18.590325px;}
._21{margin-left:-17.184326px;}
._24{margin-left:-14.704896px;}
._19{margin-left:-12.481229px;}
._3f{margin-left:-9.709486px;}
._13{margin-left:-8.536013px;}
._7{margin-left:-7.298314px;}
._5{margin-left:-5.953690px;}
._39{margin-left:-4.949453px;}
._6{margin-left:-3.873485px;}
._3{margin-left:-2.865216px;}
._0{margin-left:-1.080000px;}
._1{width:1.170000px;}
._9{width:2.385398px;}
._2{width:3.873485px;}
._47{width:4.877722px;}
._1e{width:5.922528px;}
._46{width:8.679475px;}
._3d{width:11.979110px;}
._38{width:16.781069px;}
._23{width:18.107424px;}
._1d{width:20.443392px;}
._45{width:21.732499px;}
._3a{width:23.060909px;}
._a{width:24.384576px;}
._42{width:25.392845px;}
._34{width:26.397082px;}
._c{width:27.894029px;}
._16{width:29.266330px;}
._40{width:30.270566px;}
._b{width:31.270771px;}
._20{width:32.996352px;}
._41{width:34.498675px;}
._43{width:36.152525px;}
._4a{width:37.769161px;}
._17{width:42.608333px;}
._33{width:47.486054px;}
._3c{width:55.770975px;}
._4b{width:57.761199px;}
._48{width:61.620113px;}
._14{width:65.490586px;}
._49{width:70.229167px;}
._35{width:116.203950px;}
._2e{width:341.138041px;}
._22{width:1203.577805px;}
._2a{width:1703.544269px;}
._29{width:1718.894746px;}
._2c{width:1773.321802px;}
._25{width:1864.437350px;}
._e{width:1924.228844px;}
._27{width:1964.932762px;}
._18{width:2005.245696px;}
._f{width:2127.381629px;}
._2b{width:2149.138483px;}
._28{width:2153.944474px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:65.454600px;}
.fsd{font-size:67.500000px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:72.000000px;}
.fsb{font-size:76.500000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:90.000000px;}
.fsc{font-size:94.500000px;}
.fs6{font-size:103.292400px;}
.fsa{font-size:126.000000px;}
.fs4{font-size:148.722600px;}
.fs9{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y367{bottom:11.250000px;}
.y81{bottom:101.815500px;}
.y46{bottom:106.299000px;}
.y37c{bottom:122.625000px;}
.y395{bottom:126.000000px;}
.y389{bottom:137.250000px;}
.y37b{bottom:145.125000px;}
.y80{bottom:146.647500px;}
.ye5{bottom:150.135000px;}
.y45{bottom:151.131000px;}
.y382{bottom:160.875000px;}
.y394{bottom:163.125000px;}
.y176{bottom:163.185000px;}
.y37a{bottom:167.625000px;}
.y7f{bottom:172.650000px;}
.y6c{bottom:175.903500px;}
.ye4{bottom:176.137500px;}
.y102{bottom:176.413500px;}
.y44{bottom:177.187500px;}
.y15d{bottom:180.390000px;}
.y252{bottom:181.734000px;}
.y30{bottom:187.461000px;}
.y379{bottom:190.125000px;}
.y230{bottom:194.077500px;}
.y7e{bottom:198.652500px;}
.y393{bottom:200.250000px;}
.y33d{bottom:200.581500px;}
.ye3{bottom:202.140000px;}
.y175{bottom:202.414500px;}
.y325{bottom:202.416000px;}
.y43{bottom:203.242500px;}
.y15c{bottom:206.392500px;}
.y378{bottom:208.125000px;}
.y381{bottom:209.250000px;}
.y34d{bottom:212.656500px;}
.y26f{bottom:214.228500px;}
.y101{bottom:216.043500px;}
.y1c4{bottom:216.522000px;}
.y6b{bottom:216.849000px;}
.y196{bottom:218.515500px;}
.y251{bottom:220.584000px;}
.y7d{bottom:224.655000px;}
.y30a{bottom:225.166500px;}
.y12d{bottom:225.592500px;}
.y33c{bottom:226.584000px;}
.y1f0{bottom:228.141000px;}
.y42{bottom:229.299000px;}
.ye2{bottom:231.904500px;}
.ybf{bottom:232.219500px;}
.y15b{bottom:232.395000px;}
.y28d{bottom:236.641500px;}
.y392{bottom:237.375000px;}
.y2f{bottom:239.466000px;}
.y26e{bottom:240.231000px;}
.y174{bottom:241.465500px;}
.y324{bottom:242.755500px;}
.y2d4{bottom:242.799000px;}
.y377{bottom:245.250000px;}
.y100{bottom:245.809500px;}
.y1a8{bottom:248.343000px;}
.y7c{bottom:250.657500px;}
.ya9{bottom:251.020500px;}
.y309{bottom:251.169000px;}
.y12c{bottom:251.595000px;}
.y33b{bottom:252.586500px;}
.y34c{bottom:252.663000px;}
.y1ef{bottom:254.143500px;}
.y1d3{bottom:255.166500px;}
.y380{bottom:257.625000px;}
.y6a{bottom:257.796000px;}
.ybe{bottom:258.222000px;}
.y15a{bottom:258.397500px;}
.y250{bottom:260.992500px;}
.y2e{bottom:265.468500px;}
.y26d{bottom:266.233500px;}
.y173{bottom:267.468000px;}
.y323{bottom:268.758000px;}
.y2d3{bottom:268.801500px;}
.y22f{bottom:271.681500px;}
.y41{bottom:272.949000px;}
.y1a7{bottom:274.345500px;}
.y391{bottom:274.500000px;}
.y28c{bottom:275.329500px;}
.ye1{bottom:276.327000px;}
.y9a{bottom:276.660000px;}
.ya8{bottom:277.023000px;}
.y308{bottom:277.171500px;}
.y12b{bottom:277.597500px;}
.y33a{bottom:278.589000px;}
.y1ee{bottom:280.146000px;}
.y2ed{bottom:280.422000px;}
.y376{bottom:282.375000px;}
.y1c3{bottom:283.335000px;}
.y184{bottom:283.371000px;}
.y159{bottom:284.400000px;}
.y2a8{bottom:284.493000px;}
.ycb{bottom:284.772000px;}
.yff{bottom:285.441000px;}
.ybd{bottom:287.986500px;}
.y195{bottom:291.375000px;}
.y2d{bottom:291.471000px;}
.y26c{bottom:292.236000px;}
.y34b{bottom:292.669500px;}
.y2a9{bottom:294.678000px;}
.y322{bottom:294.760500px;}
.y2d2{bottom:294.804000px;}
.y24f{bottom:296.079000px;}
.y11{bottom:296.700000px;}
.y172{bottom:297.232500px;}
.y22e{bottom:297.684000px;}
.y69{bottom:298.743000px;}
.y40{bottom:299.004000px;}
.y1a6{bottom:300.348000px;}
.y28b{bottom:301.332000px;}
.y1d2{bottom:302.148000px;}
.y99{bottom:302.662500px;}
.ya7{bottom:303.025500px;}
.y307{bottom:303.174000px;}
.y7b{bottom:303.342000px;}
.y12a{bottom:303.600000px;}
.y339{bottom:304.591500px;}
.y214{bottom:304.762500px;}
.ye0{bottom:306.093000px;}
.y1c2{bottom:309.337500px;}
.y183{bottom:309.373500px;}
.y158{bottom:310.402500px;}
.y2a7{bottom:310.495500px;}
.yca{bottom:310.774500px;}
.yfe{bottom:311.443500px;}
.y1ed{bottom:313.917000px;}
.y390{bottom:317.250000px;}
.y194{bottom:317.377500px;}
.y2c{bottom:317.473500px;}
.y10{bottom:317.700000px;}
.y34a{bottom:318.672000px;}
.y375{bottom:319.500000px;}
.y27e{bottom:320.421000px;}
.y321{bottom:320.761500px;}
.y2d1{bottom:320.806500px;}
.ybc{bottom:322.204500px;}
.y22d{bottom:323.686500px;}
.y2ec{bottom:324.214500px;}
.y3f{bottom:325.060500px;}
.y388{bottom:325.125000px;}
.y1a5{bottom:326.350500px;}
.y28a{bottom:327.334500px;}
.y112{bottom:328.665000px;}
.ya6{bottom:329.028000px;}
.y7a{bottom:329.344500px;}
.y129{bottom:329.602500px;}
.y338{bottom:330.592500px;}
.y213{bottom:330.765000px;}
.y24e{bottom:331.167000px;}
.y1c1{bottom:335.340000px;}
.y182{bottom:335.376000px;}
.y171{bottom:336.283500px;}
.y2a6{bottom:336.498000px;}
.yc9{bottom:336.777000px;}
.yfd{bottom:337.444500px;}
.y98{bottom:337.987500px;}
.y26b{bottom:338.550000px;}
.y68{bottom:339.688500px;}
.y38f{bottom:339.750000px;}
.y1ec{bottom:339.919500px;}
.yf{bottom:340.050000px;}
.y157{bottom:340.167000px;}
.y2fa{bottom:340.477500px;}
.y193{bottom:343.380000px;}
.y2b{bottom:343.476000px;}
.ybb{bottom:348.207000px;}
.y22c{bottom:349.689000px;}
.y2eb{bottom:350.217000px;}
.ydf{bottom:350.515500px;}
.y320{bottom:350.527500px;}
.y2d0{bottom:350.572500px;}
.y3e{bottom:351.115500px;}
.y1a4{bottom:352.353000px;}
.y289{bottom:353.337000px;}
.y111{bottom:354.667500px;}
.y79{bottom:355.347000px;}
.y128{bottom:355.605000px;}
.y306{bottom:355.689000px;}
.y374{bottom:356.625000px;}
.y212{bottom:356.767500px;}
.y24d{bottom:357.168000px;}
.y349{bottom:358.678500px;}
.y1c0{bottom:361.342500px;}
.y181{bottom:361.378500px;}
.y38e{bottom:362.250000px;}
.y170{bottom:362.286000px;}
.y2a5{bottom:362.500500px;}
.yc8{bottom:362.779500px;}
.yfc{bottom:363.447000px;}
.y26a{bottom:364.552500px;}
.y1eb{bottom:365.922000px;}
.y2f9{bottom:366.480000px;}
.y97{bottom:367.752000px;}
.y387{bottom:369.000000px;}
.y2a{bottom:369.478500px;}
.y2be{bottom:372.426000px;}
.y192{bottom:373.144500px;}
.y22b{bottom:375.691500px;}
.y2ea{bottom:376.219500px;}
.yde{bottom:376.518000px;}
.y1ff{bottom:377.070000px;}
.y3d{bottom:377.172000px;}
.yba{bottom:377.971500px;}
.y1a3{bottom:378.355500px;}
.y1d1{bottom:378.388500px;}
.y67{bottom:380.635500px;}
.y237{bottom:380.670000px;}
.y78{bottom:381.349500px;}
.ya5{bottom:381.396000px;}
.y127{bottom:381.607500px;}
.y305{bottom:381.691500px;}
.y156{bottom:382.582500px;}
.y288{bottom:383.101500px;}
.y24c{bottom:383.170500px;}
.y1b2{bottom:384.432000px;}
.y337{bottom:384.526500px;}
.y13d{bottom:386.860500px;}
.y27d{bottom:386.875500px;}
.y1bf{bottom:387.345000px;}
.y180{bottom:387.381000px;}
.y16f{bottom:388.288500px;}
.y2a4{bottom:388.503000px;}
.yc7{bottom:388.782000px;}
.y38d{bottom:389.250000px;}
.y31f{bottom:390.867000px;}
.y1ea{bottom:391.924500px;}
.y2f8{bottom:392.482500px;}
.y386{bottom:392.625000px;}
.y21f{bottom:392.629500px;}
.y373{bottom:393.750000px;}
.y29{bottom:395.481000px;}
.y2cf{bottom:396.720000px;}
.y269{bottom:398.280000px;}
.y348{bottom:398.685000px;}
.y22a{bottom:401.694000px;}
.y2e9{bottom:402.222000px;}
.y96{bottom:403.062000px;}
.y1fe{bottom:403.072500px;}
.y1a2{bottom:404.358000px;}
.y1d0{bottom:404.391000px;}
.ydd{bottom:406.284000px;}
.y110{bottom:406.672500px;}
.y77{bottom:407.352000px;}
.ya4{bottom:407.398500px;}
.y126{bottom:407.610000px;}
.y24b{bottom:409.173000px;}
.y336{bottom:410.529000px;}
.y211{bottom:410.872500px;}
.yb9{bottom:412.189500px;}
.y13c{bottom:412.863000px;}
.y27c{bottom:412.878000px;}
.y1be{bottom:413.347500px;}
.y5d{bottom:413.563500px;}
.y16e{bottom:414.291000px;}
.yc6{bottom:414.784500px;}
.y191{bottom:415.504500px;}
.yfb{bottom:415.942500px;}
.y31e{bottom:416.869500px;}
.y17f{bottom:417.145500px;}
.y1e9{bottom:417.927000px;}
.y21e{bottom:418.632000px;}
.y3c{bottom:420.822000px;}
.y28{bottom:421.483500px;}
.y66{bottom:421.581000px;}
.y268{bottom:424.282500px;}
.ye{bottom:424.650000px;}
.y155{bottom:426.561000px;}
.y287{bottom:426.873000px;}
.y1b1{bottom:427.720500px;}
.y2e8{bottom:428.224500px;}
.y1fd{bottom:429.075000px;}
.y1a1{bottom:430.360500px;}
.y1cf{bottom:430.393500px;}
.y372{bottom:430.875000px;}
.y10f{bottom:432.675000px;}
.y95{bottom:432.828000px;}
.y76{bottom:433.354500px;}
.ya3{bottom:433.401000px;}
.y125{bottom:433.612500px;}
.y304{bottom:434.208000px;}
.y38c{bottom:434.250000px;}
.y335{bottom:436.531500px;}
.y210{bottom:436.875000px;}
.yb8{bottom:438.192000px;}
.y347{bottom:438.691500px;}
.y13b{bottom:438.865500px;}
.y27b{bottom:438.880500px;}
.y2a3{bottom:438.960000px;}
.y16d{bottom:440.293500px;}
.yc5{bottom:440.787000px;}
.y190{bottom:441.507000px;}
.y2ce{bottom:441.781500px;}
.yfa{bottom:441.945000px;}
.y31d{bottom:442.872000px;}
.y1bd{bottom:443.112000px;}
.y1e8{bottom:443.929500px;}
.y2f7{bottom:444.487500px;}
.y21d{bottom:444.634500px;}
.y3b{bottom:446.878500px;}
.y27{bottom:447.486000px;}
.yd{bottom:451.500000px;}
.y17e{bottom:452.730000px;}
.y2e7{bottom:454.227000px;}
.y1fc{bottom:455.077500px;}
.y229{bottom:455.503500px;}
.y2bd{bottom:456.064500px;}
.y1ce{bottom:456.394500px;}
.y5c{bottom:457.125000px;}
.y267{bottom:458.010000px;}
.ydc{bottom:458.085000px;}
.y10e{bottom:458.677500px;}
.ya2{bottom:459.403500px;}
.y303{bottom:460.210500px;}
.y65{bottom:462.528000px;}
.y334{bottom:462.534000px;}
.y20f{bottom:462.877500px;}
.yb7{bottom:464.194500px;}
.y346{bottom:464.694000px;}
.y13a{bottom:464.868000px;}
.y27a{bottom:464.883000px;}
.y1a0{bottom:465.355500px;}
.y16c{bottom:466.296000px;}
.yc4{bottom:466.789500px;}
.y18f{bottom:467.509500px;}
.yf9{bottom:467.946000px;}
.y371{bottom:468.000000px;}
.y1e7{bottom:469.932000px;}
.y24a{bottom:470.263500px;}
.y2f6{bottom:470.490000px;}
.y236{bottom:470.752500px;}
.y286{bottom:471.246000px;}
.y94{bottom:471.900000px;}
.y1b0{bottom:471.952500px;}
.y3a{bottom:472.933500px;}
.y26{bottom:473.488500px;}
.y2a2{bottom:477.046500px;}
.y31c{bottom:477.924000px;}
.y2e6{bottom:480.229500px;}
.y1bc{bottom:480.570000px;}
.y1fb{bottom:481.080000px;}
.y228{bottom:481.506000px;}
.y2bc{bottom:482.067000px;}
.y1cd{bottom:482.397000px;}
.y266{bottom:484.012500px;}
.y10d{bottom:484.678500px;}
.y75{bottom:486.040500px;}
.y302{bottom:486.213000px;}
.y124{bottom:486.555000px;}
.y333{bottom:488.536500px;}
.y20e{bottom:488.880000px;}
.y19f{bottom:491.358000px;}
.y16b{bottom:492.298500px;}
.yc3{bottom:492.792000px;}
.y154{bottom:493.696500px;}
.yf8{bottom:493.948500px;}
.yb6{bottom:493.960500px;}
.y279{bottom:494.647500px;}
.y249{bottom:496.264500px;}
.y17d{bottom:496.491000px;}
.y2f5{bottom:496.492500px;}
.y21c{bottom:496.639500px;}
.y235{bottom:496.755000px;}
.y18e{bottom:497.275500px;}
.y39{bottom:498.990000px;}
.y25{bottom:499.489500px;}
.y5b{bottom:500.686500px;}
.y2a1{bottom:503.049000px;}
.y93{bottom:503.463000px;}
.y64{bottom:503.473500px;}
.y1e6{bottom:503.701500px;}
.y31b{bottom:503.926500px;}
.y345{bottom:504.700500px;}
.y1bb{bottom:506.572500px;}
.y1fa{bottom:507.082500px;}
.y227{bottom:507.508500px;}
.y2bb{bottom:508.069500px;}
.y1cc{bottom:508.399500px;}
.y2e5{bottom:509.994000px;}
.y265{bottom:510.015000px;}
.y10c{bottom:510.681000px;}
.y370{bottom:510.750000px;}
.ydb{bottom:511.539000px;}
.ya1{bottom:511.771500px;}
.y74{bottom:512.043000px;}
.y2cd{bottom:512.205000px;}
.y301{bottom:512.215500px;}
.y123{bottom:512.557500px;}
.y332{bottom:514.539000px;}
.y20d{bottom:514.882500px;}
.y19e{bottom:517.360500px;}
.y16a{bottom:518.299500px;}
.yc2{bottom:518.794500px;}
.y153{bottom:519.699000px;}
.yf7{bottom:519.951000px;}
.y248{bottom:522.267000px;}
.y21b{bottom:522.642000px;}
.y234{bottom:522.757500px;}
.y139{bottom:523.063500px;}
.y38{bottom:525.045000px;}
.y24{bottom:525.492000px;}
.y5a{bottom:526.689000px;}
.yb5{bottom:528.178500px;}
.y2a0{bottom:529.051500px;}
.y1e5{bottom:529.704000px;}
.y31a{bottom:529.929000px;}
.y344{bottom:530.703000px;}
.y278{bottom:531.792000px;}
.y1f9{bottom:533.085000px;}
.y226{bottom:533.511000px;}
.y2ba{bottom:534.072000px;}
.y1cb{bottom:534.402000px;}
.y36f{bottom:535.500000px;}
.y1ba{bottom:536.337000px;}
.y10b{bottom:536.683500px;}
.yda{bottom:537.540000px;}
.ya0{bottom:537.774000px;}
.y73{bottom:538.045500px;}
.y2cc{bottom:538.207500px;}
.y300{bottom:538.216500px;}
.y122{bottom:538.560000px;}
.y92{bottom:538.788000px;}
.y285{bottom:539.577000px;}
.y18d{bottom:539.635500px;}
.y1af{bottom:539.856000px;}
.y2f4{bottom:540.253500px;}
.y20c{bottom:540.885000px;}
.y264{bottom:543.742500px;}
.y63{bottom:544.420500px;}
.y152{bottom:545.701500px;}
.y19d{bottom:547.126500px;}
.y169{bottom:548.065500px;}
.y247{bottom:548.269500px;}
.y21a{bottom:548.644500px;}
.y233{bottom:548.760000px;}
.y138{bottom:549.066000px;}
.y37{bottom:551.101500px;}
.y23{bottom:551.494500px;}
.y59{bottom:552.691500px;}
.y2e4{bottom:553.786500px;}
.yb4{bottom:554.181000px;}
.y1e4{bottom:555.706500px;}
.y319{bottom:555.931500px;}
.y277{bottom:557.794500px;}
.y35a{bottom:558.070500px;}
.y1f8{bottom:559.087500px;}
.y225{bottom:559.513500px;}
.y2b9{bottom:560.074500px;}
.y1ca{bottom:560.404500px;}
.y17c{bottom:562.180500px;}
.y10a{bottom:562.686000px;}
.y29f{bottom:562.978500px;}
.yd9{bottom:563.542500px;}
.y9f{bottom:563.776500px;}
.y72{bottom:564.048000px;}
.y2cb{bottom:564.210000px;}
.y121{bottom:564.562500px;}
.y284{bottom:565.578000px;}
.y18c{bottom:565.636500px;}
.y1ae{bottom:565.858500px;}
.y20b{bottom:566.887500px;}
.y331{bottom:568.471500px;}
.y91{bottom:568.552500px;}
.y263{bottom:569.745000px;}
.y343{bottom:570.709500px;}
.y2c5{bottom:571.326000px;}
.y151{bottom:571.704000px;}
.yf6{bottom:572.446500px;}
.y1b9{bottom:573.795000px;}
.y36e{bottom:574.875000px;}
.y137{bottom:575.068500px;}
.y232{bottom:578.524500px;}
.y58{bottom:578.694000px;}
.yc1{bottom:578.911500px;}
.y2e3{bottom:579.789000px;}
.yb3{bottom:580.182000px;}
.y1e3{bottom:581.709000px;}
.y318{bottom:581.934000px;}
.y276{bottom:583.797000px;}
.y1f7{bottom:585.090000px;}
.y62{bottom:585.367500px;}
.y224{bottom:585.516000px;}
.y2b8{bottom:586.077000px;}
.y1c9{bottom:586.407000px;}
.y19c{bottom:587.353500px;}
.y17b{bottom:588.183000px;}
.y29e{bottom:588.981000px;}
.yd8{bottom:589.545000px;}
.y71{bottom:590.050500px;}
.y2ca{bottom:590.212500px;}
.y120{bottom:590.565000px;}
.y2ff{bottom:590.733000px;}
.y283{bottom:591.580500px;}
.y18b{bottom:591.639000px;}
.y1ad{bottom:591.859500px;}
.y168{bottom:592.345500px;}
.y219{bottom:592.405500px;}
.y36d{bottom:592.875000px;}
.y20a{bottom:592.890000px;}
.yc{bottom:594.000000px;}
.y330{bottom:594.474000px;}
.y36{bottom:594.751500px;}
.y262{bottom:595.746000px;}
.y342{bottom:596.712000px;}
.y2c4{bottom:597.328500px;}
.y150{bottom:597.706500px;}
.yf5{bottom:598.449000px;}
.y109{bottom:598.897500px;}
.y359{bottom:599.016000px;}
.y1b8{bottom:599.797500px;}
.y136{bottom:601.071000px;}
.y22{bottom:603.499500px;}
.y2e2{bottom:605.791500px;}
.y2f3{bottom:606.729000px;}
.y37f{bottom:607.500000px;}
.y90{bottom:607.624500px;}
.y9e{bottom:608.277000px;}
.y246{bottom:609.360000px;}
.y275{bottom:609.799500px;}
.yb2{bottom:609.948000px;}
.y1f6{bottom:611.091000px;}
.y223{bottom:611.518500px;}
.y317{bottom:611.698500px;}
.y2b7{bottom:612.079500px;}
.y1c8{bottom:612.409500px;}
.y19b{bottom:613.356000px;}
.y17a{bottom:614.185500px;}
.y29d{bottom:614.983500px;}
.y385{bottom:615.375000px;}
.yd7{bottom:615.547500px;}
.y70{bottom:616.051500px;}
.y2c9{bottom:616.215000px;}
.y11f{bottom:616.567500px;}
.y2fe{bottom:616.735500px;}
.y282{bottom:617.583000px;}
.y18a{bottom:617.641500px;}
.y1ac{bottom:617.862000px;}
.y209{bottom:618.892500px;}
.yb{bottom:619.950000px;}
.y32f{bottom:620.476500px;}
.y35{bottom:620.808000px;}
.y38b{bottom:622.125000px;}
.y57{bottom:622.255500px;}
.y2c3{bottom:623.331000px;}
.y1e2{bottom:623.395500px;}
.y14f{bottom:623.709000px;}
.yf4{bottom:624.450000px;}
.y1b7{bottom:625.800000px;}
.y61{bottom:626.313000px;}
.y108{bottom:628.663500px;}
.y261{bottom:629.473500px;}
.y21{bottom:629.502000px;}
.y36c{bottom:630.000000px;}
.y2e1{bottom:631.794000px;}
.y2f2{bottom:632.731500px;}
.y231{bottom:633.582000px;}
.y245{bottom:635.362500px;}
.y274{bottom:635.802000px;}
.y341{bottom:636.717000px;}
.y167{bottom:636.865500px;}
.y1f5{bottom:637.093500px;}
.y222{bottom:637.521000px;}
.y2b6{bottom:638.082000px;}
.y1c7{bottom:638.412000px;}
.y8f{bottom:639.187500px;}
.yb1{bottom:639.751500px;}
.y358{bottom:639.963000px;}
.y179{bottom:640.188000px;}
.yd6{bottom:641.550000px;}
.y6f{bottom:642.054000px;}
.y2c8{bottom:642.217500px;}
.y384{bottom:642.375000px;}
.y11e{bottom:642.570000px;}
.y2fd{bottom:642.738000px;}
.y14b{bottom:643.006500px;}
.y19a{bottom:643.120500px;}
.y281{bottom:643.585500px;}
.y189{bottom:643.644000px;}
.y1ab{bottom:643.864500px;}
.y29c{bottom:644.748000px;}
.y208{bottom:644.895000px;}
.ya{bottom:645.750000px;}
.y32e{bottom:646.479000px;}
.y34{bottom:646.863000px;}
.y56{bottom:648.258000px;}
.y2c2{bottom:649.333500px;}
.y1e1{bottom:649.398000px;}
.y14e{bottom:649.711500px;}
.yc0{bottom:650.274000px;}
.yf3{bottom:650.452500px;}
.y1b6{bottom:651.802500px;}
.y260{bottom:655.476000px;}
.y37e{bottom:655.875000px;}
.y316{bottom:657.784500px;}
.y2e0{bottom:657.796500px;}
.y218{bottom:658.881000px;}
.y135{bottom:659.268000px;}
.y244{bottom:661.363500px;}
.y273{bottom:661.804500px;}
.y2f1{bottom:662.496000px;}
.y340{bottom:662.719500px;}
.y1f4{bottom:663.096000px;}
.y2b5{bottom:664.084500px;}
.y107{bottom:664.269000px;}
.yb0{bottom:665.754000px;}
.y357{bottom:665.965500px;}
.y178{bottom:666.190500px;}
.y36b{bottom:667.125000px;}
.y60{bottom:667.260000px;}
.yd5{bottom:667.552500px;}
.y11d{bottom:668.572500px;}
.y14a{bottom:669.009000px;}
.y188{bottom:669.646500px;}
.y38a{bottom:670.500000px;}
.y207{bottom:670.897500px;}
.y9{bottom:671.700000px;}
.y32d{bottom:672.481500px;}
.y55{bottom:674.260500px;}
.y2c1{bottom:675.336000px;}
.y1e0{bottom:675.400500px;}
.yf2{bottom:676.455000px;}
.y9d{bottom:676.993500px;}
.y1b5{bottom:677.805000px;}
.y25f{bottom:681.478500px;}
.y20{bottom:681.507000px;}
.y29b{bottom:682.834500px;}
.y199{bottom:683.347500px;}
.y315{bottom:683.787000px;}
.y2df{bottom:683.799000px;}
.y217{bottom:684.883500px;}
.y221{bottom:684.951000px;}
.y134{bottom:685.270500px;}
.y1c6{bottom:685.393500px;}
.y6e{bottom:687.199500px;}
.y2c7{bottom:687.279000px;}
.y243{bottom:687.366000px;}
.y383{bottom:687.375000px;}
.y2fc{bottom:687.538500px;}
.y272{bottom:687.807000px;}
.y280{bottom:687.958500px;}
.y1aa{bottom:688.096500px;}
.y1f3{bottom:689.098500px;}
.y33{bottom:690.513000px;}
.y8e{bottom:691.192500px;}
.yaf{bottom:691.756500px;}
.yd4{bottom:693.555000px;}
.y2b4{bottom:693.849000px;}
.y106{bottom:694.033500px;}
.y11c{bottom:694.575000px;}
.y149{bottom:695.011500px;}
.y187{bottom:695.649000px;}
.y8{bottom:697.500000px;}
.y2f0{bottom:699.681000px;}
.y54{bottom:700.263000px;}
.y2c0{bottom:701.338500px;}
.yf1{bottom:702.457500px;}
.y33f{bottom:702.726000px;}
.y9c{bottom:702.996000px;}
.y1b4{bottom:703.807500px;}
.y36a{bottom:704.250000px;}
.y1df{bottom:705.166500px;}
.y166{bottom:705.643500px;}
.y356{bottom:706.911000px;}
.y1f{bottom:707.509500px;}
.y5f{bottom:708.205500px;}
.y29a{bottom:708.837000px;}
.y314{bottom:709.789500px;}
.y216{bottom:710.886000px;}
.y133{bottom:711.273000px;}
.y198{bottom:713.113500px;}
.y242{bottom:713.368500px;}
.y2de{bottom:713.563500px;}
.y271{bottom:713.809500px;}
.y25e{bottom:715.206000px;}
.y8d{bottom:717.195000px;}
.yae{bottom:717.759000px;}
.y177{bottom:718.285500px;}
.y1f2{bottom:718.864500px;}
.yd3{bottom:719.557500px;}
.y11b{bottom:720.577500px;}
.y186{bottom:721.651500px;}
.y7{bottom:723.450000px;}
.y206{bottom:725.002500px;}
.y2ef{bottom:725.683500px;}
.y32c{bottom:726.415500px;}
.y105{bottom:729.639000px;}
.y165{bottom:731.646000px;}
.y1e{bottom:733.512000px;}
.y2b3{bottom:734.514000px;}
.y299{bottom:734.839500px;}
.y241{bottom:739.371000px;}
.y25d{bottom:741.208500px;}
.y369{bottom:741.375000px;}
.y1de{bottom:743.089500px;}
.y8c{bottom:743.197500px;}
.y53{bottom:743.823000px;}
.yd2{bottom:745.560000px;}
.yf0{bottom:745.852500px;}
.y11a{bottom:746.580000px;}
.y148{bottom:747.016500px;}
.y355{bottom:747.858000px;}
.y205{bottom:751.005000px;}
.y32b{bottom:752.418000px;}
.y14d{bottom:754.624500px;}
.y313{bottom:754.833000px;}
.y2bf{bottom:756.475500px;}
.y2dd{bottom:757.356000px;}
.y164{bottom:757.648500px;}
.y1b3{bottom:759.054000px;}
.y104{bottom:759.403500px;}
.y1d{bottom:759.514500px;}
.y2b2{bottom:760.516500px;}
.y298{bottom:760.842000px;}
.yad{bottom:761.520000px;}
.y240{bottom:765.373500px;}
.y197{bottom:765.705000px;}
.y215{bottom:766.023000px;}
.y25c{bottom:767.211000px;}
.y132{bottom:767.622000px;}
.y270{bottom:768.868500px;}
.y1dd{bottom:769.092000px;}
.y52{bottom:769.825500px;}
.yd1{bottom:771.562500px;}
.y119{bottom:772.582500px;}
.y147{bottom:773.019000px;}
.yef{bottom:775.617000px;}
.y204{bottom:777.007500px;}
.y32a{bottom:778.420500px;}
.y368{bottom:778.500000px;}
.y185{bottom:778.860000px;}
.y2ee{bottom:780.820500px;}
.y1f1{bottom:782.184000px;}
.y2dc{bottom:783.358500px;}
.y163{bottom:783.649500px;}
.y1c{bottom:785.517000px;}
.y2b1{bottom:786.519000px;}
.y297{bottom:786.844500px;}
.y8b{bottom:786.958500px;}
.y354{bottom:788.805000px;}
.y23f{bottom:791.376000px;}
.y25b{bottom:793.213500px;}
.y51{bottom:795.828000px;}
.yd0{bottom:797.565000px;}
.y1dc{bottom:798.858000px;}
.y146{bottom:799.021500px;}
.y203{bottom:803.010000px;}
.y329{bottom:804.423000px;}
.y220{bottom:806.725500px;}
.y1c5{bottom:806.946000px;}
.y103{bottom:807.622500px;}
.y6d{bottom:807.849000px;}
.y2c6{bottom:807.889500px;}
.y2fb{bottom:808.018500px;}
.y9b{bottom:808.167000px;}
.y27f{bottom:808.228500px;}
.y1a9{bottom:808.299000px;}
.y14c{bottom:808.423500px;}
.y33e{bottom:808.530000px;}
.y2db{bottom:809.361000px;}
.y162{bottom:809.652000px;}
.y1b{bottom:811.519500px;}
.y2b0{bottom:812.521500px;}
.y32{bottom:812.968500px;}
.y5e{bottom:813.013500px;}
.y353{bottom:814.806000px;}
.yee{bottom:815.248500px;}
.y366{bottom:815.625000px;}
.y35e{bottom:816.600000px;}
.y23e{bottom:817.378500px;}
.y25a{bottom:819.216000px;}
.y296{bottom:820.771500px;}
.y50{bottom:821.830500px;}
.y31{bottom:821.953500px;}
.ycf{bottom:823.567500px;}
.y145{bottom:825.024000px;}
.y312{bottom:825.201000px;}
.y118{bottom:825.525000px;}
.yac{bottom:826.462500px;}
.y202{bottom:829.012500px;}
.y328{bottom:830.425500px;}
.y2da{bottom:835.363500px;}
.y161{bottom:835.654500px;}
.y1db{bottom:836.781000px;}
.y35d{bottom:837.300000px;}
.y1a{bottom:837.522000px;}
.y2af{bottom:838.524000px;}
.yed{bottom:841.251000px;}
.y6{bottom:842.400000px;}
.y23d{bottom:843.381000px;}
.y295{bottom:846.772500px;}
.y144{bottom:851.026500px;}
.y311{bottom:851.203500px;}
.y117{bottom:851.527500px;}
.yab{bottom:852.465000px;}
.y352{bottom:855.753000px;}
.y327{bottom:856.426500px;}
.y35c{bottom:858.000000px;}
.y365{bottom:858.375000px;}
.y160{bottom:861.657000px;}
.y1da{bottom:862.783500px;}
.y19{bottom:863.524500px;}
.y2ae{bottom:864.526500px;}
.y2d9{bottom:865.128000px;}
.y4f{bottom:865.392000px;}
.y259{bottom:865.530000px;}
.yec{bottom:867.253500px;}
.y23c{bottom:869.383500px;}
.y131{bottom:872.277000px;}
.y294{bottom:872.775000px;}
.yce{bottom:877.020000px;}
.y143{bottom:877.029000px;}
.y201{bottom:877.045500px;}
.y310{bottom:877.206000px;}
.y116{bottom:877.530000px;}
.y8a{bottom:878.467500px;}
.y364{bottom:883.125000px;}
.y5{bottom:886.350000px;}
.y15f{bottom:887.659500px;}
.y1d9{bottom:888.786000px;}
.y18{bottom:889.527000px;}
.y4e{bottom:891.394500px;}
.y258{bottom:891.532500px;}
.y23b{bottom:895.386000px;}
.y351{bottom:896.700000px;}
.yeb{bottom:897.018000px;}
.y2ad{bottom:897.499500px;}
.y130{bottom:898.279500px;}
.y293{bottom:898.777500px;}
.ycd{bottom:903.022500px;}
.y30f{bottom:903.208500px;}
.y115{bottom:903.532500px;}
.y326{bottom:904.110000px;}
.y89{bottom:904.470000px;}
.y2d8{bottom:908.920500px;}
.y4{bottom:912.150000px;}
.y1d8{bottom:914.788500px;}
.y17{bottom:915.529500px;}
.y4d{bottom:917.397000px;}
.y15e{bottom:917.425500px;}
.y257{bottom:921.297000px;}
.y23a{bottom:921.388500px;}
.y363{bottom:922.500000px;}
.y2ac{bottom:923.502000px;}
.y12f{bottom:924.282000px;}
.y292{bottom:924.780000px;}
.ycc{bottom:929.025000px;}
.y142{bottom:929.034000px;}
.y114{bottom:929.535000px;}
.y88{bottom:930.472500px;}
.y35b{bottom:934.050000px;}
.y2d7{bottom:934.923000px;}
.y350{bottom:937.645500px;}
.yea{bottom:940.411500px;}
.y1d7{bottom:940.791000px;}
.y16{bottom:941.532000px;}
.y4c{bottom:943.399500px;}
.y362{bottom:945.000000px;}
.y239{bottom:947.391000px;}
.y2ab{bottom:949.504500px;}
.y12e{bottom:950.284500px;}
.y291{bottom:950.782500px;}
.y141{bottom:955.036500px;}
.y113{bottom:955.537500px;}
.y30e{bottom:955.843500px;}
.y87{bottom:956.475000px;}
.y256{bottom:959.113500px;}
.y2d6{bottom:960.925500px;}
.y34f{bottom:963.648000px;}
.y1d6{bottom:966.793500px;}
.y15{bottom:967.534500px;}
.y361{bottom:970.875000px;}
.y238{bottom:973.393500px;}
.y2aa{bottom:975.507000px;}
.ye9{bottom:980.043000px;}
.y290{bottom:980.548500px;}
.y140{bottom:981.037500px;}
.y30d{bottom:981.846000px;}
.y86{bottom:982.477500px;}
.y255{bottom:985.116000px;}
.y4b{bottom:986.961000px;}
.y2d5{bottom:990.690000px;}
.y1d5{bottom:992.796000px;}
.y14{bottom:993.535500px;}
.y34e{bottom:1004.595000px;}
.ye8{bottom:1006.045500px;}
.y13f{bottom:1007.040000px;}
.y30c{bottom:1007.848500px;}
.yaa{bottom:1008.480000px;}
.y4a{bottom:1012.963500px;}
.y360{bottom:1017.000000px;}
.y28f{bottom:1018.635000px;}
.y254{bottom:1018.906500px;}
.y13{bottom:1019.538000px;}
.y1d4{bottom:1022.560500px;}
.ye7{bottom:1032.048000px;}
.y13e{bottom:1033.042500px;}
.y30b{bottom:1033.851000px;}
.y85{bottom:1034.482500px;}
.y49{bottom:1038.966000px;}
.y37d{bottom:1041.750000px;}
.y12{bottom:1045.540500px;}
.y35f{bottom:1049.625000px;}
.y28e{bottom:1052.562000px;}
.y253{bottom:1052.697000px;}
.y84{bottom:1060.485000px;}
.y48{bottom:1064.968500px;}
.ye6{bottom:1076.803500px;}
.y83{bottom:1086.487500px;}
.y200{bottom:1090.249500px;}
.y47{bottom:1090.971000px;}
.y3{bottom:1137.900000px;}
.y82{bottom:1140.619500px;}
.y2{bottom:1168.200000px;}
.h19{height:36.000000px;}
.ha{height:36.869837px;}
.hd{height:38.744400px;}
.hc{height:38.750400px;}
.he{height:46.145493px;}
.h1a{height:48.515625px;}
.h17{height:49.174805px;}
.h9{height:50.498765px;}
.h12{height:50.695312px;}
.h7{height:53.798400px;}
.hf{height:53.804400px;}
.h15{height:56.403809px;}
.h18{height:57.150879px;}
.h3{height:61.611328px;}
.h5{height:63.175781px;}
.h4{height:68.440430px;}
.h16{height:69.675293px;}
.h10{height:71.930400px;}
.hb{height:72.717850px;}
.h2{height:78.969727px;}
.h14{height:92.900391px;}
.h8{height:104.700710px;}
.h11{height:117.304688px;}
.h13{height:1188.000000px;}
.h1{height:1262.700000px;}
.h6{height:1262.835000px;}
.h0{height:1263.000000px;}
.w5{width:112.500000px;}
.w6{width:326.250000px;}
.w4{width:349.875000px;}
.w0{width:892.500000px;}
.w1{width:892.914000px;}
.w7{width:892.920000px;}
.w2{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x2f{left:7.875000px;}
.x2c{left:85.200000px;}
.xf{left:103.630500px;}
.xe{left:106.299000px;}
.x2d{left:108.000000px;}
.x2e{left:109.125000px;}
.x27{left:115.078500px;}
.x13{left:120.241500px;}
.x10{left:128.664000px;}
.xd{left:132.637500px;}
.x28{left:142.392000px;}
.xc{left:149.100000px;}
.x4{left:150.600000px;}
.x1{left:152.700000px;}
.x20{left:168.564000px;}
.x1e{left:171.081000px;}
.x1f{left:188.826000px;}
.x22{left:197.701500px;}
.x36{left:207.000000px;}
.x3a{left:222.750000px;}
.x38{left:225.000000px;}
.x1b{left:230.655000px;}
.x37{left:236.250000px;}
.x17{left:246.429000px;}
.x16{left:253.020000px;}
.x2{left:259.650000px;}
.x2a{left:261.759000px;}
.x19{left:267.837000px;}
.x1a{left:270.792000px;}
.x1c{left:274.951500px;}
.x21{left:278.133000px;}
.x26{left:280.179000px;}
.x31{left:283.500000px;}
.x34{left:292.500000px;}
.x32{left:301.500000px;}
.x35{left:304.875000px;}
.x33{left:315.000000px;}
.x9{left:322.050000px;}
.x8{left:337.800000px;}
.xa{left:346.050000px;}
.x2b{left:354.450000px;}
.xb{left:360.000000px;}
.x6{left:362.100000px;}
.x18{left:400.270500px;}
.x7{left:406.200000px;}
.x5{left:410.550000px;}
.x3{left:421.500000px;}
.x30{left:460.125000px;}
.x25{left:508.116000px;}
.x24{left:511.432500px;}
.x1d{left:542.992500px;}
.x15{left:564.694500px;}
.x23{left:605.905500px;}
.x29{left:724.317000px;}
.x12{left:769.558500px;}
.x14{left:777.834000px;}
.x11{left:781.194000px;}
.x39{left:814.500000px;}
@media print{
.v1{vertical-align:-13.376000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.117333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000062pt;}
.ls5{letter-spacing:0.149333pt;}
.ls2{letter-spacing:1.402743pt;}
.ls4{letter-spacing:31.212800pt;}
.ls1{letter-spacing:31.880533pt;}
.ls3{letter-spacing:33.876041pt;}
.ws10a{word-spacing:-60.000062pt;}
.ws108{word-spacing:-60.000000pt;}
.ws22{word-spacing:-41.311833pt;}
.ws1e{word-spacing:-34.622259pt;}
.ws0{word-spacing:-20.000000pt;}
.ws89{word-spacing:-17.343010pt;}
.ws100{word-spacing:-15.940267pt;}
.wsd8{word-spacing:-6.694912pt;}
.ws10{word-spacing:-3.443098pt;}
.wsbb{word-spacing:-3.379337pt;}
.ws4e{word-spacing:-3.315575pt;}
.wsac{word-spacing:-3.188053pt;}
.ws5c{word-spacing:-3.124292pt;}
.wsdb{word-spacing:-2.933009pt;}
.ws5e{word-spacing:-2.869248pt;}
.wse2{word-spacing:-2.805487pt;}
.wsc8{word-spacing:-2.741726pt;}
.wsf3{word-spacing:-2.677965pt;}
.wsd1{word-spacing:-2.486682pt;}
.wsed{word-spacing:-2.422921pt;}
.ws1b{word-spacing:-2.231637pt;}
.ws101{word-spacing:-2.167876pt;}
.wsc6{word-spacing:-2.104115pt;}
.wsf7{word-spacing:-2.040354pt;}
.ws6{word-spacing:-1.976593pt;}
.wsa7{word-spacing:-1.912832pt;}
.wsbe{word-spacing:-1.849071pt;}
.ws31{word-spacing:-1.466505pt;}
.ws6a{word-spacing:-1.338982pt;}
.ws7c{word-spacing:-1.275221pt;}
.wsc3{word-spacing:-1.147699pt;}
.wsc7{word-spacing:-1.020177pt;}
.ws83{word-spacing:-0.956416pt;}
.ws34{word-spacing:-0.892655pt;}
.ws38{word-spacing:-0.828894pt;}
.ws4{word-spacing:-0.765133pt;}
.ws3{word-spacing:-0.701372pt;}
.ws44{word-spacing:-0.637611pt;}
.wsd0{word-spacing:-0.573850pt;}
.ws94{word-spacing:-0.510089pt;}
.wscb{word-spacing:-0.446327pt;}
.ws7f{word-spacing:-0.382566pt;}
.ws20{word-spacing:-0.350686pt;}
.ws45{word-spacing:-0.255044pt;}
.ws8{word-spacing:-0.191283pt;}
.wsd3{word-spacing:-0.127522pt;}
.ws21{word-spacing:-0.063761pt;}
.ws109{word-spacing:-0.060062pt;}
.ws107{word-spacing:-0.060000pt;}
.ws1{word-spacing:0.000000pt;}
.ws76{word-spacing:0.063761pt;}
.wsf2{word-spacing:0.127522pt;}
.ws8c{word-spacing:0.191283pt;}
.ws9a{word-spacing:0.255044pt;}
.ws12{word-spacing:0.318805pt;}
.ws68{word-spacing:0.382566pt;}
.ws74{word-spacing:0.446327pt;}
.wscf{word-spacing:0.510089pt;}
.ws63{word-spacing:0.573850pt;}
.wsa1{word-spacing:0.637611pt;}
.wse6{word-spacing:0.701372pt;}
.wsfd{word-spacing:0.765133pt;}
.wsa8{word-spacing:0.828894pt;}
.ws8e{word-spacing:0.892655pt;}
.wsc4{word-spacing:0.956416pt;}
.wsba{word-spacing:1.020177pt;}
.ws81{word-spacing:1.083938pt;}
.ws54{word-spacing:1.147699pt;}
.ws17{word-spacing:1.211460pt;}
.wsa9{word-spacing:1.255880pt;}
.wsd{word-spacing:1.275221pt;}
.ws58{word-spacing:1.338982pt;}
.ws39{word-spacing:1.402743pt;}
.ws7b{word-spacing:1.466505pt;}
.wsa0{word-spacing:1.530266pt;}
.ws9{word-spacing:1.594027pt;}
.ws37{word-spacing:1.657788pt;}
.ws8a{word-spacing:1.721549pt;}
.ws99{word-spacing:1.785310pt;}
.ws8b{word-spacing:1.849071pt;}
.ws47{word-spacing:1.912832pt;}
.ws49{word-spacing:1.976593pt;}
.wsc5{word-spacing:2.040354pt;}
.ws8f{word-spacing:2.104115pt;}
.wsd4{word-spacing:2.167876pt;}
.wsc1{word-spacing:2.231637pt;}
.ws5{word-spacing:2.295398pt;}
.ws4f{word-spacing:2.359159pt;}
.wsb7{word-spacing:2.422921pt;}
.wsf9{word-spacing:2.486682pt;}
.ws93{word-spacing:2.550443pt;}
.ws5a{word-spacing:2.614204pt;}
.ws11{word-spacing:2.677965pt;}
.ws41{word-spacing:2.741726pt;}
.ws14{word-spacing:2.805487pt;}
.ws59{word-spacing:2.869248pt;}
.ws42{word-spacing:2.933009pt;}
.ws43{word-spacing:2.996770pt;}
.ws6b{word-spacing:3.060531pt;}
.ws91{word-spacing:3.124292pt;}
.ws72{word-spacing:3.188053pt;}
.ws65{word-spacing:3.211639pt;}
.ws67{word-spacing:3.251814pt;}
.ws50{word-spacing:3.315575pt;}
.ws85{word-spacing:3.379337pt;}
.wsf{word-spacing:3.443098pt;}
.ws106{word-spacing:3.455754pt;}
.ws105{word-spacing:3.487993pt;}
.ws24{word-spacing:3.506859pt;}
.ws6e{word-spacing:3.570620pt;}
.ws92{word-spacing:3.634381pt;}
.ws51{word-spacing:3.698142pt;}
.ws40{word-spacing:3.761903pt;}
.ws75{word-spacing:3.825664pt;}
.ws18{word-spacing:3.889425pt;}
.wsd7{word-spacing:3.953186pt;}
.ws1c{word-spacing:3.985067pt;}
.wse3{word-spacing:4.016947pt;}
.wsc0{word-spacing:4.080708pt;}
.ws66{word-spacing:4.144469pt;}
.wsc{word-spacing:4.208230pt;}
.ws97{word-spacing:4.271991pt;}
.wsb8{word-spacing:4.335753pt;}
.ws3c{word-spacing:4.399514pt;}
.wsb0{word-spacing:4.463275pt;}
.wsaf{word-spacing:4.527036pt;}
.wsa5{word-spacing:4.590797pt;}
.ws9e{word-spacing:4.718319pt;}
.ws52{word-spacing:4.782080pt;}
.ws8d{word-spacing:4.845841pt;}
.wsd6{word-spacing:4.909602pt;}
.ws9f{word-spacing:4.973363pt;}
.ws35{word-spacing:5.037124pt;}
.ws96{word-spacing:5.100885pt;}
.wsbc{word-spacing:5.164646pt;}
.ws4c{word-spacing:5.228407pt;}
.ws70{word-spacing:5.292169pt;}
.ws55{word-spacing:5.355930pt;}
.ws46{word-spacing:5.419691pt;}
.ws36{word-spacing:5.483452pt;}
.ws9c{word-spacing:5.547213pt;}
.ws9d{word-spacing:5.610974pt;}
.ws86{word-spacing:5.674735pt;}
.ws4d{word-spacing:5.738467pt;}
.ws60{word-spacing:5.738496pt;}
.ws56{word-spacing:5.802257pt;}
.ws2{word-spacing:5.866018pt;}
.ws78{word-spacing:5.929779pt;}
.wsb{word-spacing:5.993540pt;}
.ws7{word-spacing:6.057301pt;}
.ws5f{word-spacing:6.121062pt;}
.ws57{word-spacing:6.184823pt;}
.ws84{word-spacing:6.248585pt;}
.ws69{word-spacing:6.312346pt;}
.wsae{word-spacing:6.376107pt;}
.wse{word-spacing:6.439868pt;}
.ws1a{word-spacing:6.503629pt;}
.ws5d{word-spacing:6.567390pt;}
.ws48{word-spacing:6.631151pt;}
.ws4b{word-spacing:6.694912pt;}
.ws3a{word-spacing:6.758673pt;}
.wsda{word-spacing:6.822434pt;}
.wsde{word-spacing:6.886195pt;}
.ws82{word-spacing:6.949956pt;}
.ws4a{word-spacing:7.013717pt;}
.ws88{word-spacing:7.077478pt;}
.wsb1{word-spacing:7.141239pt;}
.ws98{word-spacing:7.205001pt;}
.ws3e{word-spacing:7.268762pt;}
.wsb9{word-spacing:7.332523pt;}
.wsf5{word-spacing:7.396284pt;}
.ws77{word-spacing:7.460045pt;}
.wsb4{word-spacing:7.523806pt;}
.wsa6{word-spacing:7.587567pt;}
.wse9{word-spacing:7.651328pt;}
.ws53{word-spacing:7.715089pt;}
.wsb5{word-spacing:7.778850pt;}
.wscc{word-spacing:7.842611pt;}
.ws19{word-spacing:7.906372pt;}
.ws3f{word-spacing:7.970133pt;}
.ws7e{word-spacing:8.033894pt;}
.ws3d{word-spacing:8.097655pt;}
.ws6f{word-spacing:8.161417pt;}
.wsf4{word-spacing:8.225178pt;}
.ws32{word-spacing:8.262367pt;}
.wsad{word-spacing:8.288939pt;}
.wsc2{word-spacing:8.416461pt;}
.wsce{word-spacing:8.480222pt;}
.ws9b{word-spacing:8.543983pt;}
.wse1{word-spacing:8.607744pt;}
.wsaa{word-spacing:8.735266pt;}
.ws15{word-spacing:8.799027pt;}
.ws87{word-spacing:8.862788pt;}
.ws62{word-spacing:8.926549pt;}
.wsd5{word-spacing:8.990310pt;}
.wsab{word-spacing:9.054071pt;}
.ws95{word-spacing:9.117833pt;}
.wse0{word-spacing:9.181594pt;}
.ws71{word-spacing:9.245355pt;}
.wsa2{word-spacing:9.309116pt;}
.wsa{word-spacing:9.372877pt;}
.ws73{word-spacing:9.436638pt;}
.wsec{word-spacing:9.500399pt;}
.ws13{word-spacing:9.564160pt;}
.wsdf{word-spacing:9.627921pt;}
.ws7d{word-spacing:9.691682pt;}
.ws6c{word-spacing:9.755443pt;}
.wsfa{word-spacing:9.819204pt;}
.ws6d{word-spacing:9.946726pt;}
.wsbf{word-spacing:10.074249pt;}
.ws79{word-spacing:10.138010pt;}
.ws61{word-spacing:10.201771pt;}
.wsa4{word-spacing:10.265532pt;}
.wsf0{word-spacing:10.393054pt;}
.wsee{word-spacing:10.456815pt;}
.wse8{word-spacing:10.520576pt;}
.ws3b{word-spacing:10.584337pt;}
.wsbd{word-spacing:10.711859pt;}
.wscd{word-spacing:10.775620pt;}
.wsa3{word-spacing:10.903142pt;}
.ws104{word-spacing:10.966903pt;}
.wsdd{word-spacing:11.030665pt;}
.wsd2{word-spacing:11.158187pt;}
.wsb2{word-spacing:11.221948pt;}
.wsf6{word-spacing:11.282886pt;}
.ws90{word-spacing:11.285709pt;}
.ws16{word-spacing:11.349470pt;}
.ws7a{word-spacing:11.540753pt;}
.ws5b{word-spacing:11.604514pt;}
.wseb{word-spacing:11.795797pt;}
.wsb3{word-spacing:11.859558pt;}
.wsf8{word-spacing:11.923319pt;}
.ws80{word-spacing:11.987081pt;}
.wse7{word-spacing:12.114603pt;}
.wsef{word-spacing:12.178364pt;}
.wsdc{word-spacing:12.305886pt;}
.wsf1{word-spacing:12.624691pt;}
.wse4{word-spacing:12.688452pt;}
.wsb6{word-spacing:12.815974pt;}
.wsc9{word-spacing:12.943497pt;}
.wsd9{word-spacing:13.262302pt;}
.wsca{word-spacing:13.453585pt;}
.wsea{word-spacing:13.644868pt;}
.wse5{word-spacing:13.772390pt;}
.ws102{word-spacing:13.899913pt;}
.wsfb{word-spacing:16.067789pt;}
.ws1d{word-spacing:17.948740pt;}
.ws64{word-spacing:22.225473pt;}
.ws103{word-spacing:22.230854pt;}
.wsfe{word-spacing:23.017745pt;}
.wsff{word-spacing:31.816772pt;}
.wsfc{word-spacing:45.079074pt;}
.ws33{word-spacing:74.600067pt;}
.ws29{word-spacing:187.635000pt;}
.ws2a{word-spacing:330.083599pt;}
.ws2c{word-spacing:379.606820pt;}
.ws26{word-spacing:420.713580pt;}
.ws2d{word-spacing:421.969673pt;}
.ws28{word-spacing:425.164102pt;}
.ws25{word-spacing:429.869669pt;}
.ws27{word-spacing:435.990731pt;}
.ws23{word-spacing:437.100174pt;}
.ws30{word-spacing:454.978777pt;}
.ws2f{word-spacing:473.781915pt;}
.ws2e{word-spacing:478.653261pt;}
.ws2b{word-spacing:482.561814pt;}
.ws1f{word-spacing:1969.547469pt;}
._2d{margin-left:-74.295201pt;}
._4c{margin-left:-70.852103pt;}
._1a{margin-left:-64.171332pt;}
._12{margin-left:-62.449783pt;}
._1f{margin-left:-61.401907pt;}
._30{margin-left:-57.902666pt;}
._1c{margin-left:-56.173500pt;}
._36{margin-left:-53.812462pt;}
._31{margin-left:-51.692108pt;}
._3b{margin-left:-48.548431pt;}
._37{margin-left:-40.505867pt;}
._1b{margin-left:-38.766729pt;}
._26{margin-left:-37.108941pt;}
._d{margin-left:-35.833719pt;}
._11{margin-left:-33.602082pt;}
._10{margin-left:-31.880533pt;}
._4{margin-left:-30.832657pt;}
._32{margin-left:-29.581551pt;}
._15{margin-left:-28.437436pt;}
._44{margin-left:-26.869507pt;}
._8{margin-left:-24.292966pt;}
._3e{margin-left:-22.497645pt;}
._2f{margin-left:-16.524733pt;}
._21{margin-left:-15.274957pt;}
._24{margin-left:-13.071019pt;}
._19{margin-left:-11.094426pt;}
._3f{margin-left:-8.630654pt;}
._13{margin-left:-7.587567pt;}
._7{margin-left:-6.487390pt;}
._5{margin-left:-5.292169pt;}
._39{margin-left:-4.399514pt;}
._6{margin-left:-3.443098pt;}
._3{margin-left:-2.546859pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.040000pt;}
._9{width:2.120354pt;}
._2{width:3.443098pt;}
._47{width:4.335753pt;}
._1e{width:5.264469pt;}
._46{width:7.715089pt;}
._3d{width:10.648098pt;}
._38{width:14.916506pt;}
._23{width:16.095488pt;}
._1d{width:18.171904pt;}
._45{width:19.317777pt;}
._3a{width:20.498586pt;}
._a{width:21.675179pt;}
._42{width:22.571418pt;}
._34{width:23.464073pt;}
._c{width:24.794692pt;}
._16{width:26.014515pt;}
._40{width:26.907170pt;}
._b{width:27.796241pt;}
._20{width:29.330091pt;}
._41{width:30.665489pt;}
._43{width:32.135578pt;}
._4a{width:33.572588pt;}
._17{width:37.874074pt;}
._33{width:42.209826pt;}
._3c{width:49.574200pt;}
._4b{width:51.343288pt;}
._48{width:54.773434pt;}
._14{width:58.213854pt;}
._49{width:62.425926pt;}
._35{width:103.292400pt;}
._2e{width:303.233814pt;}
._22{width:1069.846938pt;}
._2a{width:1514.261572pt;}
._29{width:1527.906441pt;}
._2c{width:1576.286046pt;}
._25{width:1657.277645pt;}
._e{width:1710.425639pt;}
._27{width:1746.606899pt;}
._18{width:1782.440619pt;}
._f{width:1891.005892pt;}
._2b{width:1910.345318pt;}
._28{width:1914.617310pt;}
.fs7{font-size:26.566933pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:58.181867pt;}
.fsd{font-size:60.000000pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:64.000000pt;}
.fsb{font-size:68.000000pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:80.000000pt;}
.fsc{font-size:84.000000pt;}
.fs6{font-size:91.815467pt;}
.fsa{font-size:112.000000pt;}
.fs4{font-size:132.197867pt;}
.fs9{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y367{bottom:10.000000pt;}
.y81{bottom:90.502667pt;}
.y46{bottom:94.488000pt;}
.y37c{bottom:109.000000pt;}
.y395{bottom:112.000000pt;}
.y389{bottom:122.000000pt;}
.y37b{bottom:129.000000pt;}
.y80{bottom:130.353333pt;}
.ye5{bottom:133.453333pt;}
.y45{bottom:134.338667pt;}
.y382{bottom:143.000000pt;}
.y394{bottom:145.000000pt;}
.y176{bottom:145.053333pt;}
.y37a{bottom:149.000000pt;}
.y7f{bottom:153.466667pt;}
.y6c{bottom:156.358667pt;}
.ye4{bottom:156.566667pt;}
.y102{bottom:156.812000pt;}
.y44{bottom:157.500000pt;}
.y15d{bottom:160.346667pt;}
.y252{bottom:161.541333pt;}
.y30{bottom:166.632000pt;}
.y379{bottom:169.000000pt;}
.y230{bottom:172.513333pt;}
.y7e{bottom:176.580000pt;}
.y393{bottom:178.000000pt;}
.y33d{bottom:178.294667pt;}
.ye3{bottom:179.680000pt;}
.y175{bottom:179.924000pt;}
.y325{bottom:179.925333pt;}
.y43{bottom:180.660000pt;}
.y15c{bottom:183.460000pt;}
.y378{bottom:185.000000pt;}
.y381{bottom:186.000000pt;}
.y34d{bottom:189.028000pt;}
.y26f{bottom:190.425333pt;}
.y101{bottom:192.038667pt;}
.y1c4{bottom:192.464000pt;}
.y6b{bottom:192.754667pt;}
.y196{bottom:194.236000pt;}
.y251{bottom:196.074667pt;}
.y7d{bottom:199.693333pt;}
.y30a{bottom:200.148000pt;}
.y12d{bottom:200.526667pt;}
.y33c{bottom:201.408000pt;}
.y1f0{bottom:202.792000pt;}
.y42{bottom:203.821333pt;}
.ye2{bottom:206.137333pt;}
.ybf{bottom:206.417333pt;}
.y15b{bottom:206.573333pt;}
.y28d{bottom:210.348000pt;}
.y392{bottom:211.000000pt;}
.y2f{bottom:212.858667pt;}
.y26e{bottom:213.538667pt;}
.y174{bottom:214.636000pt;}
.y324{bottom:215.782667pt;}
.y2d4{bottom:215.821333pt;}
.y377{bottom:218.000000pt;}
.y100{bottom:218.497333pt;}
.y1a8{bottom:220.749333pt;}
.y7c{bottom:222.806667pt;}
.ya9{bottom:223.129333pt;}
.y309{bottom:223.261333pt;}
.y12c{bottom:223.640000pt;}
.y33b{bottom:224.521333pt;}
.y34c{bottom:224.589333pt;}
.y1ef{bottom:225.905333pt;}
.y1d3{bottom:226.814667pt;}
.y380{bottom:229.000000pt;}
.y6a{bottom:229.152000pt;}
.ybe{bottom:229.530667pt;}
.y15a{bottom:229.686667pt;}
.y250{bottom:231.993333pt;}
.y2e{bottom:235.972000pt;}
.y26d{bottom:236.652000pt;}
.y173{bottom:237.749333pt;}
.y323{bottom:238.896000pt;}
.y2d3{bottom:238.934667pt;}
.y22f{bottom:241.494667pt;}
.y41{bottom:242.621333pt;}
.y1a7{bottom:243.862667pt;}
.y391{bottom:244.000000pt;}
.y28c{bottom:244.737333pt;}
.ye1{bottom:245.624000pt;}
.y9a{bottom:245.920000pt;}
.ya8{bottom:246.242667pt;}
.y308{bottom:246.374667pt;}
.y12b{bottom:246.753333pt;}
.y33a{bottom:247.634667pt;}
.y1ee{bottom:249.018667pt;}
.y2ed{bottom:249.264000pt;}
.y376{bottom:251.000000pt;}
.y1c3{bottom:251.853333pt;}
.y184{bottom:251.885333pt;}
.y159{bottom:252.800000pt;}
.y2a8{bottom:252.882667pt;}
.ycb{bottom:253.130667pt;}
.yff{bottom:253.725333pt;}
.ybd{bottom:255.988000pt;}
.y195{bottom:259.000000pt;}
.y2d{bottom:259.085333pt;}
.y26c{bottom:259.765333pt;}
.y34b{bottom:260.150667pt;}
.y2a9{bottom:261.936000pt;}
.y322{bottom:262.009333pt;}
.y2d2{bottom:262.048000pt;}
.y24f{bottom:263.181333pt;}
.y11{bottom:263.733333pt;}
.y172{bottom:264.206667pt;}
.y22e{bottom:264.608000pt;}
.y69{bottom:265.549333pt;}
.y40{bottom:265.781333pt;}
.y1a6{bottom:266.976000pt;}
.y28b{bottom:267.850667pt;}
.y1d2{bottom:268.576000pt;}
.y99{bottom:269.033333pt;}
.ya7{bottom:269.356000pt;}
.y307{bottom:269.488000pt;}
.y7b{bottom:269.637333pt;}
.y12a{bottom:269.866667pt;}
.y339{bottom:270.748000pt;}
.y214{bottom:270.900000pt;}
.ye0{bottom:272.082667pt;}
.y1c2{bottom:274.966667pt;}
.y183{bottom:274.998667pt;}
.y158{bottom:275.913333pt;}
.y2a7{bottom:275.996000pt;}
.yca{bottom:276.244000pt;}
.yfe{bottom:276.838667pt;}
.y1ed{bottom:279.037333pt;}
.y390{bottom:282.000000pt;}
.y194{bottom:282.113333pt;}
.y2c{bottom:282.198667pt;}
.y10{bottom:282.400000pt;}
.y34a{bottom:283.264000pt;}
.y375{bottom:284.000000pt;}
.y27e{bottom:284.818667pt;}
.y321{bottom:285.121333pt;}
.y2d1{bottom:285.161333pt;}
.ybc{bottom:286.404000pt;}
.y22d{bottom:287.721333pt;}
.y2ec{bottom:288.190667pt;}
.y3f{bottom:288.942667pt;}
.y388{bottom:289.000000pt;}
.y1a5{bottom:290.089333pt;}
.y28a{bottom:290.964000pt;}
.y112{bottom:292.146667pt;}
.ya6{bottom:292.469333pt;}
.y7a{bottom:292.750667pt;}
.y129{bottom:292.980000pt;}
.y338{bottom:293.860000pt;}
.y213{bottom:294.013333pt;}
.y24e{bottom:294.370667pt;}
.y1c1{bottom:298.080000pt;}
.y182{bottom:298.112000pt;}
.y171{bottom:298.918667pt;}
.y2a6{bottom:299.109333pt;}
.yc9{bottom:299.357333pt;}
.yfd{bottom:299.950667pt;}
.y98{bottom:300.433333pt;}
.y26b{bottom:300.933333pt;}
.y68{bottom:301.945333pt;}
.y38f{bottom:302.000000pt;}
.y1ec{bottom:302.150667pt;}
.yf{bottom:302.266667pt;}
.y157{bottom:302.370667pt;}
.y2fa{bottom:302.646667pt;}
.y193{bottom:305.226667pt;}
.y2b{bottom:305.312000pt;}
.ybb{bottom:309.517333pt;}
.y22c{bottom:310.834667pt;}
.y2eb{bottom:311.304000pt;}
.ydf{bottom:311.569333pt;}
.y320{bottom:311.580000pt;}
.y2d0{bottom:311.620000pt;}
.y3e{bottom:312.102667pt;}
.y1a4{bottom:313.202667pt;}
.y289{bottom:314.077333pt;}
.y111{bottom:315.260000pt;}
.y79{bottom:315.864000pt;}
.y128{bottom:316.093333pt;}
.y306{bottom:316.168000pt;}
.y374{bottom:317.000000pt;}
.y212{bottom:317.126667pt;}
.y24d{bottom:317.482667pt;}
.y349{bottom:318.825333pt;}
.y1c0{bottom:321.193333pt;}
.y181{bottom:321.225333pt;}
.y38e{bottom:322.000000pt;}
.y170{bottom:322.032000pt;}
.y2a5{bottom:322.222667pt;}
.yc8{bottom:322.470667pt;}
.yfc{bottom:323.064000pt;}
.y26a{bottom:324.046667pt;}
.y1eb{bottom:325.264000pt;}
.y2f9{bottom:325.760000pt;}
.y97{bottom:326.890667pt;}
.y387{bottom:328.000000pt;}
.y2a{bottom:328.425333pt;}
.y2be{bottom:331.045333pt;}
.y192{bottom:331.684000pt;}
.y22b{bottom:333.948000pt;}
.y2ea{bottom:334.417333pt;}
.yde{bottom:334.682667pt;}
.y1ff{bottom:335.173333pt;}
.y3d{bottom:335.264000pt;}
.yba{bottom:335.974667pt;}
.y1a3{bottom:336.316000pt;}
.y1d1{bottom:336.345333pt;}
.y67{bottom:338.342667pt;}
.y237{bottom:338.373333pt;}
.y78{bottom:338.977333pt;}
.ya5{bottom:339.018667pt;}
.y127{bottom:339.206667pt;}
.y305{bottom:339.281333pt;}
.y156{bottom:340.073333pt;}
.y288{bottom:340.534667pt;}
.y24c{bottom:340.596000pt;}
.y1b2{bottom:341.717333pt;}
.y337{bottom:341.801333pt;}
.y13d{bottom:343.876000pt;}
.y27d{bottom:343.889333pt;}
.y1bf{bottom:344.306667pt;}
.y180{bottom:344.338667pt;}
.y16f{bottom:345.145333pt;}
.y2a4{bottom:345.336000pt;}
.yc7{bottom:345.584000pt;}
.y38d{bottom:346.000000pt;}
.y31f{bottom:347.437333pt;}
.y1ea{bottom:348.377333pt;}
.y2f8{bottom:348.873333pt;}
.y386{bottom:349.000000pt;}
.y21f{bottom:349.004000pt;}
.y373{bottom:350.000000pt;}
.y29{bottom:351.538667pt;}
.y2cf{bottom:352.640000pt;}
.y269{bottom:354.026667pt;}
.y348{bottom:354.386667pt;}
.y22a{bottom:357.061333pt;}
.y2e9{bottom:357.530667pt;}
.y96{bottom:358.277333pt;}
.y1fe{bottom:358.286667pt;}
.y1a2{bottom:359.429333pt;}
.y1d0{bottom:359.458667pt;}
.ydd{bottom:361.141333pt;}
.y110{bottom:361.486667pt;}
.y77{bottom:362.090667pt;}
.ya4{bottom:362.132000pt;}
.y126{bottom:362.320000pt;}
.y24b{bottom:363.709333pt;}
.y336{bottom:364.914667pt;}
.y211{bottom:365.220000pt;}
.yb9{bottom:366.390667pt;}
.y13c{bottom:366.989333pt;}
.y27c{bottom:367.002667pt;}
.y1be{bottom:367.420000pt;}
.y5d{bottom:367.612000pt;}
.y16e{bottom:368.258667pt;}
.yc6{bottom:368.697333pt;}
.y191{bottom:369.337333pt;}
.yfb{bottom:369.726667pt;}
.y31e{bottom:370.550667pt;}
.y17f{bottom:370.796000pt;}
.y1e9{bottom:371.490667pt;}
.y21e{bottom:372.117333pt;}
.y3c{bottom:374.064000pt;}
.y28{bottom:374.652000pt;}
.y66{bottom:374.738667pt;}
.y268{bottom:377.140000pt;}
.ye{bottom:377.466667pt;}
.y155{bottom:379.165333pt;}
.y287{bottom:379.442667pt;}
.y1b1{bottom:380.196000pt;}
.y2e8{bottom:380.644000pt;}
.y1fd{bottom:381.400000pt;}
.y1a1{bottom:382.542667pt;}
.y1cf{bottom:382.572000pt;}
.y372{bottom:383.000000pt;}
.y10f{bottom:384.600000pt;}
.y95{bottom:384.736000pt;}
.y76{bottom:385.204000pt;}
.ya3{bottom:385.245333pt;}
.y125{bottom:385.433333pt;}
.y304{bottom:385.962667pt;}
.y38c{bottom:386.000000pt;}
.y335{bottom:388.028000pt;}
.y210{bottom:388.333333pt;}
.yb8{bottom:389.504000pt;}
.y347{bottom:389.948000pt;}
.y13b{bottom:390.102667pt;}
.y27b{bottom:390.116000pt;}
.y2a3{bottom:390.186667pt;}
.y16d{bottom:391.372000pt;}
.yc5{bottom:391.810667pt;}
.y190{bottom:392.450667pt;}
.y2ce{bottom:392.694667pt;}
.yfa{bottom:392.840000pt;}
.y31d{bottom:393.664000pt;}
.y1bd{bottom:393.877333pt;}
.y1e8{bottom:394.604000pt;}
.y2f7{bottom:395.100000pt;}
.y21d{bottom:395.230667pt;}
.y3b{bottom:397.225333pt;}
.y27{bottom:397.765333pt;}
.yd{bottom:401.333333pt;}
.y17e{bottom:402.426667pt;}
.y2e7{bottom:403.757333pt;}
.y1fc{bottom:404.513333pt;}
.y229{bottom:404.892000pt;}
.y2bd{bottom:405.390667pt;}
.y1ce{bottom:405.684000pt;}
.y5c{bottom:406.333333pt;}
.y267{bottom:407.120000pt;}
.ydc{bottom:407.186667pt;}
.y10e{bottom:407.713333pt;}
.ya2{bottom:408.358667pt;}
.y303{bottom:409.076000pt;}
.y65{bottom:411.136000pt;}
.y334{bottom:411.141333pt;}
.y20f{bottom:411.446667pt;}
.yb7{bottom:412.617333pt;}
.y346{bottom:413.061333pt;}
.y13a{bottom:413.216000pt;}
.y27a{bottom:413.229333pt;}
.y1a0{bottom:413.649333pt;}
.y16c{bottom:414.485333pt;}
.yc4{bottom:414.924000pt;}
.y18f{bottom:415.564000pt;}
.yf9{bottom:415.952000pt;}
.y371{bottom:416.000000pt;}
.y1e7{bottom:417.717333pt;}
.y24a{bottom:418.012000pt;}
.y2f6{bottom:418.213333pt;}
.y236{bottom:418.446667pt;}
.y286{bottom:418.885333pt;}
.y94{bottom:419.466667pt;}
.y1b0{bottom:419.513333pt;}
.y3a{bottom:420.385333pt;}
.y26{bottom:420.878667pt;}
.y2a2{bottom:424.041333pt;}
.y31c{bottom:424.821333pt;}
.y2e6{bottom:426.870667pt;}
.y1bc{bottom:427.173333pt;}
.y1fb{bottom:427.626667pt;}
.y228{bottom:428.005333pt;}
.y2bc{bottom:428.504000pt;}
.y1cd{bottom:428.797333pt;}
.y266{bottom:430.233333pt;}
.y10d{bottom:430.825333pt;}
.y75{bottom:432.036000pt;}
.y302{bottom:432.189333pt;}
.y124{bottom:432.493333pt;}
.y333{bottom:434.254667pt;}
.y20e{bottom:434.560000pt;}
.y19f{bottom:436.762667pt;}
.y16b{bottom:437.598667pt;}
.yc3{bottom:438.037333pt;}
.y154{bottom:438.841333pt;}
.yf8{bottom:439.065333pt;}
.yb6{bottom:439.076000pt;}
.y279{bottom:439.686667pt;}
.y249{bottom:441.124000pt;}
.y17d{bottom:441.325333pt;}
.y2f5{bottom:441.326667pt;}
.y21c{bottom:441.457333pt;}
.y235{bottom:441.560000pt;}
.y18e{bottom:442.022667pt;}
.y39{bottom:443.546667pt;}
.y25{bottom:443.990667pt;}
.y5b{bottom:445.054667pt;}
.y2a1{bottom:447.154667pt;}
.y93{bottom:447.522667pt;}
.y64{bottom:447.532000pt;}
.y1e6{bottom:447.734667pt;}
.y31b{bottom:447.934667pt;}
.y345{bottom:448.622667pt;}
.y1bb{bottom:450.286667pt;}
.y1fa{bottom:450.740000pt;}
.y227{bottom:451.118667pt;}
.y2bb{bottom:451.617333pt;}
.y1cc{bottom:451.910667pt;}
.y2e5{bottom:453.328000pt;}
.y265{bottom:453.346667pt;}
.y10c{bottom:453.938667pt;}
.y370{bottom:454.000000pt;}
.ydb{bottom:454.701333pt;}
.ya1{bottom:454.908000pt;}
.y74{bottom:455.149333pt;}
.y2cd{bottom:455.293333pt;}
.y301{bottom:455.302667pt;}
.y123{bottom:455.606667pt;}
.y332{bottom:457.368000pt;}
.y20d{bottom:457.673333pt;}
.y19e{bottom:459.876000pt;}
.y16a{bottom:460.710667pt;}
.yc2{bottom:461.150667pt;}
.y153{bottom:461.954667pt;}
.yf7{bottom:462.178667pt;}
.y248{bottom:464.237333pt;}
.y21b{bottom:464.570667pt;}
.y234{bottom:464.673333pt;}
.y139{bottom:464.945333pt;}
.y38{bottom:466.706667pt;}
.y24{bottom:467.104000pt;}
.y5a{bottom:468.168000pt;}
.yb5{bottom:469.492000pt;}
.y2a0{bottom:470.268000pt;}
.y1e5{bottom:470.848000pt;}
.y31a{bottom:471.048000pt;}
.y344{bottom:471.736000pt;}
.y278{bottom:472.704000pt;}
.y1f9{bottom:473.853333pt;}
.y226{bottom:474.232000pt;}
.y2ba{bottom:474.730667pt;}
.y1cb{bottom:475.024000pt;}
.y36f{bottom:476.000000pt;}
.y1ba{bottom:476.744000pt;}
.y10b{bottom:477.052000pt;}
.yda{bottom:477.813333pt;}
.ya0{bottom:478.021333pt;}
.y73{bottom:478.262667pt;}
.y2cc{bottom:478.406667pt;}
.y300{bottom:478.414667pt;}
.y122{bottom:478.720000pt;}
.y92{bottom:478.922667pt;}
.y285{bottom:479.624000pt;}
.y18d{bottom:479.676000pt;}
.y1af{bottom:479.872000pt;}
.y2f4{bottom:480.225333pt;}
.y20c{bottom:480.786667pt;}
.y264{bottom:483.326667pt;}
.y63{bottom:483.929333pt;}
.y152{bottom:485.068000pt;}
.y19d{bottom:486.334667pt;}
.y169{bottom:487.169333pt;}
.y247{bottom:487.350667pt;}
.y21a{bottom:487.684000pt;}
.y233{bottom:487.786667pt;}
.y138{bottom:488.058667pt;}
.y37{bottom:489.868000pt;}
.y23{bottom:490.217333pt;}
.y59{bottom:491.281333pt;}
.y2e4{bottom:492.254667pt;}
.yb4{bottom:492.605333pt;}
.y1e4{bottom:493.961333pt;}
.y319{bottom:494.161333pt;}
.y277{bottom:495.817333pt;}
.y35a{bottom:496.062667pt;}
.y1f8{bottom:496.966667pt;}
.y225{bottom:497.345333pt;}
.y2b9{bottom:497.844000pt;}
.y1ca{bottom:498.137333pt;}
.y17c{bottom:499.716000pt;}
.y10a{bottom:500.165333pt;}
.y29f{bottom:500.425333pt;}
.yd9{bottom:500.926667pt;}
.y9f{bottom:501.134667pt;}
.y72{bottom:501.376000pt;}
.y2cb{bottom:501.520000pt;}
.y121{bottom:501.833333pt;}
.y284{bottom:502.736000pt;}
.y18c{bottom:502.788000pt;}
.y1ae{bottom:502.985333pt;}
.y20b{bottom:503.900000pt;}
.y331{bottom:505.308000pt;}
.y91{bottom:505.380000pt;}
.y263{bottom:506.440000pt;}
.y343{bottom:507.297333pt;}
.y2c5{bottom:507.845333pt;}
.y151{bottom:508.181333pt;}
.yf6{bottom:508.841333pt;}
.y1b9{bottom:510.040000pt;}
.y36e{bottom:511.000000pt;}
.y137{bottom:511.172000pt;}
.y232{bottom:514.244000pt;}
.y58{bottom:514.394667pt;}
.yc1{bottom:514.588000pt;}
.y2e3{bottom:515.368000pt;}
.yb3{bottom:515.717333pt;}
.y1e3{bottom:517.074667pt;}
.y318{bottom:517.274667pt;}
.y276{bottom:518.930667pt;}
.y1f7{bottom:520.080000pt;}
.y62{bottom:520.326667pt;}
.y224{bottom:520.458667pt;}
.y2b8{bottom:520.957333pt;}
.y1c9{bottom:521.250667pt;}
.y19c{bottom:522.092000pt;}
.y17b{bottom:522.829333pt;}
.y29e{bottom:523.538667pt;}
.yd8{bottom:524.040000pt;}
.y71{bottom:524.489333pt;}
.y2ca{bottom:524.633333pt;}
.y120{bottom:524.946667pt;}
.y2ff{bottom:525.096000pt;}
.y283{bottom:525.849333pt;}
.y18b{bottom:525.901333pt;}
.y1ad{bottom:526.097333pt;}
.y168{bottom:526.529333pt;}
.y219{bottom:526.582667pt;}
.y36d{bottom:527.000000pt;}
.y20a{bottom:527.013333pt;}
.yc{bottom:528.000000pt;}
.y330{bottom:528.421333pt;}
.y36{bottom:528.668000pt;}
.y262{bottom:529.552000pt;}
.y342{bottom:530.410667pt;}
.y2c4{bottom:530.958667pt;}
.y150{bottom:531.294667pt;}
.yf5{bottom:531.954667pt;}
.y109{bottom:532.353333pt;}
.y359{bottom:532.458667pt;}
.y1b8{bottom:533.153333pt;}
.y136{bottom:534.285333pt;}
.y22{bottom:536.444000pt;}
.y2e2{bottom:538.481333pt;}
.y2f3{bottom:539.314667pt;}
.y37f{bottom:540.000000pt;}
.y90{bottom:540.110667pt;}
.y9e{bottom:540.690667pt;}
.y246{bottom:541.653333pt;}
.y275{bottom:542.044000pt;}
.yb2{bottom:542.176000pt;}
.y1f6{bottom:543.192000pt;}
.y223{bottom:543.572000pt;}
.y317{bottom:543.732000pt;}
.y2b7{bottom:544.070667pt;}
.y1c8{bottom:544.364000pt;}
.y19b{bottom:545.205333pt;}
.y17a{bottom:545.942667pt;}
.y29d{bottom:546.652000pt;}
.y385{bottom:547.000000pt;}
.yd7{bottom:547.153333pt;}
.y70{bottom:547.601333pt;}
.y2c9{bottom:547.746667pt;}
.y11f{bottom:548.060000pt;}
.y2fe{bottom:548.209333pt;}
.y282{bottom:548.962667pt;}
.y18a{bottom:549.014667pt;}
.y1ac{bottom:549.210667pt;}
.y209{bottom:550.126667pt;}
.yb{bottom:551.066667pt;}
.y32f{bottom:551.534667pt;}
.y35{bottom:551.829333pt;}
.y38b{bottom:553.000000pt;}
.y57{bottom:553.116000pt;}
.y2c3{bottom:554.072000pt;}
.y1e2{bottom:554.129333pt;}
.y14f{bottom:554.408000pt;}
.yf4{bottom:555.066667pt;}
.y1b7{bottom:556.266667pt;}
.y61{bottom:556.722667pt;}
.y108{bottom:558.812000pt;}
.y261{bottom:559.532000pt;}
.y21{bottom:559.557333pt;}
.y36c{bottom:560.000000pt;}
.y2e1{bottom:561.594667pt;}
.y2f2{bottom:562.428000pt;}
.y231{bottom:563.184000pt;}
.y245{bottom:564.766667pt;}
.y274{bottom:565.157333pt;}
.y341{bottom:565.970667pt;}
.y167{bottom:566.102667pt;}
.y1f5{bottom:566.305333pt;}
.y222{bottom:566.685333pt;}
.y2b6{bottom:567.184000pt;}
.y1c7{bottom:567.477333pt;}
.y8f{bottom:568.166667pt;}
.yb1{bottom:568.668000pt;}
.y358{bottom:568.856000pt;}
.y179{bottom:569.056000pt;}
.yd6{bottom:570.266667pt;}
.y6f{bottom:570.714667pt;}
.y2c8{bottom:570.860000pt;}
.y384{bottom:571.000000pt;}
.y11e{bottom:571.173333pt;}
.y2fd{bottom:571.322667pt;}
.y14b{bottom:571.561333pt;}
.y19a{bottom:571.662667pt;}
.y281{bottom:572.076000pt;}
.y189{bottom:572.128000pt;}
.y1ab{bottom:572.324000pt;}
.y29c{bottom:573.109333pt;}
.y208{bottom:573.240000pt;}
.ya{bottom:574.000000pt;}
.y32e{bottom:574.648000pt;}
.y34{bottom:574.989333pt;}
.y56{bottom:576.229333pt;}
.y2c2{bottom:577.185333pt;}
.y1e1{bottom:577.242667pt;}
.y14e{bottom:577.521333pt;}
.yc0{bottom:578.021333pt;}
.yf3{bottom:578.180000pt;}
.y1b6{bottom:579.380000pt;}
.y260{bottom:582.645333pt;}
.y37e{bottom:583.000000pt;}
.y316{bottom:584.697333pt;}
.y2e0{bottom:584.708000pt;}
.y218{bottom:585.672000pt;}
.y135{bottom:586.016000pt;}
.y244{bottom:587.878667pt;}
.y273{bottom:588.270667pt;}
.y2f1{bottom:588.885333pt;}
.y340{bottom:589.084000pt;}
.y1f4{bottom:589.418667pt;}
.y2b5{bottom:590.297333pt;}
.y107{bottom:590.461333pt;}
.yb0{bottom:591.781333pt;}
.y357{bottom:591.969333pt;}
.y178{bottom:592.169333pt;}
.y36b{bottom:593.000000pt;}
.y60{bottom:593.120000pt;}
.yd5{bottom:593.380000pt;}
.y11d{bottom:594.286667pt;}
.y14a{bottom:594.674667pt;}
.y188{bottom:595.241333pt;}
.y38a{bottom:596.000000pt;}
.y207{bottom:596.353333pt;}
.y9{bottom:597.066667pt;}
.y32d{bottom:597.761333pt;}
.y55{bottom:599.342667pt;}
.y2c1{bottom:600.298667pt;}
.y1e0{bottom:600.356000pt;}
.yf2{bottom:601.293333pt;}
.y9d{bottom:601.772000pt;}
.y1b5{bottom:602.493333pt;}
.y25f{bottom:605.758667pt;}
.y20{bottom:605.784000pt;}
.y29b{bottom:606.964000pt;}
.y199{bottom:607.420000pt;}
.y315{bottom:607.810667pt;}
.y2df{bottom:607.821333pt;}
.y217{bottom:608.785333pt;}
.y221{bottom:608.845333pt;}
.y134{bottom:609.129333pt;}
.y1c6{bottom:609.238667pt;}
.y6e{bottom:610.844000pt;}
.y2c7{bottom:610.914667pt;}
.y243{bottom:610.992000pt;}
.y383{bottom:611.000000pt;}
.y2fc{bottom:611.145333pt;}
.y272{bottom:611.384000pt;}
.y280{bottom:611.518667pt;}
.y1aa{bottom:611.641333pt;}
.y1f3{bottom:612.532000pt;}
.y33{bottom:613.789333pt;}
.y8e{bottom:614.393333pt;}
.yaf{bottom:614.894667pt;}
.yd4{bottom:616.493333pt;}
.y2b4{bottom:616.754667pt;}
.y106{bottom:616.918667pt;}
.y11c{bottom:617.400000pt;}
.y149{bottom:617.788000pt;}
.y187{bottom:618.354667pt;}
.y8{bottom:620.000000pt;}
.y2f0{bottom:621.938667pt;}
.y54{bottom:622.456000pt;}
.y2c0{bottom:623.412000pt;}
.yf1{bottom:624.406667pt;}
.y33f{bottom:624.645333pt;}
.y9c{bottom:624.885333pt;}
.y1b4{bottom:625.606667pt;}
.y36a{bottom:626.000000pt;}
.y1df{bottom:626.814667pt;}
.y166{bottom:627.238667pt;}
.y356{bottom:628.365333pt;}
.y1f{bottom:628.897333pt;}
.y5f{bottom:629.516000pt;}
.y29a{bottom:630.077333pt;}
.y314{bottom:630.924000pt;}
.y216{bottom:631.898667pt;}
.y133{bottom:632.242667pt;}
.y198{bottom:633.878667pt;}
.y242{bottom:634.105333pt;}
.y2de{bottom:634.278667pt;}
.y271{bottom:634.497333pt;}
.y25e{bottom:635.738667pt;}
.y8d{bottom:637.506667pt;}
.yae{bottom:638.008000pt;}
.y177{bottom:638.476000pt;}
.y1f2{bottom:638.990667pt;}
.yd3{bottom:639.606667pt;}
.y11b{bottom:640.513333pt;}
.y186{bottom:641.468000pt;}
.y7{bottom:643.066667pt;}
.y206{bottom:644.446667pt;}
.y2ef{bottom:645.052000pt;}
.y32c{bottom:645.702667pt;}
.y105{bottom:648.568000pt;}
.y165{bottom:650.352000pt;}
.y1e{bottom:652.010667pt;}
.y2b3{bottom:652.901333pt;}
.y299{bottom:653.190667pt;}
.y241{bottom:657.218667pt;}
.y25d{bottom:658.852000pt;}
.y369{bottom:659.000000pt;}
.y1de{bottom:660.524000pt;}
.y8c{bottom:660.620000pt;}
.y53{bottom:661.176000pt;}
.yd2{bottom:662.720000pt;}
.yf0{bottom:662.980000pt;}
.y11a{bottom:663.626667pt;}
.y148{bottom:664.014667pt;}
.y355{bottom:664.762667pt;}
.y205{bottom:667.560000pt;}
.y32b{bottom:668.816000pt;}
.y14d{bottom:670.777333pt;}
.y313{bottom:670.962667pt;}
.y2bf{bottom:672.422667pt;}
.y2dd{bottom:673.205333pt;}
.y164{bottom:673.465333pt;}
.y1b3{bottom:674.714667pt;}
.y104{bottom:675.025333pt;}
.y1d{bottom:675.124000pt;}
.y2b2{bottom:676.014667pt;}
.y298{bottom:676.304000pt;}
.yad{bottom:676.906667pt;}
.y240{bottom:680.332000pt;}
.y197{bottom:680.626667pt;}
.y215{bottom:680.909333pt;}
.y25c{bottom:681.965333pt;}
.y132{bottom:682.330667pt;}
.y270{bottom:683.438667pt;}
.y1dd{bottom:683.637333pt;}
.y52{bottom:684.289333pt;}
.yd1{bottom:685.833333pt;}
.y119{bottom:686.740000pt;}
.y147{bottom:687.128000pt;}
.yef{bottom:689.437333pt;}
.y204{bottom:690.673333pt;}
.y32a{bottom:691.929333pt;}
.y368{bottom:692.000000pt;}
.y185{bottom:692.320000pt;}
.y2ee{bottom:694.062667pt;}
.y1f1{bottom:695.274667pt;}
.y2dc{bottom:696.318667pt;}
.y163{bottom:696.577333pt;}
.y1c{bottom:698.237333pt;}
.y2b1{bottom:699.128000pt;}
.y297{bottom:699.417333pt;}
.y8b{bottom:699.518667pt;}
.y354{bottom:701.160000pt;}
.y23f{bottom:703.445333pt;}
.y25b{bottom:705.078667pt;}
.y51{bottom:707.402667pt;}
.yd0{bottom:708.946667pt;}
.y1dc{bottom:710.096000pt;}
.y146{bottom:710.241333pt;}
.y203{bottom:713.786667pt;}
.y329{bottom:715.042667pt;}
.y220{bottom:717.089333pt;}
.y1c5{bottom:717.285333pt;}
.y103{bottom:717.886667pt;}
.y6d{bottom:718.088000pt;}
.y2c6{bottom:718.124000pt;}
.y2fb{bottom:718.238667pt;}
.y9b{bottom:718.370667pt;}
.y27f{bottom:718.425333pt;}
.y1a9{bottom:718.488000pt;}
.y14c{bottom:718.598667pt;}
.y33e{bottom:718.693333pt;}
.y2db{bottom:719.432000pt;}
.y162{bottom:719.690667pt;}
.y1b{bottom:721.350667pt;}
.y2b0{bottom:722.241333pt;}
.y32{bottom:722.638667pt;}
.y5e{bottom:722.678667pt;}
.y353{bottom:724.272000pt;}
.yee{bottom:724.665333pt;}
.y366{bottom:725.000000pt;}
.y35e{bottom:725.866667pt;}
.y23e{bottom:726.558667pt;}
.y25a{bottom:728.192000pt;}
.y296{bottom:729.574667pt;}
.y50{bottom:730.516000pt;}
.y31{bottom:730.625333pt;}
.ycf{bottom:732.060000pt;}
.y145{bottom:733.354667pt;}
.y312{bottom:733.512000pt;}
.y118{bottom:733.800000pt;}
.yac{bottom:734.633333pt;}
.y202{bottom:736.900000pt;}
.y328{bottom:738.156000pt;}
.y2da{bottom:742.545333pt;}
.y161{bottom:742.804000pt;}
.y1db{bottom:743.805333pt;}
.y35d{bottom:744.266667pt;}
.y1a{bottom:744.464000pt;}
.y2af{bottom:745.354667pt;}
.yed{bottom:747.778667pt;}
.y6{bottom:748.800000pt;}
.y23d{bottom:749.672000pt;}
.y295{bottom:752.686667pt;}
.y144{bottom:756.468000pt;}
.y311{bottom:756.625333pt;}
.y117{bottom:756.913333pt;}
.yab{bottom:757.746667pt;}
.y352{bottom:760.669333pt;}
.y327{bottom:761.268000pt;}
.y35c{bottom:762.666667pt;}
.y365{bottom:763.000000pt;}
.y160{bottom:765.917333pt;}
.y1da{bottom:766.918667pt;}
.y19{bottom:767.577333pt;}
.y2ae{bottom:768.468000pt;}
.y2d9{bottom:769.002667pt;}
.y4f{bottom:769.237333pt;}
.y259{bottom:769.360000pt;}
.yec{bottom:770.892000pt;}
.y23c{bottom:772.785333pt;}
.y131{bottom:775.357333pt;}
.y294{bottom:775.800000pt;}
.yce{bottom:779.573333pt;}
.y143{bottom:779.581333pt;}
.y201{bottom:779.596000pt;}
.y310{bottom:779.738667pt;}
.y116{bottom:780.026667pt;}
.y8a{bottom:780.860000pt;}
.y364{bottom:785.000000pt;}
.y5{bottom:787.866667pt;}
.y15f{bottom:789.030667pt;}
.y1d9{bottom:790.032000pt;}
.y18{bottom:790.690667pt;}
.y4e{bottom:792.350667pt;}
.y258{bottom:792.473333pt;}
.y23b{bottom:795.898667pt;}
.y351{bottom:797.066667pt;}
.yeb{bottom:797.349333pt;}
.y2ad{bottom:797.777333pt;}
.y130{bottom:798.470667pt;}
.y293{bottom:798.913333pt;}
.ycd{bottom:802.686667pt;}
.y30f{bottom:802.852000pt;}
.y115{bottom:803.140000pt;}
.y326{bottom:803.653333pt;}
.y89{bottom:803.973333pt;}
.y2d8{bottom:807.929333pt;}
.y4{bottom:810.800000pt;}
.y1d8{bottom:813.145333pt;}
.y17{bottom:813.804000pt;}
.y4d{bottom:815.464000pt;}
.y15e{bottom:815.489333pt;}
.y257{bottom:818.930667pt;}
.y23a{bottom:819.012000pt;}
.y363{bottom:820.000000pt;}
.y2ac{bottom:820.890667pt;}
.y12f{bottom:821.584000pt;}
.y292{bottom:822.026667pt;}
.ycc{bottom:825.800000pt;}
.y142{bottom:825.808000pt;}
.y114{bottom:826.253333pt;}
.y88{bottom:827.086667pt;}
.y35b{bottom:830.266667pt;}
.y2d7{bottom:831.042667pt;}
.y350{bottom:833.462667pt;}
.yea{bottom:835.921333pt;}
.y1d7{bottom:836.258667pt;}
.y16{bottom:836.917333pt;}
.y4c{bottom:838.577333pt;}
.y362{bottom:840.000000pt;}
.y239{bottom:842.125333pt;}
.y2ab{bottom:844.004000pt;}
.y12e{bottom:844.697333pt;}
.y291{bottom:845.140000pt;}
.y141{bottom:848.921333pt;}
.y113{bottom:849.366667pt;}
.y30e{bottom:849.638667pt;}
.y87{bottom:850.200000pt;}
.y256{bottom:852.545333pt;}
.y2d6{bottom:854.156000pt;}
.y34f{bottom:856.576000pt;}
.y1d6{bottom:859.372000pt;}
.y15{bottom:860.030667pt;}
.y361{bottom:863.000000pt;}
.y238{bottom:865.238667pt;}
.y2aa{bottom:867.117333pt;}
.ye9{bottom:871.149333pt;}
.y290{bottom:871.598667pt;}
.y140{bottom:872.033333pt;}
.y30d{bottom:872.752000pt;}
.y86{bottom:873.313333pt;}
.y255{bottom:875.658667pt;}
.y4b{bottom:877.298667pt;}
.y2d5{bottom:880.613333pt;}
.y1d5{bottom:882.485333pt;}
.y14{bottom:883.142667pt;}
.y34e{bottom:892.973333pt;}
.ye8{bottom:894.262667pt;}
.y13f{bottom:895.146667pt;}
.y30c{bottom:895.865333pt;}
.yaa{bottom:896.426667pt;}
.y4a{bottom:900.412000pt;}
.y360{bottom:904.000000pt;}
.y28f{bottom:905.453333pt;}
.y254{bottom:905.694667pt;}
.y13{bottom:906.256000pt;}
.y1d4{bottom:908.942667pt;}
.ye7{bottom:917.376000pt;}
.y13e{bottom:918.260000pt;}
.y30b{bottom:918.978667pt;}
.y85{bottom:919.540000pt;}
.y49{bottom:923.525333pt;}
.y37d{bottom:926.000000pt;}
.y12{bottom:929.369333pt;}
.y35f{bottom:933.000000pt;}
.y28e{bottom:935.610667pt;}
.y253{bottom:935.730667pt;}
.y84{bottom:942.653333pt;}
.y48{bottom:946.638667pt;}
.ye6{bottom:957.158667pt;}
.y83{bottom:965.766667pt;}
.y200{bottom:969.110667pt;}
.y47{bottom:969.752000pt;}
.y3{bottom:1011.466667pt;}
.y82{bottom:1013.884000pt;}
.y2{bottom:1038.400000pt;}
.h19{height:32.000000pt;}
.ha{height:32.773188pt;}
.hd{height:34.439467pt;}
.hc{height:34.444800pt;}
.he{height:41.018216pt;}
.h1a{height:43.125000pt;}
.h17{height:43.710938pt;}
.h9{height:44.887791pt;}
.h12{height:45.062500pt;}
.h7{height:47.820800pt;}
.hf{height:47.826133pt;}
.h15{height:50.136719pt;}
.h18{height:50.800781pt;}
.h3{height:54.765625pt;}
.h5{height:56.156250pt;}
.h4{height:60.835938pt;}
.h16{height:61.933594pt;}
.h10{height:63.938133pt;}
.hb{height:64.638089pt;}
.h2{height:70.195312pt;}
.h14{height:82.578125pt;}
.h8{height:93.067298pt;}
.h11{height:104.270833pt;}
.h13{height:1056.000000pt;}
.h1{height:1122.400000pt;}
.h6{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w5{width:100.000000pt;}
.w6{width:290.000000pt;}
.w4{width:311.000000pt;}
.w0{width:793.333333pt;}
.w1{width:793.701333pt;}
.w7{width:793.706667pt;}
.w2{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:7.000000pt;}
.x2c{left:75.733333pt;}
.xf{left:92.116000pt;}
.xe{left:94.488000pt;}
.x2d{left:96.000000pt;}
.x2e{left:97.000000pt;}
.x27{left:102.292000pt;}
.x13{left:106.881333pt;}
.x10{left:114.368000pt;}
.xd{left:117.900000pt;}
.x28{left:126.570667pt;}
.xc{left:132.533333pt;}
.x4{left:133.866667pt;}
.x1{left:135.733333pt;}
.x20{left:149.834667pt;}
.x1e{left:152.072000pt;}
.x1f{left:167.845333pt;}
.x22{left:175.734667pt;}
.x36{left:184.000000pt;}
.x3a{left:198.000000pt;}
.x38{left:200.000000pt;}
.x1b{left:205.026667pt;}
.x37{left:210.000000pt;}
.x17{left:219.048000pt;}
.x16{left:224.906667pt;}
.x2{left:230.800000pt;}
.x2a{left:232.674667pt;}
.x19{left:238.077333pt;}
.x1a{left:240.704000pt;}
.x1c{left:244.401333pt;}
.x21{left:247.229333pt;}
.x26{left:249.048000pt;}
.x31{left:252.000000pt;}
.x34{left:260.000000pt;}
.x32{left:268.000000pt;}
.x35{left:271.000000pt;}
.x33{left:280.000000pt;}
.x9{left:286.266667pt;}
.x8{left:300.266667pt;}
.xa{left:307.600000pt;}
.x2b{left:315.066667pt;}
.xb{left:320.000000pt;}
.x6{left:321.866667pt;}
.x18{left:355.796000pt;}
.x7{left:361.066667pt;}
.x5{left:364.933333pt;}
.x3{left:374.666667pt;}
.x30{left:409.000000pt;}
.x25{left:451.658667pt;}
.x24{left:454.606667pt;}
.x1d{left:482.660000pt;}
.x15{left:501.950667pt;}
.x23{left:538.582667pt;}
.x29{left:643.837333pt;}
.x12{left:684.052000pt;}
.x14{left:691.408000pt;}
.x11{left:694.394667pt;}
.x39{left:724.000000pt;}
}




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