
    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_cd5b39d036ff8e96fbd8cc5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2b45fdb0915fe9c75ccba879.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.101000;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_7d18c10d5fe3e92093fc17cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.086000;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_8f8e93a59dd46df8f4716482.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_b74190575e091592358b7e3d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_3d4347040970b67d919d66e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8a2b02df180f9ee81b98e851.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.841000;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_02f64a50eb4bdad50edb7989.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.101000;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_72f391bc2c910abe289fa2ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.086000;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_a6e1ffeb243491bf479b063a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.950000;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_024b9a468651c65c52ece4e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3b7132ebaa31c22c1e19cc3e.woff2')format("woff");}.fff{font-family:fff;line-height:1.075000;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_6ec42b94e8230aa8f24ce5ed.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls6b{letter-spacing:-0.834000px;}
.ls56{letter-spacing:-0.750000px;}
.ls26{letter-spacing:-0.391200px;}
.ls4e{letter-spacing:-0.299400px;}
.ls6c{letter-spacing:-0.284400px;}
.ls4f{letter-spacing:-0.162000px;}
.ls40{letter-spacing:-0.159600px;}
.ls75{letter-spacing:-0.155400px;}
.ls3e{letter-spacing:-0.151200px;}
.ls11{letter-spacing:-0.150000px;}
.ls74{letter-spacing:-0.146400px;}
.ls2f{letter-spacing:-0.139800px;}
.ls51{letter-spacing:-0.124800px;}
.ls63{letter-spacing:-0.123600px;}
.ls50{letter-spacing:-0.116400px;}
.ls4{letter-spacing:-0.115800px;}
.ls77{letter-spacing:-0.112800px;}
.ls2e{letter-spacing:-0.097800px;}
.ls3c{letter-spacing:-0.091800px;}
.ls65{letter-spacing:-0.086400px;}
.ls55{letter-spacing:-0.085800px;}
.ls32{letter-spacing:-0.078600px;}
.ls21{letter-spacing:-0.072000px;}
.ls25{letter-spacing:-0.069600px;}
.ls68{letter-spacing:-0.069000px;}
.ls19{letter-spacing:-0.059400px;}
.ls66{letter-spacing:-0.054720px;}
.ls4b{letter-spacing:-0.053280px;}
.ls47{letter-spacing:-0.040320px;}
.ls23{letter-spacing:-0.033120px;}
.lsb{letter-spacing:-0.030960px;}
.ls72{letter-spacing:-0.027000px;}
.ls2a{letter-spacing:-0.026640px;}
.ls5e{letter-spacing:-0.025920px;}
.ls64{letter-spacing:-0.023040px;}
.lsc{letter-spacing:-0.015480px;}
.ls10{letter-spacing:-0.009360px;}
.ls5{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000720px;}
.ls24{letter-spacing:0.006120px;}
.ls73{letter-spacing:0.012240px;}
.ls13{letter-spacing:0.019440px;}
.ls71{letter-spacing:0.027720px;}
.ls60{letter-spacing:0.028200px;}
.ls4a{letter-spacing:0.029520px;}
.ls5f{letter-spacing:0.040320px;}
.ls78{letter-spacing:0.042480px;}
.ls5a{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.051480px;}
.ls28{letter-spacing:0.058440px;}
.ls1d{letter-spacing:0.060600px;}
.ls6d{letter-spacing:0.060840px;}
.ls14{letter-spacing:0.062400px;}
.ls12{letter-spacing:0.065400px;}
.ls1b{letter-spacing:0.065520px;}
.ls6{letter-spacing:0.066000px;}
.ls5b{letter-spacing:0.074400px;}
.ls16{letter-spacing:0.075600px;}
.ls8{letter-spacing:0.082200px;}
.ls4c{letter-spacing:0.082440px;}
.ls4d{letter-spacing:0.084000px;}
.ls3d{letter-spacing:0.097560px;}
.ls48{letter-spacing:0.097800px;}
.ls62{letter-spacing:0.104520px;}
.ls1f{letter-spacing:0.119400px;}
.ls39{letter-spacing:0.120000px;}
.ls5d{letter-spacing:0.121680px;}
.ls7{letter-spacing:0.121800px;}
.ls42{letter-spacing:0.123600px;}
.ls27{letter-spacing:0.125400px;}
.ls53{letter-spacing:0.125640px;}
.ls1{letter-spacing:0.130800px;}
.ls1a{letter-spacing:0.131040px;}
.ls2b{letter-spacing:0.132000px;}
.ls44{letter-spacing:0.137160px;}
.ls2c{letter-spacing:0.137400px;}
.ls3f{letter-spacing:0.150600px;}
.ls30{letter-spacing:0.155400px;}
.ls61{letter-spacing:0.158760px;}
.ls58{letter-spacing:0.159000px;}
.ls1c{letter-spacing:0.164880px;}
.ls6a{letter-spacing:0.166800px;}
.ls41{letter-spacing:0.168600px;}
.ls29{letter-spacing:0.174000px;}
.ls36{letter-spacing:0.174240px;}
.ls18{letter-spacing:0.177600px;}
.ls35{letter-spacing:0.178800px;}
.ls45{letter-spacing:0.180360px;}
.lsa{letter-spacing:0.180600px;}
.ls6e{letter-spacing:0.213600px;}
.ls2{letter-spacing:0.216720px;}
.ls3b{letter-spacing:0.222120px;}
.ls59{letter-spacing:0.235200px;}
.ls57{letter-spacing:0.258120px;}
.ls49{letter-spacing:0.268200px;}
.ls76{letter-spacing:0.274200px;}
.ls70{letter-spacing:0.274320px;}
.ls5c{letter-spacing:0.281400px;}
.ls46{letter-spacing:0.298440px;}
.ls38{letter-spacing:0.311400px;}
.ls43{letter-spacing:0.319680px;}
.ls6f{letter-spacing:0.324000px;}
.ls31{letter-spacing:0.328800px;}
.ls20{letter-spacing:0.329040px;}
.ls17{letter-spacing:0.344400px;}
.ls52{letter-spacing:0.344520px;}
.ls1e{letter-spacing:0.360000px;}
.ls67{letter-spacing:0.420600px;}
.ls69{letter-spacing:0.425400px;}
.ls37{letter-spacing:0.435600px;}
.ls3a{letter-spacing:0.480000px;}
.lsd{letter-spacing:2.864520px;}
.ls9{letter-spacing:4.304520px;}
.ls3{letter-spacing:7.707360px;}
.ls2d{letter-spacing:30.510000px;}
.ls15{letter-spacing:35.910000px;}
.ls54{letter-spacing:36.030000px;}
.lse{letter-spacing:55.064520px;}
.ls33{letter-spacing:2099.744520px;}
.ls34{letter-spacing:2746.505520px;}
.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;}
}
.ws32{word-spacing:-55.485120px;}
.ws30{word-spacing:-55.316520px;}
.ws31{word-spacing:-55.156920px;}
.ws4b{word-spacing:-18.898320px;}
.ws43{word-spacing:-18.771840px;}
.wsd{word-spacing:-18.731520px;}
.ws47{word-spacing:-18.708480px;}
.ws49{word-spacing:-18.676800px;}
.ws48{word-spacing:-18.645120px;}
.ws1d{word-spacing:-18.633720px;}
.ws44{word-spacing:-18.607920px;}
.wse{word-spacing:-18.581520px;}
.ws26{word-spacing:-15.850080px;}
.ws25{word-spacing:-15.593280px;}
.ws11{word-spacing:-15.592080px;}
.ws2b{word-spacing:-15.588480px;}
.ws1f{word-spacing:-15.569880px;}
.ws2e{word-spacing:-15.565080px;}
.ws20{word-spacing:-15.546480px;}
.ws1{word-spacing:-15.545280px;}
.ws12{word-spacing:-15.490080px;}
.ws3e{word-spacing:-15.488880px;}
.ws5{word-spacing:-15.480480px;}
.ws10{word-spacing:-15.476880px;}
.ws13{word-spacing:-15.433920px;}
.ws4{word-spacing:-15.414480px;}
.ws3{word-spacing:-15.410160px;}
.ws2c{word-spacing:-15.387840px;}
.ws4a{word-spacing:-15.345480px;}
.ws17{word-spacing:-15.344880px;}
.ws2{word-spacing:-15.298680px;}
.ws1e{word-spacing:-15.274680px;}
.ws45{word-spacing:-15.263280px;}
.ws51{word-spacing:-15.259080px;}
.ws37{word-spacing:-15.252480px;}
.ws4d{word-spacing:-15.130080px;}
.ws46{word-spacing:-15.030000px;}
.ws4c{word-spacing:-14.580480px;}
.ws54{word-spacing:-13.409280px;}
.wsf{word-spacing:-13.366800px;}
.ws21{word-spacing:-13.304280px;}
.ws40{word-spacing:-13.256880px;}
.ws52{word-spacing:-13.249680px;}
.ws3f{word-spacing:-13.210680px;}
.wsb{word-spacing:-13.156080px;}
.ws1c{word-spacing:-13.149480px;}
.ws24{word-spacing:-13.112880px;}
.ws1a{word-spacing:-13.100880px;}
.ws9{word-spacing:-13.097280px;}
.ws18{word-spacing:-13.094880px;}
.ws34{word-spacing:-13.073280px;}
.ws7{word-spacing:-13.057680px;}
.ws14{word-spacing:-13.036080px;}
.ws1b{word-spacing:-13.026960px;}
.ws42{word-spacing:-13.020840px;}
.ws50{word-spacing:-12.987720px;}
.ws2f{word-spacing:-12.976200px;}
.ws8{word-spacing:-12.975480px;}
.wsc{word-spacing:-12.966120px;}
.ws35{word-spacing:-12.960000px;}
.ws4f{word-spacing:-12.948480px;}
.wsa{word-spacing:-12.944520px;}
.ws15{word-spacing:-12.942360px;}
.ws33{word-spacing:-12.935160px;}
.ws22{word-spacing:-12.916080px;}
.ws23{word-spacing:-12.896880px;}
.ws3c{word-spacing:-12.889680px;}
.ws3b{word-spacing:-12.883680px;}
.ws3a{word-spacing:-12.850680px;}
.ws2d{word-spacing:-12.824280px;}
.ws36{word-spacing:-12.676080px;}
.ws19{word-spacing:-12.584280px;}
.ws3d{word-spacing:-12.225480px;}
.ws28{word-spacing:-11.563200px;}
.ws27{word-spacing:-11.312400px;}
.ws4e{word-spacing:-11.279520px;}
.ws16{word-spacing:-11.257920px;}
.ws6{word-spacing:-11.251800px;}
.ws38{word-spacing:-11.236320px;}
.ws41{word-spacing:-11.225880px;}
.ws29{word-spacing:-11.220840px;}
.ws39{word-spacing:-11.218680px;}
.ws2a{word-spacing:-11.160000px;}
.ws53{word-spacing:-11.139000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-2.595240px;}
._1{margin-left:-1.526760px;}
._2{width:1.511760px;}
._4{width:29.144520px;}
._5{width:55.033560px;}
._28{width:69.813840px;}
._2b{width:113.001600px;}
._1b{width:143.540640px;}
._21{width:146.661240px;}
._1a{width:149.621400px;}
._20{width:151.880160px;}
._16{width:153.555960px;}
._15{width:157.577880px;}
._24{width:165.286560px;}
._1c{width:169.212720px;}
._26{width:173.474040px;}
._1f{width:174.703800px;}
._2a{width:175.963800px;}
._2c{width:177.551400px;}
._25{width:179.363280px;}
._22{width:182.897760px;}
._1e{width:184.725840px;}
._18{width:186.305880px;}
._1d{width:187.359240px;}
._2d{width:189.979320px;}
._17{width:191.340840px;}
._2f{width:194.206080px;}
._29{width:196.695840px;}
._27{width:201.914760px;}
._19{width:203.638440px;}
._23{width:216.049560px;}
._2e{width:224.489280px;}
._3{width:1430.585520px;}
._13{width:1727.144520px;}
._7{width:1808.144520px;}
._10{width:1906.064520px;}
._c{width:2050.064520px;}
._11{width:2115.224520px;}
._b{width:2170.664520px;}
._d{width:2290.304520px;}
._f{width:2420.624520px;}
._8{width:2521.424520px;}
._12{width:2537.984520px;}
._6{width:2570.024520px;}
._14{width:2627.984520px;}
._e{width:2708.624520px;}
._9{width:2777.465520px;}
._a{width:2892.224520px;}
.fc4{color:rgb(0,46,94);}
.fc5{color:transparent;}
.fc2{color:rgb(179,124,0);}
.fc1{color:rgb(0,71,120);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:47.880000px;}
.fs6{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fse{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:65.880000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:78.120000px;}
.fs7{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:186.120000px;}
.fsd{font-size:204.120000px;}
.y0{bottom:0.000000px;}
.y1c9{bottom:3.600000px;}
.y2b{bottom:3.870000px;}
.y2f{bottom:4.950000px;}
.y29{bottom:5.850000px;}
.y59{bottom:5.940000px;}
.y32{bottom:13.140000px;}
.y13a{bottom:20.430000px;}
.y2d{bottom:23.400000px;}
.y89{bottom:23.760000px;}
.y25{bottom:24.750000px;}
.ya7{bottom:25.110000px;}
.y34{bottom:29.700000px;}
.y112{bottom:31.140000px;}
.y15d{bottom:31.170000px;}
.y6{bottom:35.925007px;}
.y31{bottom:64.170000px;}
.y5{bottom:66.525004px;}
.y38{bottom:70.380000px;}
.ya6{bottom:82.710000px;}
.y15c{bottom:89.670000px;}
.y37{bottom:89.910000px;}
.y4{bottom:97.125005px;}
.ya5{bottom:97.740000px;}
.ya4{bottom:112.680000px;}
.y2c{bottom:122.850000px;}
.y86{bottom:134.370000px;}
.y23{bottom:139.264499px;}
.y85{bottom:150.840000px;}
.y1c1{bottom:154.440000px;}
.y2a{bottom:161.910000px;}
.y84{bottom:167.400000px;}
.y1c8{bottom:170.010000px;}
.y10a{bottom:173.610000px;}
.yd6{bottom:181.530000px;}
.y109{bottom:191.610000px;}
.y1a{bottom:196.933500px;}
.y83{bottom:200.340000px;}
.yd5{bottom:201.060000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y108{bottom:209.610000px;}
.y191{bottom:209.880000px;}
.y82{bottom:216.900000px;}
.y3a{bottom:218.280000px;}
.yd4{bottom:220.620000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y57{bottom:222.420000px;}
.y107{bottom:227.640000px;}
.y133{bottom:227.910000px;}
.y81{bottom:233.370000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y190{bottom:239.880000px;}
.yd3{bottom:240.060000px;}
.y106{bottom:245.640000px;}
.y80{bottom:249.840000px;}
.y18f{bottom:259.410000px;}
.yd2{bottom:259.590000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y131{bottom:261.570000px;}
.y105{bottom:263.640000px;}
.y7f{bottom:266.400000px;}
.y132{bottom:268.320000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y18e{bottom:278.850000px;}
.yd1{bottom:279.120000px;}
.y64{bottom:280.650000px;}
.y130{bottom:281.100000px;}
.y104{bottom:281.640000px;}
.y17a{bottom:281.910000px;}
.y7e{bottom:282.870000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y18d{bottom:298.380000px;}
.yd0{bottom:298.560000px;}
.y103{bottom:299.640000px;}
.y196{bottom:299.910000px;}
.y12f{bottom:300.630000px;}
.y27{bottom:307.470000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y7d{bottom:315.900000px;}
.y102{bottom:317.640000px;}
.y16e{bottom:317.910000px;}
.ycf{bottom:318.090000px;}
.y12e{bottom:320.070000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y7c{bottom:332.370000px;}
.y101{bottom:335.640000px;}
.y110{bottom:335.910000px;}
.y18c{bottom:337.350000px;}
.y16d{bottom:337.440000px;}
.yce{bottom:337.620000px;}
.y12d{bottom:339.600000px;}
.y11{bottom:348.133500px;}
.y7b{bottom:348.840000px;}
.y100{bottom:353.640000px;}
.y13e{bottom:353.910000px;}
.y179{bottom:356.880000px;}
.y16b{bottom:356.970000px;}
.ycd{bottom:357.060000px;}
.y12c{bottom:359.130000px;}
.y19b{bottom:363.630000px;}
.y16c{bottom:363.720000px;}
.y17f{bottom:363.810000px;}
.y7a{bottom:365.430000px;}
.yff{bottom:371.640000px;}
.y146{bottom:371.910000px;}
.y10f{bottom:376.410000px;}
.ycc{bottom:376.590000px;}
.y12b{bottom:378.570000px;}
.y79{bottom:381.900000px;}
.y134{bottom:385.320000px;}
.y10{bottom:386.785499px;}
.y122{bottom:389.640000px;}
.yfe{bottom:389.910000px;}
.y10e{bottom:395.850000px;}
.y16a{bottom:395.940000px;}
.ycb{bottom:396.120000px;}
.y12a{bottom:398.100000px;}
.y78{bottom:398.370000px;}
.y19a{bottom:402.600000px;}
.y198{bottom:402.870000px;}
.y121{bottom:407.640000px;}
.y157{bottom:407.910000px;}
.yf{bottom:408.044999px;}
.yfd{bottom:415.380000px;}
.y168{bottom:415.470000px;}
.yca{bottom:415.560000px;}
.y55{bottom:415.650000px;}
.y129{bottom:417.630000px;}
.y10d{bottom:422.130000px;}
.y169{bottom:422.220000px;}
.y13d{bottom:422.310000px;}
.y120{bottom:425.640000px;}
.y181{bottom:425.910000px;}
.y77{bottom:431.400000px;}
.yfc{bottom:434.910000px;}
.yc9{bottom:435.090000px;}
.y54{bottom:435.180000px;}
.y128{bottom:437.070000px;}
.y13c{bottom:441.840000px;}
.y11f{bottom:443.640000px;}
.y18a{bottom:443.910000px;}
.y76{bottom:447.870000px;}
.yfa{bottom:454.350000px;}
.y167{bottom:454.440000px;}
.yc8{bottom:454.620000px;}
.y53{bottom:454.710000px;}
.y127{bottom:456.600000px;}
.yfb{bottom:461.100000px;}
.y180{bottom:461.370000px;}
.y11e{bottom:461.640000px;}
.y126{bottom:461.910000px;}
.y75{bottom:464.430000px;}
.yf9{bottom:473.880000px;}
.y166{bottom:473.970000px;}
.yc7{bottom:474.060000px;}
.y52{bottom:474.150000px;}
.y173{bottom:475.350000px;}
.y11d{bottom:479.640000px;}
.y142{bottom:479.910000px;}
.y156{bottom:480.630000px;}
.y16f{bottom:480.720000px;}
.y17e{bottom:480.810000px;}
.y74{bottom:480.900000px;}
.yf8{bottom:493.410000px;}
.yc6{bottom:493.590000px;}
.y51{bottom:493.680000px;}
.y73{bottom:497.370000px;}
.y172{bottom:497.490000px;}
.y11c{bottom:497.640000px;}
.y162{bottom:497.910000px;}
.y15a{bottom:500.160000px;}
.y189{bottom:500.340000px;}
.ye{bottom:502.864502px;}
.y135{bottom:504.570000px;}
.yf7{bottom:512.850000px;}
.y165{bottom:512.940000px;}
.yc5{bottom:513.120000px;}
.y50{bottom:513.210000px;}
.y72{bottom:513.930000px;}
.y11b{bottom:515.640000px;}
.y161{bottom:515.910000px;}
.y125{bottom:519.870000px;}
.yd{bottom:520.864502px;}
.y1c0{bottom:525.990000px;}
.y71{bottom:530.400000px;}
.yf5{bottom:532.380000px;}
.y164{bottom:532.470000px;}
.yc4{bottom:532.560000px;}
.y4f{bottom:532.650000px;}
.y11a{bottom:533.640000px;}
.y183{bottom:533.910000px;}
.y171{bottom:537.270000px;}
.yc{bottom:538.864499px;}
.yf6{bottom:539.130000px;}
.y141{bottom:539.310000px;}
.y1bf{bottom:542.460000px;}
.y70{bottom:546.870000px;}
.y119{bottom:551.640000px;}
.yf4{bottom:551.910000px;}
.yc3{bottom:552.090000px;}
.y4e{bottom:552.180000px;}
.yb{bottom:556.864499px;}
.y178{bottom:558.660000px;}
.y145{bottom:558.840000px;}
.y1be{bottom:559.020000px;}
.y6f{bottom:563.430000px;}
.y185{bottom:568.560000px;}
.y152{bottom:569.640000px;}
.y118{bottom:569.910000px;}
.yf3{bottom:571.350000px;}
.y163{bottom:571.440000px;}
.yc2{bottom:571.620000px;}
.y4d{bottom:571.710000px;}
.y1bd{bottom:575.490000px;}
.y148{bottom:578.370000px;}
.y6e{bottom:579.900000px;}
.y151{bottom:587.640000px;}
.y184{bottom:588.090000px;}
.y138{bottom:590.190000px;}
.yf2{bottom:590.880000px;}
.yc1{bottom:591.060000px;}
.y4c{bottom:591.150000px;}
.y1bc{bottom:591.960000px;}
.y195{bottom:592.590000px;}
.y6d{bottom:596.370000px;}
.y150{bottom:605.640000px;}
.y186{bottom:605.910000px;}
.y1bb{bottom:608.520000px;}
.yf0{bottom:610.410000px;}
.yc0{bottom:610.590000px;}
.y4b{bottom:610.680000px;}
.y194{bottom:612.120000px;}
.y137{bottom:612.330000px;}
.y6c{bottom:612.930000px;}
.ya0{bottom:613.200000px;}
.yf1{bottom:617.160000px;}
.y188{bottom:617.340000px;}
.y170{bottom:619.410000px;}
.y14f{bottom:623.640000px;}
.y36{bottom:624.360000px;}
.y1ba{bottom:624.990000px;}
.ya{bottom:626.610001px;}
.y6b{bottom:629.400000px;}
.yef{bottom:629.850000px;}
.ybf{bottom:630.120000px;}
.y4a{bottom:630.210000px;}
.y9f{bottom:632.940000px;}
.y10c{bottom:636.630000px;}
.y13b{bottom:636.900000px;}
.y1b9{bottom:641.490000px;}
.y14e{bottom:641.940000px;}
.y35{bottom:644.550000px;}
.y9{bottom:645.510000px;}
.y6a{bottom:645.870000px;}
.yee{bottom:649.410000px;}
.ybe{bottom:649.590000px;}
.y49{bottom:649.680000px;}
.y136{bottom:652.110000px;}
.y147{bottom:656.340000px;}
.y9e{bottom:657.600000px;}
.y1b8{bottom:658.050000px;}
.y33{bottom:660.210000px;}
.y69{bottom:662.430000px;}
.y8{bottom:666.771000px;}
.yed{bottom:668.940000px;}
.ybd{bottom:669.120000px;}
.y48{bottom:669.210000px;}
.y1b7{bottom:674.520000px;}
.y155{bottom:675.690000px;}
.y153{bottom:675.870000px;}
.y68{bottom:678.900000px;}
.y9d{bottom:682.350000px;}
.yec{bottom:688.380000px;}
.ybc{bottom:688.650000px;}
.y47{bottom:688.740000px;}
.y1b6{bottom:690.990000px;}
.y18b{bottom:695.130000px;}
.y117{bottom:695.400000px;}
.y61{bottom:698.730000px;}
.y9c{bottom:698.820000px;}
.y1b5{bottom:707.550000px;}
.yeb{bottom:707.910000px;}
.ybb{bottom:708.090000px;}
.y46{bottom:708.180000px;}
.y67{bottom:711.570000px;}
.y17c{bottom:714.840000px;}
.y9b{bottom:715.380000px;}
.y60{bottom:718.260000px;}
.y30{bottom:719.430000px;}
.y1b4{bottom:724.020000px;}
.y7{bottom:726.298500px;}
.yea{bottom:727.440000px;}
.yba{bottom:727.620000px;}
.y45{bottom:727.710000px;}
.y66{bottom:728.310000px;}
.y9a{bottom:731.850000px;}
.y149{bottom:734.370000px;}
.y5f{bottom:738.870000px;}
.y1c7{bottom:739.050000px;}
.y1b3{bottom:740.490000px;}
.y65{bottom:742.080000px;}
.ye9{bottom:746.880000px;}
.yb9{bottom:747.150000px;}
.y44{bottom:747.240000px;}
.y99{bottom:748.320000px;}
.y3{bottom:752.599495px;}
.y10b{bottom:753.630000px;}
.y187{bottom:753.900000px;}
.y1b2{bottom:757.050000px;}
.y1c6{bottom:758.490000px;}
.ye8{bottom:766.410000px;}
.yb8{bottom:766.590000px;}
.y43{bottom:766.680000px;}
.y98{bottom:773.070000px;}
.y154{bottom:773.160000px;}
.y124{bottom:773.340000px;}
.y1b1{bottom:773.520000px;}
.y1c5{bottom:778.020000px;}
.y5e{bottom:778.560000px;}
.ye7{bottom:785.940000px;}
.yb7{bottom:786.120000px;}
.y42{bottom:786.210000px;}
.y97{bottom:789.630000px;}
.y1b0{bottom:789.990000px;}
.y144{bottom:792.870000px;}
.y1c4{bottom:797.550000px;}
.ye6{bottom:805.380000px;}
.yb6{bottom:805.650000px;}
.y41{bottom:805.740000px;}
.y96{bottom:806.100000px;}
.y1af{bottom:806.550000px;}
.y175{bottom:812.400000px;}
.y1c3{bottom:816.990000px;}
.y95{bottom:822.570000px;}
.y1ae{bottom:823.020000px;}
.y2e{bottom:824.460000px;}
.ye5{bottom:824.910000px;}
.yb5{bottom:825.090000px;}
.y40{bottom:825.180000px;}
.y5d{bottom:829.590000px;}
.y159{bottom:831.660000px;}
.y176{bottom:831.840000px;}
.y1c2{bottom:836.520000px;}
.y94{bottom:839.130000px;}
.y1ad{bottom:839.490000px;}
.ye4{bottom:844.440000px;}
.yb4{bottom:844.620000px;}
.y3f{bottom:844.710000px;}
.y26{bottom:849.210000px;}
.y140{bottom:851.370000px;}
.y93{bottom:855.600000px;}
.y1ac{bottom:856.050000px;}
.ye3{bottom:863.880000px;}
.yb3{bottom:864.150000px;}
.y3e{bottom:864.240000px;}
.y14c{bottom:870.900000px;}
.y1ab{bottom:872.520000px;}
.y5c{bottom:875.310000px;}
.y2{bottom:879.369000px;}
.y92{bottom:880.350000px;}
.ye2{bottom:883.410000px;}
.yb2{bottom:883.590000px;}
.y3d{bottom:883.680000px;}
.y1aa{bottom:888.990000px;}
.y158{bottom:890.160000px;}
.y143{bottom:890.340000px;}
.y91{bottom:896.820000px;}
.y28{bottom:897.180000px;}
.y5b{bottom:898.980000px;}
.ye1{bottom:902.940000px;}
.yb1{bottom:903.120000px;}
.y3c{bottom:903.210000px;}
.y1a9{bottom:905.550000px;}
.y199{bottom:909.690000px;}
.y13f{bottom:909.870000px;}
.y90{bottom:913.380000px;}
.y5a{bottom:918.510000px;}
.y1a8{bottom:922.020000px;}
.ye0{bottom:922.380000px;}
.yb0{bottom:922.650000px;}
.y3b{bottom:922.740000px;}
.y123{bottom:929.400000px;}
.y56{bottom:934.170000px;}
.y8f{bottom:938.130000px;}
.y39{bottom:938.310000px;}
.y1a7{bottom:938.490000px;}
.ydf{bottom:941.910000px;}
.yaf{bottom:942.090000px;}
.y14d{bottom:948.840000px;}
.y8e{bottom:954.600000px;}
.y1a6{bottom:955.050000px;}
.yde{bottom:961.440000px;}
.yae{bottom:961.620000px;}
.y1{bottom:966.726000px;}
.y116{bottom:968.370000px;}
.y8d{bottom:971.070000px;}
.y1a5{bottom:971.520000px;}
.ydd{bottom:980.880000px;}
.yad{bottom:981.150000px;}
.y193{bottom:982.680000px;}
.y58{bottom:984.210000px;}
.y8c{bottom:987.630000px;}
.y115{bottom:987.900000px;}
.y1a4{bottom:987.990000px;}
.ydc{bottom:1000.410000px;}
.ydb{bottom:1000.590000px;}
.y160{bottom:1000.680000px;}
.ya3{bottom:1000.770000px;}
.y8b{bottom:1004.190000px;}
.y1a3{bottom:1004.550000px;}
.y192{bottom:1007.160000px;}
.y174{bottom:1007.340000px;}
.yda{bottom:1020.120000px;}
.ya2{bottom:1020.210000px;}
.y1a2{bottom:1021.020000px;}
.y114{bottom:1026.870000px;}
.y8a{bottom:1028.940000px;}
.y15b{bottom:1035.780000px;}
.y1a1{bottom:1037.490000px;}
.yac{bottom:1039.650000px;}
.y17b{bottom:1046.400000px;}
.y1a0{bottom:1054.080000px;}
.yab{bottom:1059.120000px;}
.y15f{bottom:1059.210000px;}
.y14b{bottom:1065.870000px;}
.y19f{bottom:1070.550000px;}
.yaa{bottom:1078.650000px;}
.y15e{bottom:1085.400000px;}
.y19e{bottom:1087.020000px;}
.y111{bottom:1094.310000px;}
.yd9{bottom:1098.180000px;}
.y19d{bottom:1103.580000px;}
.y113{bottom:1104.930000px;}
.y88{bottom:1108.890000px;}
.yd8{bottom:1117.620000px;}
.y17d{bottom:1117.710000px;}
.y19c{bottom:1120.050000px;}
.y63{bottom:1123.650000px;}
.y14a{bottom:1124.370000px;}
.yd7{bottom:1137.150000px;}
.y182{bottom:1137.240000px;}
.ya9{bottom:1138.680000px;}
.y197{bottom:1143.900000px;}
.ya1{bottom:1152.810000px;}
.ya8{bottom:1155.960000px;}
.y87{bottom:1156.680000px;}
.y62{bottom:1159.020000px;}
.y177{bottom:1163.430000px;}
.y139{bottom:1202.940000px;}
.y24{bottom:1222.920000px;}
.he{height:19.440000px;}
.h17{height:19.530000px;}
.h11{height:24.750000px;}
.h23{height:31.248000px;}
.h7{height:32.130000px;}
.hc{height:33.930000px;}
.h1b{height:34.020000px;}
.h1d{height:34.473600px;}
.h2a{height:36.990000px;}
.h10{height:39.060000px;}
.h2d{height:40.027680px;}
.h24{height:41.033160px;}
.h9{height:41.559840px;}
.h1e{height:43.920000px;}
.h22{height:45.423000px;}
.h6{height:45.900000px;}
.h25{height:46.991602px;}
.h21{height:47.551680px;}
.h2c{height:47.763105px;}
.h3{height:48.195000px;}
.hf{height:48.746160px;}
.ha{height:49.371840px;}
.h28{height:52.184160px;}
.h34{height:53.991000px;}
.h2{height:55.080000px;}
.h32{height:57.183840px;}
.h2e{height:58.248000px;}
.h19{height:58.463677px;}
.h33{height:59.004492px;}
.h15{height:59.220000px;}
.h1f{height:59.235840px;}
.h31{height:62.496000px;}
.h12{height:65.308320px;}
.h20{height:65.526152px;}
.h16{height:67.808160px;}
.h2b{height:70.664062px;}
.h26{height:77.940000px;}
.h5{height:78.030000px;}
.hd{height:82.374840px;}
.h13{height:105.030000px;}
.h4{height:119.055004px;}
.h2f{height:136.470000px;}
.h14{height:161.552160px;}
.h27{height:177.176160px;}
.h18{height:233.940000px;}
.h1a{height:238.080000px;}
.hb{height:323.040000px;}
.h30{height:552.840000px;}
.h29{height:667.680000px;}
.h35{height:701.790000px;}
.h1c{height:760.710000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:165.810000px;}
.w6{width:222.960000px;}
.w7{width:340.260000px;}
.wd{width:343.650000px;}
.we{width:343.770000px;}
.w14{width:344.490000px;}
.wa{width:446.640000px;}
.w11{width:472.830000px;}
.w13{width:472.920000px;}
.w2{width:637.794021px;}
.w8{width:705.150000px;}
.w9{width:705.870000px;}
.wb{width:727.290000px;}
.w5{width:727.380000px;}
.w10{width:765.540000px;}
.w12{width:765.570000px;}
.w0{width:892.912500px;}
.wf{width:892.979973px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:10.710000px;}
.xe{left:17.010000px;}
.xc{left:25.650000px;}
.x18{left:34.020000px;}
.x16{left:39.090000px;}
.xa{left:47.610000px;}
.x6{left:65.880000px;}
.x5{left:76.589987px;}
.xd{left:78.690000px;}
.x8{left:88.590000px;}
.x1c{left:93.599987px;}
.x6a{left:97.649973px;}
.x14{left:99.900000px;}
.x1{left:102.045000px;}
.xe3{left:103.049987px;}
.xd0{left:104.129973px;}
.x2{left:106.297500px;}
.x6b{left:107.369987px;}
.x13{left:110.519987px;}
.xc4{left:113.039987px;}
.x1d{left:115.379987px;}
.xf3{left:117.089973px;}
.xd1{left:118.709987px;}
.x10b{left:120.419987px;}
.xb{left:126.210000px;}
.x15{left:127.559987px;}
.x126{left:129.359973px;}
.xe2{left:130.439987px;}
.xf4{left:131.699987px;}
.x2f{left:134.039987px;}
.xf{left:136.020000px;}
.x68{left:138.809973px;}
.x30{left:140.519987px;}
.x127{left:143.939987px;}
.xa1{left:146.459987px;}
.x69{left:148.529987px;}
.xcb{left:150.329987px;}
.x3f{left:151.769987px;}
.x101{left:153.929987px;}
.xe1{left:155.999987px;}
.xb2{left:157.079973px;}
.x7b{left:160.679973px;}
.xb8{left:164.639973px;}
.x92{left:166.259973px;}
.xd2{left:169.229973px;}
.x7c{left:170.399987px;}
.x3e{left:171.929987px;}
.x11a{left:175.439987px;}
.x40{left:176.609987px;}
.xa0{left:180.119987px;}
.x43{left:182.099973px;}
.x6c{left:183.269973px;}
.xab{left:184.349973px;}
.xfa{left:190.199973px;}
.x44{left:191.819987px;}
.x6d{left:192.989987px;}
.xac{left:194.069987px;}
.x56{left:202.169973px;}
.x4{left:203.484001px;}
.xfb{left:204.779987px;}
.xf0{left:206.309973px;}
.x57{left:211.889987px;}
.x5f{left:217.739973px;}
.xf1{left:220.889987px;}
.x8a{left:225.749973px;}
.x60{left:227.459987px;}
.xe8{left:228.809973px;}
.x80{left:230.879973px;}
.x8b{left:235.469987px;}
.x9c{left:236.729973px;}
.x109{left:238.259973px;}
.x81{left:240.599987px;}
.x45{left:241.859973px;}
.xe9{left:243.389987px;}
.x91{left:245.909987px;}
.x12{left:247.890000px;}
.xbf{left:250.499973px;}
.x46{left:251.579987px;}
.x10a{left:252.839987px;}
.xf8{left:254.369987px;}
.x61{left:256.979987px;}
.x7d{left:258.149973px;}
.x70{left:260.759987px;}
.xd9{left:262.199973px;}
.xc0{left:265.079987px;}
.x7e{left:267.869987px;}
.x93{left:269.129973px;}
.x2b{left:270.569973px;}
.x2c{left:275.429987px;}
.xda{left:276.779987px;}
.x94{left:278.849987px;}
.x7a{left:285.149987px;}
.x11{left:287.220000px;}
.x6e{left:290.549973px;}
.xb7{left:292.169973px;}
.x3d{left:295.500000px;}
.x52{left:297.479973px;}
.x6f{left:300.269987px;}
.x128{left:301.529987px;}
.xf2{left:303.059973px;}
.xaf{left:304.319987px;}
.xc2{left:306.029973px;}
.x53{left:307.199987px;}
.x82{left:308.729973px;}
.xf9{left:310.709987px;}
.x120{left:311.969973px;}
.xbc{left:315.299987px;}
.x83{left:318.449987px;}
.xc3{left:320.609987px;}
.xf7{left:321.689973px;}
.x117{left:322.949973px;}
.x121{left:326.549987px;}
.x122{left:331.589973px;}
.xb9{left:335.279973px;}
.x118{left:337.529987px;}
.x111{left:339.959973px;}
.xc1{left:344.909973px;}
.x123{left:346.169987px;}
.x29{left:349.049973px;}
.x10e{left:350.129987px;}
.x11c{left:351.389987px;}
.x2a{left:353.909987px;}
.xad{left:355.709973px;}
.xb0{left:357.149973px;}
.xba{left:360.029973px;}
.x11b{left:364.169973px;}
.xae{left:365.459987px;}
.xb1{left:366.899987px;}
.x54{left:369.329973px;}
.x41{left:370.769973px;}
.x1a{left:372.119973px;}
.xbb{left:374.639987px;}
.x1b{left:376.979987px;}
.x55{left:379.049987px;}
.x42{left:380.489987px;}
.x47{left:382.919973px;}
.x102{left:384.089973px;}
.x27{left:385.799973px;}
.x10c{left:387.239973px;}
.x28{left:390.659987px;}
.x48{left:392.639987px;}
.x1e{left:395.429973px;}
.x2d{left:398.579973px;}
.x1f{left:400.289987px;}
.x7f{left:401.819987px;}
.x103{left:404.969973px;}
.xc9{left:407.129973px;}
.x2e{left:408.299987px;}
.xa2{left:410.279973px;}
.x95{left:411.719987px;}
.xcc{left:413.879987px;}
.x88{left:416.309973px;}
.x84{left:417.749987px;}
.x116{left:418.919987px;}
.xa3{left:419.999987px;}
.xca{left:421.709987px;}
.x89{left:426.029987px;}
.x10f{left:436.739973px;}
.x17{left:438.090000px;}
.x10{left:445.830000px;}
.x110{left:451.319987px;}
.x3{left:454.959000px;}
.xe5{left:456.899973px;}
.xc5{left:458.969987px;}
.x26{left:461.579987px;}
.xf5{left:465.359987px;}
.x3c{left:468.059987px;}
.x19{left:472.109987px;}
.xb6{left:474.539987px;}
.x77{left:477.329973px;}
.x11e{left:482.639987px;}
.x78{left:487.049987px;}
.x36{left:489.029987px;}
.x62{left:492.629973px;}
.xaa{left:494.429973px;}
.x8f{left:495.779987px;}
.x75{left:498.119987px;}
.x9a{left:499.289973px;}
.x39{left:501.989987px;}
.x8e{left:504.239987px;}
.x11d{left:507.569987px;}
.x9b{left:509.009987px;}
.xc8{left:510.269987px;}
.x76{left:511.799987px;}
.x4b{left:513.419973px;}
.xcf{left:514.949973px;}
.x24{left:516.929973px;}
.x25{left:521.789987px;}
.x4c{left:523.139987px;}
.x125{left:524.489973px;}
.x106{left:525.839987px;}
.x8c{left:528.539973px;}
.xde{left:530.609987px;}
.xe4{left:535.199973px;}
.x74{left:536.549987px;}
.x8d{left:538.259987px;}
.x119{left:540.869987px;}
.x85{left:547.169973px;}
.x9f{left:548.339987px;}
.x9{left:550.770000px;}
.xbd{left:552.479973px;}
.xef{left:553.739987px;}
.x86{left:556.889987px;}
.x58{left:567.599973px;}
.x33{left:571.289973px;}
.xfe{left:573.719973px;}
.x59{left:577.319987px;}
.x34{left:581.009987px;}
.x11f{left:582.809987px;}
.xff{left:588.299987px;}
.x98{left:590.189973px;}
.x124{left:592.079973px;}
.x112{left:593.879973px;}
.x87{left:596.759973px;}
.x49{left:598.739973px;}
.x99{left:599.909987px;}
.xa8{left:602.699973px;}
.xd3{left:604.049987px;}
.xb4{left:606.389973px;}
.x4a{left:608.459987px;}
.xd4{left:610.109973px;}
.xdb{left:611.369973px;}
.xa9{left:612.449987px;}
.x5a{left:614.249973px;}
.x107{left:616.139973px;}
.xd6{left:617.759987px;}
.xb5{left:620.999987px;}
.x114{left:622.529973px;}
.x5b{left:623.969987px;}
.xdc{left:625.949987px;}
.xa4{left:629.639973px;}
.x108{left:630.719987px;}
.x63{left:633.779973px;}
.xf6{left:635.759987px;}
.x115{left:637.109987px;}
.xa5{left:639.359987px;}
.x31{left:640.979973px;}
.x64{left:643.499987px;}
.xea{left:644.939987px;}
.x32{left:650.699987px;}
.x73{left:652.679987px;}
.xdd{left:654.029987px;}
.x113{left:658.709987px;}
.xdf{left:665.729973px;}
.xe6{left:668.519987px;}
.x105{left:671.219973px;}
.x5c{left:673.379973px;}
.xe0{left:680.309987px;}
.x67{left:681.569973px;}
.x4f{left:683.099973px;}
.x9d{left:684.179973px;}
.x20{left:685.799973px;}
.x4d{left:688.769973px;}
.x21{left:690.659987px;}
.x50{left:692.819987px;}
.x9e{left:693.899987px;}
.x35{left:695.969987px;}
.x4e{left:698.489987px;}
.xb3{left:705.059987px;}
.x71{left:708.209973px;}
.x100{left:710.999973px;}
.x65{left:712.169973px;}
.x72{left:717.929987px;}
.x3a{left:719.729973px;}
.x66{left:721.889987px;}
.x51{left:725.489973px;}
.x79{left:726.929973px;}
.x3b{left:729.449987px;}
.x5d{left:736.019973px;}
.x104{left:737.099973px;}
.x5e{left:745.739987px;}
.xd7{left:750.059973px;}
.xe7{left:751.139987px;}
.xd5{left:752.309973px;}
.xa6{left:759.599973px;}
.xc6{left:761.399973px;}
.xd8{left:764.639987px;}
.x22{left:765.899973px;}
.x96{left:767.339973px;}
.xa7{left:769.319987px;}
.x23{left:770.759987px;}
.xed{left:772.559973px;}
.xc7{left:775.979987px;}
.x97{left:777.059987px;}
.x10d{left:778.769987px;}
.x90{left:781.019987px;}
.xfc{left:783.809973px;}
.xee{left:787.139987px;}
.xbe{left:791.099987px;}
.xcd{left:794.969973px;}
.x37{left:796.049973px;}
.xfd{left:798.389987px;}
.xeb{left:800.549973px;}
.x38{left:805.769987px;}
.xce{left:809.549987px;}
.xec{left:815.129987px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls6b{letter-spacing:-0.741333pt;}
.ls56{letter-spacing:-0.666667pt;}
.ls26{letter-spacing:-0.347733pt;}
.ls4e{letter-spacing:-0.266133pt;}
.ls6c{letter-spacing:-0.252800pt;}
.ls4f{letter-spacing:-0.144000pt;}
.ls40{letter-spacing:-0.141867pt;}
.ls75{letter-spacing:-0.138133pt;}
.ls3e{letter-spacing:-0.134400pt;}
.ls11{letter-spacing:-0.133333pt;}
.ls74{letter-spacing:-0.130133pt;}
.ls2f{letter-spacing:-0.124267pt;}
.ls51{letter-spacing:-0.110933pt;}
.ls63{letter-spacing:-0.109867pt;}
.ls50{letter-spacing:-0.103467pt;}
.ls4{letter-spacing:-0.102933pt;}
.ls77{letter-spacing:-0.100267pt;}
.ls2e{letter-spacing:-0.086933pt;}
.ls3c{letter-spacing:-0.081600pt;}
.ls65{letter-spacing:-0.076800pt;}
.ls55{letter-spacing:-0.076267pt;}
.ls32{letter-spacing:-0.069867pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls25{letter-spacing:-0.061867pt;}
.ls68{letter-spacing:-0.061333pt;}
.ls19{letter-spacing:-0.052800pt;}
.ls66{letter-spacing:-0.048640pt;}
.ls4b{letter-spacing:-0.047360pt;}
.ls47{letter-spacing:-0.035840pt;}
.ls23{letter-spacing:-0.029440pt;}
.lsb{letter-spacing:-0.027520pt;}
.ls72{letter-spacing:-0.024000pt;}
.ls2a{letter-spacing:-0.023680pt;}
.ls5e{letter-spacing:-0.023040pt;}
.ls64{letter-spacing:-0.020480pt;}
.lsc{letter-spacing:-0.013760pt;}
.ls10{letter-spacing:-0.008320pt;}
.ls5{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000640pt;}
.ls24{letter-spacing:0.005440pt;}
.ls73{letter-spacing:0.010880pt;}
.ls13{letter-spacing:0.017280pt;}
.ls71{letter-spacing:0.024640pt;}
.ls60{letter-spacing:0.025067pt;}
.ls4a{letter-spacing:0.026240pt;}
.ls5f{letter-spacing:0.035840pt;}
.ls78{letter-spacing:0.037760pt;}
.ls5a{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.045760pt;}
.ls28{letter-spacing:0.051947pt;}
.ls1d{letter-spacing:0.053867pt;}
.ls6d{letter-spacing:0.054080pt;}
.ls14{letter-spacing:0.055467pt;}
.ls12{letter-spacing:0.058133pt;}
.ls1b{letter-spacing:0.058240pt;}
.ls6{letter-spacing:0.058667pt;}
.ls5b{letter-spacing:0.066133pt;}
.ls16{letter-spacing:0.067200pt;}
.ls8{letter-spacing:0.073067pt;}
.ls4c{letter-spacing:0.073280pt;}
.ls4d{letter-spacing:0.074667pt;}
.ls3d{letter-spacing:0.086720pt;}
.ls48{letter-spacing:0.086933pt;}
.ls62{letter-spacing:0.092907pt;}
.ls1f{letter-spacing:0.106133pt;}
.ls39{letter-spacing:0.106667pt;}
.ls5d{letter-spacing:0.108160pt;}
.ls7{letter-spacing:0.108267pt;}
.ls42{letter-spacing:0.109867pt;}
.ls27{letter-spacing:0.111467pt;}
.ls53{letter-spacing:0.111680pt;}
.ls1{letter-spacing:0.116267pt;}
.ls1a{letter-spacing:0.116480pt;}
.ls2b{letter-spacing:0.117333pt;}
.ls44{letter-spacing:0.121920pt;}
.ls2c{letter-spacing:0.122133pt;}
.ls3f{letter-spacing:0.133867pt;}
.ls30{letter-spacing:0.138133pt;}
.ls61{letter-spacing:0.141120pt;}
.ls58{letter-spacing:0.141333pt;}
.ls1c{letter-spacing:0.146560pt;}
.ls6a{letter-spacing:0.148267pt;}
.ls41{letter-spacing:0.149867pt;}
.ls29{letter-spacing:0.154667pt;}
.ls36{letter-spacing:0.154880pt;}
.ls18{letter-spacing:0.157867pt;}
.ls35{letter-spacing:0.158933pt;}
.ls45{letter-spacing:0.160320pt;}
.lsa{letter-spacing:0.160533pt;}
.ls6e{letter-spacing:0.189867pt;}
.ls2{letter-spacing:0.192640pt;}
.ls3b{letter-spacing:0.197440pt;}
.ls59{letter-spacing:0.209067pt;}
.ls57{letter-spacing:0.229440pt;}
.ls49{letter-spacing:0.238400pt;}
.ls76{letter-spacing:0.243733pt;}
.ls70{letter-spacing:0.243840pt;}
.ls5c{letter-spacing:0.250133pt;}
.ls46{letter-spacing:0.265280pt;}
.ls38{letter-spacing:0.276800pt;}
.ls43{letter-spacing:0.284160pt;}
.ls6f{letter-spacing:0.288000pt;}
.ls31{letter-spacing:0.292267pt;}
.ls20{letter-spacing:0.292480pt;}
.ls17{letter-spacing:0.306133pt;}
.ls52{letter-spacing:0.306240pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls67{letter-spacing:0.373867pt;}
.ls69{letter-spacing:0.378133pt;}
.ls37{letter-spacing:0.387200pt;}
.ls3a{letter-spacing:0.426667pt;}
.lsd{letter-spacing:2.546240pt;}
.ls9{letter-spacing:3.826240pt;}
.ls3{letter-spacing:6.850987pt;}
.ls2d{letter-spacing:27.120000pt;}
.ls15{letter-spacing:31.920000pt;}
.ls54{letter-spacing:32.026667pt;}
.lse{letter-spacing:48.946240pt;}
.ls33{letter-spacing:1866.439573pt;}
.ls34{letter-spacing:2441.338240pt;}
.ws32{word-spacing:-49.320107pt;}
.ws30{word-spacing:-49.170240pt;}
.ws31{word-spacing:-49.028373pt;}
.ws4b{word-spacing:-16.798507pt;}
.ws43{word-spacing:-16.686080pt;}
.wsd{word-spacing:-16.650240pt;}
.ws47{word-spacing:-16.629760pt;}
.ws49{word-spacing:-16.601600pt;}
.ws48{word-spacing:-16.573440pt;}
.ws1d{word-spacing:-16.563307pt;}
.ws44{word-spacing:-16.540373pt;}
.wse{word-spacing:-16.516907pt;}
.ws26{word-spacing:-14.088960pt;}
.ws25{word-spacing:-13.860693pt;}
.ws11{word-spacing:-13.859627pt;}
.ws2b{word-spacing:-13.856427pt;}
.ws1f{word-spacing:-13.839893pt;}
.ws2e{word-spacing:-13.835627pt;}
.ws20{word-spacing:-13.819093pt;}
.ws1{word-spacing:-13.818027pt;}
.ws12{word-spacing:-13.768960pt;}
.ws3e{word-spacing:-13.767893pt;}
.ws5{word-spacing:-13.760427pt;}
.ws10{word-spacing:-13.757227pt;}
.ws13{word-spacing:-13.719040pt;}
.ws4{word-spacing:-13.701760pt;}
.ws3{word-spacing:-13.697920pt;}
.ws2c{word-spacing:-13.678080pt;}
.ws4a{word-spacing:-13.640427pt;}
.ws17{word-spacing:-13.639893pt;}
.ws2{word-spacing:-13.598827pt;}
.ws1e{word-spacing:-13.577493pt;}
.ws45{word-spacing:-13.567360pt;}
.ws51{word-spacing:-13.563627pt;}
.ws37{word-spacing:-13.557760pt;}
.ws4d{word-spacing:-13.448960pt;}
.ws46{word-spacing:-13.360000pt;}
.ws4c{word-spacing:-12.960427pt;}
.ws54{word-spacing:-11.919360pt;}
.wsf{word-spacing:-11.881600pt;}
.ws21{word-spacing:-11.826027pt;}
.ws40{word-spacing:-11.783893pt;}
.ws52{word-spacing:-11.777493pt;}
.ws3f{word-spacing:-11.742827pt;}
.wsb{word-spacing:-11.694293pt;}
.ws1c{word-spacing:-11.688427pt;}
.ws24{word-spacing:-11.655893pt;}
.ws1a{word-spacing:-11.645227pt;}
.ws9{word-spacing:-11.642027pt;}
.ws18{word-spacing:-11.639893pt;}
.ws34{word-spacing:-11.620693pt;}
.ws7{word-spacing:-11.606827pt;}
.ws14{word-spacing:-11.587627pt;}
.ws1b{word-spacing:-11.579520pt;}
.ws42{word-spacing:-11.574080pt;}
.ws50{word-spacing:-11.544640pt;}
.ws2f{word-spacing:-11.534400pt;}
.ws8{word-spacing:-11.533760pt;}
.wsc{word-spacing:-11.525440pt;}
.ws35{word-spacing:-11.520000pt;}
.ws4f{word-spacing:-11.509760pt;}
.wsa{word-spacing:-11.506240pt;}
.ws15{word-spacing:-11.504320pt;}
.ws33{word-spacing:-11.497920pt;}
.ws22{word-spacing:-11.480960pt;}
.ws23{word-spacing:-11.463893pt;}
.ws3c{word-spacing:-11.457493pt;}
.ws3b{word-spacing:-11.452160pt;}
.ws3a{word-spacing:-11.422827pt;}
.ws2d{word-spacing:-11.399360pt;}
.ws36{word-spacing:-11.267627pt;}
.ws19{word-spacing:-11.186027pt;}
.ws3d{word-spacing:-10.867093pt;}
.ws28{word-spacing:-10.278400pt;}
.ws27{word-spacing:-10.055467pt;}
.ws4e{word-spacing:-10.026240pt;}
.ws16{word-spacing:-10.007040pt;}
.ws6{word-spacing:-10.001600pt;}
.ws38{word-spacing:-9.987840pt;}
.ws41{word-spacing:-9.978560pt;}
.ws29{word-spacing:-9.974080pt;}
.ws39{word-spacing:-9.972160pt;}
.ws2a{word-spacing:-9.920000pt;}
.ws53{word-spacing:-9.901333pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-2.306880pt;}
._1{margin-left:-1.357120pt;}
._2{width:1.343787pt;}
._4{width:25.906240pt;}
._5{width:48.918720pt;}
._28{width:62.056747pt;}
._2b{width:100.445867pt;}
._1b{width:127.591680pt;}
._21{width:130.365547pt;}
._1a{width:132.996800pt;}
._20{width:135.004587pt;}
._16{width:136.494187pt;}
._15{width:140.069227pt;}
._24{width:146.921387pt;}
._1c{width:150.411307pt;}
._26{width:154.199147pt;}
._1f{width:155.292267pt;}
._2a{width:156.412267pt;}
._2c{width:157.823467pt;}
._25{width:159.434027pt;}
._22{width:162.575787pt;}
._1e{width:164.200747pt;}
._18{width:165.605227pt;}
._1d{width:166.541547pt;}
._2d{width:168.870507pt;}
._17{width:170.080747pt;}
._2f{width:172.627627pt;}
._29{width:174.840747pt;}
._27{width:179.479787pt;}
._19{width:181.011947pt;}
._23{width:192.044053pt;}
._2e{width:199.546027pt;}
._3{width:1271.631573pt;}
._13{width:1535.239573pt;}
._7{width:1607.239573pt;}
._10{width:1694.279573pt;}
._c{width:1822.279573pt;}
._11{width:1880.199573pt;}
._b{width:1929.479573pt;}
._d{width:2035.826240pt;}
._f{width:2151.666240pt;}
._8{width:2241.266240pt;}
._12{width:2255.986240pt;}
._6{width:2284.466240pt;}
._14{width:2335.986240pt;}
._e{width:2407.666240pt;}
._9{width:2468.858240pt;}
._a{width:2570.866240pt;}
.fsc{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.560000pt;}
.fs6{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.560000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:69.440000pt;}
.fs7{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:165.440000pt;}
.fsd{font-size:181.440000pt;}
.y0{bottom:0.000000pt;}
.y1c9{bottom:3.200000pt;}
.y2b{bottom:3.440000pt;}
.y2f{bottom:4.400000pt;}
.y29{bottom:5.200000pt;}
.y59{bottom:5.280000pt;}
.y32{bottom:11.680000pt;}
.y13a{bottom:18.160000pt;}
.y2d{bottom:20.800000pt;}
.y89{bottom:21.120000pt;}
.y25{bottom:22.000000pt;}
.ya7{bottom:22.320000pt;}
.y34{bottom:26.400000pt;}
.y112{bottom:27.680000pt;}
.y15d{bottom:27.706667pt;}
.y6{bottom:31.933340pt;}
.y31{bottom:57.040000pt;}
.y5{bottom:59.133337pt;}
.y38{bottom:62.560000pt;}
.ya6{bottom:73.520000pt;}
.y15c{bottom:79.706667pt;}
.y37{bottom:79.920000pt;}
.y4{bottom:86.333337pt;}
.ya5{bottom:86.880000pt;}
.ya4{bottom:100.160000pt;}
.y2c{bottom:109.200000pt;}
.y86{bottom:119.440000pt;}
.y23{bottom:123.790666pt;}
.y85{bottom:134.080000pt;}
.y1c1{bottom:137.280000pt;}
.y2a{bottom:143.920000pt;}
.y84{bottom:148.800000pt;}
.y1c8{bottom:151.120000pt;}
.y10a{bottom:154.320000pt;}
.yd6{bottom:161.360000pt;}
.y109{bottom:170.320000pt;}
.y1a{bottom:175.052000pt;}
.y83{bottom:178.080000pt;}
.yd5{bottom:178.720000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y108{bottom:186.320000pt;}
.y191{bottom:186.560000pt;}
.y82{bottom:192.800000pt;}
.y3a{bottom:194.026667pt;}
.yd4{bottom:196.106667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y57{bottom:197.706667pt;}
.y107{bottom:202.346667pt;}
.y133{bottom:202.586667pt;}
.y81{bottom:207.440000pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y190{bottom:213.226667pt;}
.yd3{bottom:213.386667pt;}
.y106{bottom:218.346667pt;}
.y80{bottom:222.080000pt;}
.y18f{bottom:230.586667pt;}
.yd2{bottom:230.746667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y131{bottom:232.506667pt;}
.y105{bottom:234.346667pt;}
.y7f{bottom:236.800000pt;}
.y132{bottom:238.506667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y18e{bottom:247.866667pt;}
.yd1{bottom:248.106667pt;}
.y64{bottom:249.466667pt;}
.y130{bottom:249.866667pt;}
.y104{bottom:250.346667pt;}
.y17a{bottom:250.586667pt;}
.y7e{bottom:251.440000pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y18d{bottom:265.226667pt;}
.yd0{bottom:265.386667pt;}
.y103{bottom:266.346667pt;}
.y196{bottom:266.586667pt;}
.y12f{bottom:267.226667pt;}
.y27{bottom:273.306667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y7d{bottom:280.800000pt;}
.y102{bottom:282.346667pt;}
.y16e{bottom:282.586667pt;}
.ycf{bottom:282.746667pt;}
.y12e{bottom:284.506667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y7c{bottom:295.440000pt;}
.y101{bottom:298.346667pt;}
.y110{bottom:298.586667pt;}
.y18c{bottom:299.866667pt;}
.y16d{bottom:299.946667pt;}
.yce{bottom:300.106667pt;}
.y12d{bottom:301.866667pt;}
.y11{bottom:309.452000pt;}
.y7b{bottom:310.080000pt;}
.y100{bottom:314.346667pt;}
.y13e{bottom:314.586667pt;}
.y179{bottom:317.226667pt;}
.y16b{bottom:317.306667pt;}
.ycd{bottom:317.386667pt;}
.y12c{bottom:319.226667pt;}
.y19b{bottom:323.226667pt;}
.y16c{bottom:323.306667pt;}
.y17f{bottom:323.386667pt;}
.y7a{bottom:324.826667pt;}
.yff{bottom:330.346667pt;}
.y146{bottom:330.586667pt;}
.y10f{bottom:334.586667pt;}
.ycc{bottom:334.746667pt;}
.y12b{bottom:336.506667pt;}
.y79{bottom:339.466667pt;}
.y134{bottom:342.506667pt;}
.y10{bottom:343.809333pt;}
.y122{bottom:346.346667pt;}
.yfe{bottom:346.586667pt;}
.y10e{bottom:351.866667pt;}
.y16a{bottom:351.946667pt;}
.ycb{bottom:352.106667pt;}
.y12a{bottom:353.866667pt;}
.y78{bottom:354.106667pt;}
.y19a{bottom:357.866667pt;}
.y198{bottom:358.106667pt;}
.y121{bottom:362.346667pt;}
.y157{bottom:362.586667pt;}
.yf{bottom:362.706666pt;}
.yfd{bottom:369.226667pt;}
.y168{bottom:369.306667pt;}
.yca{bottom:369.386667pt;}
.y55{bottom:369.466667pt;}
.y129{bottom:371.226667pt;}
.y10d{bottom:375.226667pt;}
.y169{bottom:375.306667pt;}
.y13d{bottom:375.386667pt;}
.y120{bottom:378.346667pt;}
.y181{bottom:378.586667pt;}
.y77{bottom:383.466667pt;}
.yfc{bottom:386.586667pt;}
.yc9{bottom:386.746667pt;}
.y54{bottom:386.826667pt;}
.y128{bottom:388.506667pt;}
.y13c{bottom:392.746667pt;}
.y11f{bottom:394.346667pt;}
.y18a{bottom:394.586667pt;}
.y76{bottom:398.106667pt;}
.yfa{bottom:403.866667pt;}
.y167{bottom:403.946667pt;}
.yc8{bottom:404.106667pt;}
.y53{bottom:404.186667pt;}
.y127{bottom:405.866667pt;}
.yfb{bottom:409.866667pt;}
.y180{bottom:410.106667pt;}
.y11e{bottom:410.346667pt;}
.y126{bottom:410.586667pt;}
.y75{bottom:412.826667pt;}
.yf9{bottom:421.226667pt;}
.y166{bottom:421.306667pt;}
.yc7{bottom:421.386667pt;}
.y52{bottom:421.466667pt;}
.y173{bottom:422.533333pt;}
.y11d{bottom:426.346667pt;}
.y142{bottom:426.586667pt;}
.y156{bottom:427.226667pt;}
.y16f{bottom:427.306667pt;}
.y17e{bottom:427.386667pt;}
.y74{bottom:427.466667pt;}
.yf8{bottom:438.586667pt;}
.yc6{bottom:438.746667pt;}
.y51{bottom:438.826667pt;}
.y73{bottom:442.106667pt;}
.y172{bottom:442.213333pt;}
.y11c{bottom:442.346667pt;}
.y162{bottom:442.586667pt;}
.y15a{bottom:444.586667pt;}
.y189{bottom:444.746667pt;}
.ye{bottom:446.990669pt;}
.y135{bottom:448.506667pt;}
.yf7{bottom:455.866667pt;}
.y165{bottom:455.946667pt;}
.yc5{bottom:456.106667pt;}
.y50{bottom:456.186667pt;}
.y72{bottom:456.826667pt;}
.y11b{bottom:458.346667pt;}
.y161{bottom:458.586667pt;}
.y125{bottom:462.106667pt;}
.yd{bottom:462.990669pt;}
.y1c0{bottom:467.546667pt;}
.y71{bottom:471.466667pt;}
.yf5{bottom:473.226667pt;}
.y164{bottom:473.306667pt;}
.yc4{bottom:473.386667pt;}
.y4f{bottom:473.466667pt;}
.y11a{bottom:474.346667pt;}
.y183{bottom:474.586667pt;}
.y171{bottom:477.573333pt;}
.yc{bottom:478.990666pt;}
.yf6{bottom:479.226667pt;}
.y141{bottom:479.386667pt;}
.y1bf{bottom:482.186667pt;}
.y70{bottom:486.106667pt;}
.y119{bottom:490.346667pt;}
.yf4{bottom:490.586667pt;}
.yc3{bottom:490.746667pt;}
.y4e{bottom:490.826667pt;}
.yb{bottom:494.990666pt;}
.y178{bottom:496.586667pt;}
.y145{bottom:496.746667pt;}
.y1be{bottom:496.906667pt;}
.y6f{bottom:500.826667pt;}
.y185{bottom:505.386667pt;}
.y152{bottom:506.346667pt;}
.y118{bottom:506.586667pt;}
.yf3{bottom:507.866667pt;}
.y163{bottom:507.946667pt;}
.yc2{bottom:508.106667pt;}
.y4d{bottom:508.186667pt;}
.y1bd{bottom:511.546667pt;}
.y148{bottom:514.106667pt;}
.y6e{bottom:515.466667pt;}
.y151{bottom:522.346667pt;}
.y184{bottom:522.746667pt;}
.y138{bottom:524.613333pt;}
.yf2{bottom:525.226667pt;}
.yc1{bottom:525.386667pt;}
.y4c{bottom:525.466667pt;}
.y1bc{bottom:526.186667pt;}
.y195{bottom:526.746667pt;}
.y6d{bottom:530.106667pt;}
.y150{bottom:538.346667pt;}
.y186{bottom:538.586667pt;}
.y1bb{bottom:540.906667pt;}
.yf0{bottom:542.586667pt;}
.yc0{bottom:542.746667pt;}
.y4b{bottom:542.826667pt;}
.y194{bottom:544.106667pt;}
.y137{bottom:544.293333pt;}
.y6c{bottom:544.826667pt;}
.ya0{bottom:545.066667pt;}
.yf1{bottom:548.586667pt;}
.y188{bottom:548.746667pt;}
.y170{bottom:550.586667pt;}
.y14f{bottom:554.346667pt;}
.y36{bottom:554.986667pt;}
.y1ba{bottom:555.546667pt;}
.ya{bottom:556.986668pt;}
.y6b{bottom:559.466667pt;}
.yef{bottom:559.866667pt;}
.ybf{bottom:560.106667pt;}
.y4a{bottom:560.186667pt;}
.y9f{bottom:562.613333pt;}
.y10c{bottom:565.893333pt;}
.y13b{bottom:566.133333pt;}
.y1b9{bottom:570.213333pt;}
.y14e{bottom:570.613333pt;}
.y35{bottom:572.933333pt;}
.y9{bottom:573.786667pt;}
.y6a{bottom:574.106667pt;}
.yee{bottom:577.253333pt;}
.ybe{bottom:577.413333pt;}
.y49{bottom:577.493333pt;}
.y136{bottom:579.653333pt;}
.y147{bottom:583.413333pt;}
.y9e{bottom:584.533333pt;}
.y1b8{bottom:584.933333pt;}
.y33{bottom:586.853333pt;}
.y69{bottom:588.826667pt;}
.y8{bottom:592.685334pt;}
.yed{bottom:594.613333pt;}
.ybd{bottom:594.773333pt;}
.y48{bottom:594.853333pt;}
.y1b7{bottom:599.573333pt;}
.y155{bottom:600.613333pt;}
.y153{bottom:600.773333pt;}
.y68{bottom:603.466667pt;}
.y9d{bottom:606.533333pt;}
.yec{bottom:611.893333pt;}
.ybc{bottom:612.133333pt;}
.y47{bottom:612.213333pt;}
.y1b6{bottom:614.213333pt;}
.y18b{bottom:617.893333pt;}
.y117{bottom:618.133333pt;}
.y61{bottom:621.093333pt;}
.y9c{bottom:621.173333pt;}
.y1b5{bottom:628.933333pt;}
.yeb{bottom:629.253333pt;}
.ybb{bottom:629.413333pt;}
.y46{bottom:629.493333pt;}
.y67{bottom:632.506667pt;}
.y17c{bottom:635.413333pt;}
.y9b{bottom:635.893333pt;}
.y60{bottom:638.453333pt;}
.y30{bottom:639.493333pt;}
.y1b4{bottom:643.573333pt;}
.y7{bottom:645.598667pt;}
.yea{bottom:646.613333pt;}
.yba{bottom:646.773333pt;}
.y45{bottom:646.853333pt;}
.y66{bottom:647.386667pt;}
.y9a{bottom:650.533333pt;}
.y149{bottom:652.773333pt;}
.y5f{bottom:656.773333pt;}
.y1c7{bottom:656.933333pt;}
.y1b3{bottom:658.213333pt;}
.y65{bottom:659.626667pt;}
.ye9{bottom:663.893333pt;}
.yb9{bottom:664.133333pt;}
.y44{bottom:664.213333pt;}
.y99{bottom:665.173333pt;}
.y3{bottom:668.977329pt;}
.y10b{bottom:669.893333pt;}
.y187{bottom:670.133333pt;}
.y1b2{bottom:672.933333pt;}
.y1c6{bottom:674.213333pt;}
.ye8{bottom:681.253333pt;}
.yb8{bottom:681.413333pt;}
.y43{bottom:681.493333pt;}
.y98{bottom:687.173333pt;}
.y154{bottom:687.253333pt;}
.y124{bottom:687.413333pt;}
.y1b1{bottom:687.573333pt;}
.y1c5{bottom:691.573333pt;}
.y5e{bottom:692.053333pt;}
.ye7{bottom:698.613333pt;}
.yb7{bottom:698.773333pt;}
.y42{bottom:698.853333pt;}
.y97{bottom:701.893333pt;}
.y1b0{bottom:702.213333pt;}
.y144{bottom:704.773333pt;}
.y1c4{bottom:708.933333pt;}
.ye6{bottom:715.893333pt;}
.yb6{bottom:716.133333pt;}
.y41{bottom:716.213333pt;}
.y96{bottom:716.533333pt;}
.y1af{bottom:716.933333pt;}
.y175{bottom:722.133333pt;}
.y1c3{bottom:726.213333pt;}
.y95{bottom:731.173333pt;}
.y1ae{bottom:731.573333pt;}
.y2e{bottom:732.853333pt;}
.ye5{bottom:733.253333pt;}
.yb5{bottom:733.413333pt;}
.y40{bottom:733.493333pt;}
.y5d{bottom:737.413333pt;}
.y159{bottom:739.253333pt;}
.y176{bottom:739.413333pt;}
.y1c2{bottom:743.573333pt;}
.y94{bottom:745.893333pt;}
.y1ad{bottom:746.213333pt;}
.ye4{bottom:750.613333pt;}
.yb4{bottom:750.773333pt;}
.y3f{bottom:750.853333pt;}
.y26{bottom:754.853333pt;}
.y140{bottom:756.773333pt;}
.y93{bottom:760.533333pt;}
.y1ac{bottom:760.933333pt;}
.ye3{bottom:767.893333pt;}
.yb3{bottom:768.133333pt;}
.y3e{bottom:768.213333pt;}
.y14c{bottom:774.133333pt;}
.y1ab{bottom:775.573333pt;}
.y5c{bottom:778.053333pt;}
.y2{bottom:781.661334pt;}
.y92{bottom:782.533333pt;}
.ye2{bottom:785.253333pt;}
.yb2{bottom:785.413333pt;}
.y3d{bottom:785.493333pt;}
.y1aa{bottom:790.213333pt;}
.y158{bottom:791.253333pt;}
.y143{bottom:791.413333pt;}
.y91{bottom:797.173333pt;}
.y28{bottom:797.493333pt;}
.y5b{bottom:799.093333pt;}
.ye1{bottom:802.613333pt;}
.yb1{bottom:802.773333pt;}
.y3c{bottom:802.853333pt;}
.y1a9{bottom:804.933333pt;}
.y199{bottom:808.613333pt;}
.y13f{bottom:808.773333pt;}
.y90{bottom:811.893333pt;}
.y5a{bottom:816.453333pt;}
.y1a8{bottom:819.573333pt;}
.ye0{bottom:819.893333pt;}
.yb0{bottom:820.133333pt;}
.y3b{bottom:820.213333pt;}
.y123{bottom:826.133333pt;}
.y56{bottom:830.373333pt;}
.y8f{bottom:833.893333pt;}
.y39{bottom:834.053333pt;}
.y1a7{bottom:834.213333pt;}
.ydf{bottom:837.253333pt;}
.yaf{bottom:837.413333pt;}
.y14d{bottom:843.413333pt;}
.y8e{bottom:848.533333pt;}
.y1a6{bottom:848.933333pt;}
.yde{bottom:854.613333pt;}
.yae{bottom:854.773333pt;}
.y1{bottom:859.312000pt;}
.y116{bottom:860.773333pt;}
.y8d{bottom:863.173333pt;}
.y1a5{bottom:863.573333pt;}
.ydd{bottom:871.893333pt;}
.yad{bottom:872.133333pt;}
.y193{bottom:873.493333pt;}
.y58{bottom:874.853333pt;}
.y8c{bottom:877.893333pt;}
.y115{bottom:878.133333pt;}
.y1a4{bottom:878.213333pt;}
.ydc{bottom:889.253333pt;}
.ydb{bottom:889.413333pt;}
.y160{bottom:889.493333pt;}
.ya3{bottom:889.573333pt;}
.y8b{bottom:892.613333pt;}
.y1a3{bottom:892.933333pt;}
.y192{bottom:895.253333pt;}
.y174{bottom:895.413333pt;}
.yda{bottom:906.773333pt;}
.ya2{bottom:906.853333pt;}
.y1a2{bottom:907.573333pt;}
.y114{bottom:912.773333pt;}
.y8a{bottom:914.613333pt;}
.y15b{bottom:920.693333pt;}
.y1a1{bottom:922.213333pt;}
.yac{bottom:924.133333pt;}
.y17b{bottom:930.133333pt;}
.y1a0{bottom:936.960000pt;}
.yab{bottom:941.440000pt;}
.y15f{bottom:941.520000pt;}
.y14b{bottom:947.440000pt;}
.y19f{bottom:951.600000pt;}
.yaa{bottom:958.800000pt;}
.y15e{bottom:964.800000pt;}
.y19e{bottom:966.240000pt;}
.y111{bottom:972.720000pt;}
.yd9{bottom:976.160000pt;}
.y19d{bottom:980.960000pt;}
.y113{bottom:982.160000pt;}
.y88{bottom:985.680000pt;}
.yd8{bottom:993.440000pt;}
.y17d{bottom:993.520000pt;}
.y19c{bottom:995.600000pt;}
.y63{bottom:998.800000pt;}
.y14a{bottom:999.440000pt;}
.yd7{bottom:1010.800000pt;}
.y182{bottom:1010.880000pt;}
.ya9{bottom:1012.160000pt;}
.y197{bottom:1016.800000pt;}
.ya1{bottom:1024.720000pt;}
.ya8{bottom:1027.520000pt;}
.y87{bottom:1028.160000pt;}
.y62{bottom:1030.240000pt;}
.y177{bottom:1034.160000pt;}
.y139{bottom:1069.280000pt;}
.y24{bottom:1087.040000pt;}
.he{height:17.280000pt;}
.h17{height:17.360000pt;}
.h11{height:22.000000pt;}
.h23{height:27.776000pt;}
.h7{height:28.560000pt;}
.hc{height:30.160000pt;}
.h1b{height:30.240000pt;}
.h1d{height:30.643200pt;}
.h2a{height:32.880000pt;}
.h10{height:34.720000pt;}
.h2d{height:35.580160pt;}
.h24{height:36.473920pt;}
.h9{height:36.942080pt;}
.h1e{height:39.040000pt;}
.h22{height:40.376000pt;}
.h6{height:40.800000pt;}
.h25{height:41.770312pt;}
.h21{height:42.268160pt;}
.h2c{height:42.456094pt;}
.h3{height:42.840000pt;}
.hf{height:43.329920pt;}
.ha{height:43.886080pt;}
.h28{height:46.385920pt;}
.h34{height:47.992000pt;}
.h2{height:48.960000pt;}
.h32{height:50.830080pt;}
.h2e{height:51.776000pt;}
.h19{height:51.967713pt;}
.h33{height:52.448437pt;}
.h15{height:52.640000pt;}
.h1f{height:52.654080pt;}
.h31{height:55.552000pt;}
.h12{height:58.051840pt;}
.h20{height:58.245469pt;}
.h16{height:60.273920pt;}
.h2b{height:62.812500pt;}
.h26{height:69.280000pt;}
.h5{height:69.360000pt;}
.hd{height:73.222080pt;}
.h13{height:93.360000pt;}
.h4{height:105.826671pt;}
.h2f{height:121.306667pt;}
.h14{height:143.601920pt;}
.h27{height:157.489920pt;}
.h18{height:207.946667pt;}
.h1a{height:211.626667pt;}
.hb{height:287.146667pt;}
.h30{height:491.413333pt;}
.h29{height:593.493333pt;}
.h35{height:623.813333pt;}
.h1c{height:676.186667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:147.386667pt;}
.w6{width:198.186667pt;}
.w7{width:302.453333pt;}
.wd{width:305.466667pt;}
.we{width:305.573333pt;}
.w14{width:306.213333pt;}
.wa{width:397.013333pt;}
.w11{width:420.293333pt;}
.w13{width:420.373333pt;}
.w2{width:566.928019pt;}
.w8{width:626.800000pt;}
.w9{width:627.440000pt;}
.wb{width:646.480000pt;}
.w5{width:646.560000pt;}
.w10{width:680.480000pt;}
.w12{width:680.506667pt;}
.w0{width:793.700000pt;}
.wf{width:793.759976pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.520000pt;}
.xe{left:15.120000pt;}
.xc{left:22.800000pt;}
.x18{left:30.240000pt;}
.x16{left:34.746667pt;}
.xa{left:42.320000pt;}
.x6{left:58.560000pt;}
.x5{left:68.079988pt;}
.xd{left:69.946667pt;}
.x8{left:78.746667pt;}
.x1c{left:83.199988pt;}
.x6a{left:86.799976pt;}
.x14{left:88.800000pt;}
.x1{left:90.706667pt;}
.xe3{left:91.599988pt;}
.xd0{left:92.559976pt;}
.x2{left:94.486667pt;}
.x6b{left:95.439988pt;}
.x13{left:98.239988pt;}
.xc4{left:100.479988pt;}
.x1d{left:102.559988pt;}
.xf3{left:104.079976pt;}
.xd1{left:105.519988pt;}
.x10b{left:107.039988pt;}
.xb{left:112.186667pt;}
.x15{left:113.386655pt;}
.x126{left:114.986643pt;}
.xe2{left:115.946655pt;}
.xf4{left:117.066655pt;}
.x2f{left:119.146655pt;}
.xf{left:120.906667pt;}
.x68{left:123.386643pt;}
.x30{left:124.906655pt;}
.x127{left:127.946655pt;}
.xa1{left:130.186655pt;}
.x69{left:132.026655pt;}
.xcb{left:133.626655pt;}
.x3f{left:134.906655pt;}
.x101{left:136.826655pt;}
.xe1{left:138.666655pt;}
.xb2{left:139.626643pt;}
.x7b{left:142.826643pt;}
.xb8{left:146.346643pt;}
.x92{left:147.786643pt;}
.xd2{left:150.426643pt;}
.x7c{left:151.466655pt;}
.x3e{left:152.826655pt;}
.x11a{left:155.946655pt;}
.x40{left:156.986655pt;}
.xa0{left:160.106655pt;}
.x43{left:161.866643pt;}
.x6c{left:162.906643pt;}
.xab{left:163.866643pt;}
.xfa{left:169.066643pt;}
.x44{left:170.506655pt;}
.x6d{left:171.546655pt;}
.xac{left:172.506655pt;}
.x56{left:179.706643pt;}
.x4{left:180.874667pt;}
.xfb{left:182.026655pt;}
.xf0{left:183.386643pt;}
.x57{left:188.346655pt;}
.x5f{left:193.546643pt;}
.xf1{left:196.346655pt;}
.x8a{left:200.666643pt;}
.x60{left:202.186655pt;}
.xe8{left:203.386643pt;}
.x80{left:205.226643pt;}
.x8b{left:209.306655pt;}
.x9c{left:210.426643pt;}
.x109{left:211.786643pt;}
.x81{left:213.866655pt;}
.x45{left:214.986643pt;}
.xe9{left:216.346655pt;}
.x91{left:218.586655pt;}
.x12{left:220.346667pt;}
.xbf{left:222.666643pt;}
.x46{left:223.626655pt;}
.x10a{left:224.746655pt;}
.xf8{left:226.106655pt;}
.x61{left:228.426655pt;}
.x7d{left:229.466643pt;}
.x70{left:231.786655pt;}
.xd9{left:233.066643pt;}
.xc0{left:235.626655pt;}
.x7e{left:238.106655pt;}
.x93{left:239.226643pt;}
.x2b{left:240.506643pt;}
.x2c{left:244.826655pt;}
.xda{left:246.026655pt;}
.x94{left:247.866655pt;}
.x7a{left:253.466655pt;}
.x11{left:255.306667pt;}
.x6e{left:258.266643pt;}
.xb7{left:259.706643pt;}
.x3d{left:262.666667pt;}
.x52{left:264.426643pt;}
.x6f{left:266.906655pt;}
.x128{left:268.026655pt;}
.xf2{left:269.386643pt;}
.xaf{left:270.506655pt;}
.xc2{left:272.026643pt;}
.x53{left:273.066655pt;}
.x82{left:274.426643pt;}
.xf9{left:276.186655pt;}
.x120{left:277.306643pt;}
.xbc{left:280.266655pt;}
.x83{left:283.066655pt;}
.xc3{left:284.986655pt;}
.xf7{left:285.946643pt;}
.x117{left:287.066643pt;}
.x121{left:290.266655pt;}
.x122{left:294.746643pt;}
.xb9{left:298.026643pt;}
.x118{left:300.026655pt;}
.x111{left:302.186643pt;}
.xc1{left:306.586643pt;}
.x123{left:307.706655pt;}
.x29{left:310.266643pt;}
.x10e{left:311.226655pt;}
.x11c{left:312.346655pt;}
.x2a{left:314.586655pt;}
.xad{left:316.186643pt;}
.xb0{left:317.466643pt;}
.xba{left:320.026643pt;}
.x11b{left:323.706643pt;}
.xae{left:324.853322pt;}
.xb1{left:326.133322pt;}
.x54{left:328.293310pt;}
.x41{left:329.573310pt;}
.x1a{left:330.773310pt;}
.xbb{left:333.013322pt;}
.x1b{left:335.093322pt;}
.x55{left:336.933322pt;}
.x42{left:338.213322pt;}
.x47{left:340.373310pt;}
.x102{left:341.413310pt;}
.x27{left:342.933310pt;}
.x10c{left:344.213310pt;}
.x28{left:347.253322pt;}
.x48{left:349.013322pt;}
.x1e{left:351.493310pt;}
.x2d{left:354.293310pt;}
.x1f{left:355.813322pt;}
.x7f{left:357.173322pt;}
.x103{left:359.973310pt;}
.xc9{left:361.893310pt;}
.x2e{left:362.933322pt;}
.xa2{left:364.693310pt;}
.x95{left:365.973322pt;}
.xcc{left:367.893322pt;}
.x88{left:370.053310pt;}
.x84{left:371.333322pt;}
.x116{left:372.373322pt;}
.xa3{left:373.333322pt;}
.xca{left:374.853322pt;}
.x89{left:378.693322pt;}
.x10f{left:388.213310pt;}
.x17{left:389.413333pt;}
.x10{left:396.293333pt;}
.x110{left:401.173322pt;}
.x3{left:404.408000pt;}
.xe5{left:406.133310pt;}
.xc5{left:407.973322pt;}
.x26{left:410.293322pt;}
.xf5{left:413.653322pt;}
.x3c{left:416.053322pt;}
.x19{left:419.653322pt;}
.xb6{left:421.813322pt;}
.x77{left:424.293310pt;}
.x11e{left:429.013322pt;}
.x78{left:432.933322pt;}
.x36{left:434.693322pt;}
.x62{left:437.893310pt;}
.xaa{left:439.493310pt;}
.x8f{left:440.693322pt;}
.x75{left:442.773322pt;}
.x9a{left:443.813310pt;}
.x39{left:446.213322pt;}
.x8e{left:448.213322pt;}
.x11d{left:451.173322pt;}
.x9b{left:452.453322pt;}
.xc8{left:453.573322pt;}
.x76{left:454.933322pt;}
.x4b{left:456.373310pt;}
.xcf{left:457.733310pt;}
.x24{left:459.493310pt;}
.x25{left:463.813322pt;}
.x4c{left:465.013322pt;}
.x125{left:466.213310pt;}
.x106{left:467.413322pt;}
.x8c{left:469.813310pt;}
.xde{left:471.653322pt;}
.xe4{left:475.733310pt;}
.x74{left:476.933322pt;}
.x8d{left:478.453322pt;}
.x119{left:480.773322pt;}
.x85{left:486.373310pt;}
.x9f{left:487.413322pt;}
.x9{left:489.573333pt;}
.xbd{left:491.093310pt;}
.xef{left:492.213322pt;}
.x86{left:495.013322pt;}
.x58{left:504.533310pt;}
.x33{left:507.813310pt;}
.xfe{left:509.973310pt;}
.x59{left:513.173322pt;}
.x34{left:516.453322pt;}
.x11f{left:518.053322pt;}
.xff{left:522.933322pt;}
.x98{left:524.613310pt;}
.x124{left:526.293310pt;}
.x112{left:527.893310pt;}
.x87{left:530.453310pt;}
.x49{left:532.213310pt;}
.x99{left:533.253322pt;}
.xa8{left:535.733310pt;}
.xd3{left:536.933322pt;}
.xb4{left:539.013310pt;}
.x4a{left:540.853322pt;}
.xd4{left:542.319976pt;}
.xdb{left:543.439976pt;}
.xa9{left:544.399988pt;}
.x5a{left:545.999976pt;}
.x107{left:547.679976pt;}
.xd6{left:549.119988pt;}
.xb5{left:551.999988pt;}
.x114{left:553.359976pt;}
.x5b{left:554.639988pt;}
.xdc{left:556.399988pt;}
.xa4{left:559.679976pt;}
.x108{left:560.639988pt;}
.x63{left:563.359976pt;}
.xf6{left:565.119988pt;}
.x115{left:566.319988pt;}
.xa5{left:568.319988pt;}
.x31{left:569.759976pt;}
.x64{left:571.999988pt;}
.xea{left:573.279988pt;}
.x32{left:578.399988pt;}
.x73{left:580.159988pt;}
.xdd{left:581.359988pt;}
.x113{left:585.519988pt;}
.xdf{left:591.759976pt;}
.xe6{left:594.239988pt;}
.x105{left:596.639976pt;}
.x5c{left:598.559976pt;}
.xe0{left:604.719988pt;}
.x67{left:605.839976pt;}
.x4f{left:607.199976pt;}
.x9d{left:608.159976pt;}
.x20{left:609.599976pt;}
.x4d{left:612.239976pt;}
.x21{left:613.919988pt;}
.x50{left:615.839988pt;}
.x9e{left:616.799988pt;}
.x35{left:618.639988pt;}
.x4e{left:620.879988pt;}
.xb3{left:626.719988pt;}
.x71{left:629.519976pt;}
.x100{left:631.999976pt;}
.x65{left:633.039976pt;}
.x72{left:638.159988pt;}
.x3a{left:639.759976pt;}
.x66{left:641.679988pt;}
.x51{left:644.879976pt;}
.x79{left:646.159976pt;}
.x3b{left:648.399988pt;}
.x5d{left:654.239976pt;}
.x104{left:655.199976pt;}
.x5e{left:662.879988pt;}
.xd7{left:666.719976pt;}
.xe7{left:667.679988pt;}
.xd5{left:668.719976pt;}
.xa6{left:675.199976pt;}
.xc6{left:676.799976pt;}
.xd8{left:679.679988pt;}
.x22{left:680.799976pt;}
.x96{left:682.079976pt;}
.xa7{left:683.839988pt;}
.x23{left:685.119988pt;}
.xed{left:686.719976pt;}
.xc7{left:689.759988pt;}
.x97{left:690.719988pt;}
.x10d{left:692.239988pt;}
.x90{left:694.239988pt;}
.xfc{left:696.719976pt;}
.xee{left:699.679988pt;}
.xbe{left:703.199988pt;}
.xcd{left:706.639976pt;}
.x37{left:707.599976pt;}
.xfd{left:709.679988pt;}
.xeb{left:711.599976pt;}
.x38{left:716.239988pt;}
.xce{left:719.599988pt;}
.xec{left:724.559988pt;}
}




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