
    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_3cb14749a336c366e8b5f40b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_97e0339d03000c7fbf7e744d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f0c14a25102db6fd44ee1b2f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901855;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_7ae532f624fc7bfde1c0d5e7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.044000;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_b645d2eea27b10d6efec6d40.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_2493fb50d7f0864c938ddefb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_c746c177406692de0ef59585.woff')format("woff");}.ff7{font-family:ff7;line-height:0.927000;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_e5c138c445c06b46adac8001.woff')format("woff");}.ff8{font-family:ff8;line-height:0.953613;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_d3f695d914d34170ff1dbac3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.044000;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_1a47347b32202cbeb44b754f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.953613;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_a85f9a5d0d161c973b41b6b3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.044000;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_8ad5e9c1f1eabca8042e1656.woff')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_468a2caef3568deda297ac4b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.996000;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_9f3e408aa32cf38a40d521c8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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_8a91e6a783a072efd23fdb27.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_34b8964d51dc06f257fb2e20.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5af8386ad83a36cae1b7b92d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.740234;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_42015dd8117118a36ff7382f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.893066;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_8a9eedc0bc2930450d038fb4.woff')format("woff");}.ff13{font-family:ff13;line-height:0.925781;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_66fa3956f015b1710844b6e2.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_9274d4a0f335ffd96fb1d474.woff')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_7da9cce013115fc977fc42e2.woff')format("woff");}.ff16{font-family:ff16;line-height:0.730957;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:ff17;src:url('chunks/assets/font_3926037dbc1e04d1e57c4031.woff')format("woff");}.ff17{font-family:ff17;line-height:0.740234;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258931,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.585800px;}
.v4{vertical-align:15.984000px;}
.v1{vertical-align:23.976000px;}
.ls27{letter-spacing:-7.740000px;}
.ls22{letter-spacing:-6.966000px;}
.ls3{letter-spacing:-5.610000px;}
.ls26{letter-spacing:-5.508000px;}
.ls20{letter-spacing:-2.337712px;}
.ls13{letter-spacing:-2.048911px;}
.ls1a{letter-spacing:-2.025850px;}
.ls17{letter-spacing:-2.010968px;}
.ls12{letter-spacing:-1.973026px;}
.ls16{letter-spacing:-1.897140px;}
.ls15{letter-spacing:-1.821254px;}
.ls14{letter-spacing:-1.783312px;}
.ls1b{letter-spacing:-1.772611px;}
.ls18{letter-spacing:-1.631540px;}
.ls11{letter-spacing:-1.593598px;}
.ls1f{letter-spacing:-1.577251px;}
.ls1c{letter-spacing:-1.526715px;}
.ls19{letter-spacing:-1.427591px;}
.ls1e{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-1.020000px;}
.ls28{letter-spacing:-0.960000px;}
.ls23{letter-spacing:-0.840000px;}
.ls2{letter-spacing:-0.816000px;}
.ls21{letter-spacing:-0.788626px;}
.ls10{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.300000px;}
.ls24{letter-spacing:-0.162000px;}
.ls5{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.lsa{letter-spacing:0.480000px;}
.ls1d{letter-spacing:2.181000px;}
.ls25{letter-spacing:9.270000px;}
.lsf{letter-spacing:60.847800px;}
.lsd{letter-spacing:77.854800px;}
.lsc{letter-spacing:77.855400px;}
.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;}
}
.wsd4{word-spacing:-60.000000px;}
.ws6{word-spacing:-54.000000px;}
.ws0{word-spacing:-24.684000px;}
.ws75{word-spacing:-15.480000px;}
.ws24{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.700000px;}
.ws23{word-spacing:-14.640000px;}
.wsd5{word-spacing:-14.400000px;}
.wsba{word-spacing:-14.340000px;}
.wsab{word-spacing:-13.500000px;}
.ws116{word-spacing:-13.338000px;}
.wsad{word-spacing:-13.062000px;}
.ws5{word-spacing:-12.960000px;}
.ws9{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.096000px;}
.ws4{word-spacing:-12.000000px;}
.ws131{word-spacing:-11.520000px;}
.ws114{word-spacing:-11.256000px;}
.ws147{word-spacing:-11.040000px;}
.wsbe{word-spacing:-10.548098px;}
.ws2{word-spacing:-10.494000px;}
.ws129{word-spacing:-7.992000px;}
.wsd6{word-spacing:-7.829926px;}
.ws130{word-spacing:-6.996000px;}
.wsf8{word-spacing:-5.040000px;}
.wse7{word-spacing:-4.680000px;}
.ws11b{word-spacing:-4.560000px;}
.ws132{word-spacing:-4.440000px;}
.ws12a{word-spacing:-4.020000px;}
.wsf0{word-spacing:-3.672000px;}
.ws103{word-spacing:-3.180000px;}
.wsa4{word-spacing:-3.060000px;}
.ws39{word-spacing:-3.000000px;}
.ws70{word-spacing:-2.880000px;}
.ws127{word-spacing:-2.862000px;}
.ws94{word-spacing:-2.820000px;}
.ws122{word-spacing:-2.772000px;}
.ws48{word-spacing:-2.760000px;}
.ws28{word-spacing:-2.700000px;}
.ws10a{word-spacing:-2.646000px;}
.ws11d{word-spacing:-2.640000px;}
.ws176{word-spacing:-2.496000px;}
.wsbf{word-spacing:-2.460000px;}
.wse2{word-spacing:-2.400000px;}
.ws2f{word-spacing:-2.340000px;}
.ws109{word-spacing:-2.322000px;}
.ws34{word-spacing:-2.280000px;}
.wsb8{word-spacing:-2.268000px;}
.ws7f{word-spacing:-2.220000px;}
.ws56{word-spacing:-2.160000px;}
.ws8f{word-spacing:-2.100000px;}
.ws173{word-spacing:-2.064000px;}
.wsb2{word-spacing:-2.040000px;}
.ws152{word-spacing:-2.016000px;}
.ws54{word-spacing:-1.980000px;}
.wsc0{word-spacing:-1.920000px;}
.ws125{word-spacing:-1.890000px;}
.ws15e{word-spacing:-1.872000px;}
.ws19{word-spacing:-1.860000px;}
.ws84{word-spacing:-1.740000px;}
.ws146{word-spacing:-1.728000px;}
.wsb1{word-spacing:-1.620000px;}
.ws14{word-spacing:-1.512000px;}
.ws78{word-spacing:-1.500000px;}
.ws13f{word-spacing:-1.440000px;}
.ws120{word-spacing:-1.404000px;}
.wsc6{word-spacing:-1.380000px;}
.ws108{word-spacing:-1.350000px;}
.ws169{word-spacing:-1.344000px;}
.wse{word-spacing:-1.296000px;}
.ws2e{word-spacing:-1.260000px;}
.wse9{word-spacing:-1.200000px;}
.ws1e{word-spacing:-1.140000px;}
.ws1d{word-spacing:-1.080000px;}
.ws1c{word-spacing:-1.020000px;}
.ws105{word-spacing:-0.972000px;}
.wsfb{word-spacing:-0.900000px;}
.ws121{word-spacing:-0.840000px;}
.ws168{word-spacing:-0.816000px;}
.ws77{word-spacing:-0.780000px;}
.ws128{word-spacing:-0.756000px;}
.ws144{word-spacing:-0.720000px;}
.wsef{word-spacing:-0.702000px;}
.ws170{word-spacing:-0.672000px;}
.ws49{word-spacing:-0.660000px;}
.ws5a{word-spacing:-0.540000px;}
.ws92{word-spacing:-0.480000px;}
.ws123{word-spacing:-0.462000px;}
.ws13{word-spacing:-0.432000px;}
.ws89{word-spacing:-0.420000px;}
.ws15c{word-spacing:-0.384000px;}
.wse8{word-spacing:-0.240000px;}
.ws104{word-spacing:-0.162000px;}
.ws21{word-spacing:-0.151200px;}
.ws35{word-spacing:-0.120000px;}
.ws20{word-spacing:-0.113400px;}
.ws55{word-spacing:-0.060000px;}
.ws7{word-spacing:-0.054000px;}
.ws22{word-spacing:-0.045000px;}
.ws1{word-spacing:-0.041976px;}
.wsb{word-spacing:0.000000px;}
.wsca{word-spacing:0.054000px;}
.ws59{word-spacing:0.060000px;}
.ws96{word-spacing:0.120000px;}
.ws126{word-spacing:0.162000px;}
.ws32{word-spacing:0.180000px;}
.ws1b{word-spacing:0.300000px;}
.ws145{word-spacing:0.336000px;}
.ws30{word-spacing:0.360000px;}
.ws58{word-spacing:0.420000px;}
.ws57{word-spacing:0.480000px;}
.ws8{word-spacing:0.486000px;}
.ws1f{word-spacing:0.540000px;}
.wsb3{word-spacing:0.600000px;}
.ws124{word-spacing:0.648000px;}
.ws76{word-spacing:0.660000px;}
.ws5c{word-spacing:0.720000px;}
.ws65{word-spacing:0.780000px;}
.wsee{word-spacing:0.788626px;}
.ws2d{word-spacing:0.840000px;}
.wsa8{word-spacing:0.900000px;}
.ws15d{word-spacing:0.912000px;}
.wsfd{word-spacing:0.960000px;}
.wsd{word-spacing:1.020000px;}
.wsf{word-spacing:1.080000px;}
.ws165{word-spacing:1.104000px;}
.ws7b{word-spacing:1.200000px;}
.ws5e{word-spacing:1.260000px;}
.ws17{word-spacing:1.320000px;}
.wsd2{word-spacing:1.427591px;}
.wsc2{word-spacing:1.440000px;}
.wsea{word-spacing:1.500000px;}
.wsaa{word-spacing:1.512000px;}
.wsd3{word-spacing:1.526715px;}
.ws151{word-spacing:1.536000px;}
.ws83{word-spacing:1.560000px;}
.wsec{word-spacing:1.577251px;}
.ws15f{word-spacing:1.584000px;}
.ws12e{word-spacing:1.620000px;}
.wsd1{word-spacing:1.631540px;}
.wsb9{word-spacing:1.674000px;}
.ws14d{word-spacing:1.680000px;}
.ws163{word-spacing:1.728000px;}
.wsc9{word-spacing:1.740000px;}
.wscc{word-spacing:1.783312px;}
.ws7a{word-spacing:1.800000px;}
.wscd{word-spacing:1.821254px;}
.ws15b{word-spacing:1.872000px;}
.wsce{word-spacing:1.897140px;}
.ws106{word-spacing:1.920000px;}
.ws10{word-spacing:1.944000px;}
.ws154{word-spacing:1.968000px;}
.wscf{word-spacing:1.973026px;}
.ws73{word-spacing:1.980000px;}
.wsd0{word-spacing:2.010968px;}
.ws74{word-spacing:2.040000px;}
.ws175{word-spacing:2.064000px;}
.wsc3{word-spacing:2.100000px;}
.ws7d{word-spacing:2.160000px;}
.ws6b{word-spacing:2.220000px;}
.ws150{word-spacing:2.256000px;}
.ws44{word-spacing:2.280000px;}
.wsed{word-spacing:2.337712px;}
.ws26{word-spacing:2.340000px;}
.wsde{word-spacing:2.400000px;}
.ws107{word-spacing:2.430000px;}
.ws45{word-spacing:2.460000px;}
.ws171{word-spacing:2.496000px;}
.ws27{word-spacing:2.520000px;}
.ws6f{word-spacing:2.580000px;}
.wsc4{word-spacing:2.640000px;}
.ws61{word-spacing:2.700000px;}
.ws36{word-spacing:2.760000px;}
.wsf1{word-spacing:2.808000px;}
.ws31{word-spacing:2.820000px;}
.ws14f{word-spacing:2.832000px;}
.wse5{word-spacing:2.880000px;}
.ws53{word-spacing:2.940000px;}
.ws81{word-spacing:3.000000px;}
.ws15a{word-spacing:3.024000px;}
.ws60{word-spacing:3.060000px;}
.ws18{word-spacing:3.120000px;}
.ws148{word-spacing:3.216000px;}
.ws37{word-spacing:3.240000px;}
.ws3a{word-spacing:3.300000px;}
.ws177{word-spacing:3.312000px;}
.ws33{word-spacing:3.360000px;}
.ws153{word-spacing:3.456000px;}
.wsf5{word-spacing:3.480000px;}
.wsff{word-spacing:3.540000px;}
.ws17a{word-spacing:3.552000px;}
.wscb{word-spacing:3.564000px;}
.ws16{word-spacing:3.600000px;}
.ws5d{word-spacing:3.660000px;}
.ws16e{word-spacing:3.744000px;}
.ws4a{word-spacing:3.840000px;}
.wsf6{word-spacing:3.900000px;}
.ws12{word-spacing:3.942000px;}
.ws66{word-spacing:4.020000px;}
.ws11f{word-spacing:4.080000px;}
.wseb{word-spacing:4.140000px;}
.ws149{word-spacing:4.176000px;}
.ws11c{word-spacing:4.200000px;}
.ws90{word-spacing:4.260000px;}
.wsf4{word-spacing:4.320000px;}
.ws8a{word-spacing:4.380000px;}
.ws156{word-spacing:4.416000px;}
.ws80{word-spacing:4.440000px;}
.wsf7{word-spacing:4.500000px;}
.ws157{word-spacing:4.560000px;}
.ws67{word-spacing:4.620000px;}
.ws17b{word-spacing:4.752000px;}
.ws3f{word-spacing:4.800000px;}
.ws3e{word-spacing:4.920000px;}
.ws68{word-spacing:4.980000px;}
.ws25{word-spacing:5.040000px;}
.ws179{word-spacing:5.088000px;}
.wsa5{word-spacing:5.160000px;}
.ws178{word-spacing:5.184000px;}
.ws16f{word-spacing:5.232000px;}
.ws5f{word-spacing:5.280000px;}
.ws86{word-spacing:5.400000px;}
.ws50{word-spacing:5.460000px;}
.ws161{word-spacing:5.472000px;}
.ws38{word-spacing:5.520000px;}
.ws71{word-spacing:5.580000px;}
.wsc{word-spacing:5.610000px;}
.wsa3{word-spacing:5.640000px;}
.ws101{word-spacing:5.760000px;}
.ws5b{word-spacing:5.820000px;}
.wse3{word-spacing:5.880000px;}
.ws47{word-spacing:5.940000px;}
.ws93{word-spacing:6.000000px;}
.ws3c{word-spacing:6.060000px;}
.ws133{word-spacing:6.120000px;}
.ws69{word-spacing:6.180000px;}
.ws16c{word-spacing:6.192000px;}
.ws88{word-spacing:6.240000px;}
.ws97{word-spacing:6.360000px;}
.ws14a{word-spacing:6.384000px;}
.wse4{word-spacing:6.420000px;}
.ws143{word-spacing:6.480000px;}
.ws117{word-spacing:6.540000px;}
.ws4c{word-spacing:6.600000px;}
.ws136{word-spacing:6.660000px;}
.wsc1{word-spacing:6.720000px;}
.ws16b{word-spacing:6.768000px;}
.ws62{word-spacing:6.840000px;}
.ws64{word-spacing:6.900000px;}
.ws14e{word-spacing:6.912000px;}
.ws8c{word-spacing:6.960000px;}
.wsf2{word-spacing:6.966000px;}
.ws72{word-spacing:7.020000px;}
.ws7e{word-spacing:7.140000px;}
.ws11{word-spacing:7.236000px;}
.ws102{word-spacing:7.260000px;}
.ws6a{word-spacing:7.320000px;}
.ws141{word-spacing:7.440000px;}
.ws2c{word-spacing:7.500000px;}
.ws7c{word-spacing:7.560000px;}
.ws29{word-spacing:7.680000px;}
.ws13e{word-spacing:7.740000px;}
.ws162{word-spacing:7.776000px;}
.ws4f{word-spacing:7.800000px;}
.ws12c{word-spacing:7.920000px;}
.wsda{word-spacing:7.980000px;}
.ws13c{word-spacing:8.040000px;}
.wsb7{word-spacing:8.100000px;}
.ws13a{word-spacing:8.160000px;}
.wsb4{word-spacing:8.220000px;}
.ws4b{word-spacing:8.280000px;}
.ws12d{word-spacing:8.400000px;}
.ws14b{word-spacing:8.448000px;}
.wsa2{word-spacing:8.460000px;}
.ws42{word-spacing:8.520000px;}
.ws6e{word-spacing:8.580000px;}
.wsd9{word-spacing:8.640000px;}
.ws1a{word-spacing:8.760000px;}
.ws8b{word-spacing:8.820000px;}
.ws17c{word-spacing:8.880000px;}
.ws95{word-spacing:9.000000px;}
.wsa7{word-spacing:9.060000px;}
.ws14c{word-spacing:9.072000px;}
.ws63{word-spacing:9.120000px;}
.ws3b{word-spacing:9.300000px;}
.ws135{word-spacing:9.600000px;}
.wsfa{word-spacing:9.720000px;}
.ws167{word-spacing:9.744000px;}
.wsa6{word-spacing:9.780000px;}
.ws12f{word-spacing:9.828000px;}
.ws139{word-spacing:9.840000px;}
.ws4d{word-spacing:9.900000px;}
.ws79{word-spacing:10.020000px;}
.ws142{word-spacing:10.080000px;}
.ws12b{word-spacing:10.140000px;}
.ws4e{word-spacing:10.200000px;}
.wse1{word-spacing:10.260000px;}
.ws138{word-spacing:10.320000px;}
.ws119{word-spacing:10.380000px;}
.wsc8{word-spacing:10.500000px;}
.ws140{word-spacing:10.620000px;}
.ws8d{word-spacing:10.680000px;}
.ws46{word-spacing:10.740000px;}
.wsdb{word-spacing:10.860000px;}
.ws13d{word-spacing:11.040000px;}
.wsb5{word-spacing:11.160000px;}
.ws6c{word-spacing:11.220000px;}
.ws155{word-spacing:11.376000px;}
.wsa9{word-spacing:11.520000px;}
.ws43{word-spacing:11.580000px;}
.wsf3{word-spacing:11.640000px;}
.wse6{word-spacing:11.940000px;}
.ws87{word-spacing:12.060000px;}
.ws85{word-spacing:12.180000px;}
.ws164{word-spacing:12.240000px;}
.ws51{word-spacing:12.360000px;}
.ws137{word-spacing:12.720000px;}
.ws91{word-spacing:12.900000px;}
.ws100{word-spacing:12.960000px;}
.ws166{word-spacing:13.344000px;}
.ws52{word-spacing:13.500000px;}
.wsfe{word-spacing:13.620000px;}
.ws15{word-spacing:13.920000px;}
.ws40{word-spacing:14.280000px;}
.ws82{word-spacing:14.340000px;}
.ws11e{word-spacing:14.460000px;}
.ws6d{word-spacing:14.580000px;}
.wsdc{word-spacing:14.820000px;}
.ws134{word-spacing:14.940000px;}
.ws17d{word-spacing:15.120000px;}
.ws158{word-spacing:15.264000px;}
.ws160{word-spacing:15.456000px;}
.wsf9{word-spacing:17.100000px;}
.ws3d{word-spacing:17.580000px;}
.ws13b{word-spacing:17.760000px;}
.ws16d{word-spacing:17.856000px;}
.wsdf{word-spacing:18.120000px;}
.wsc7{word-spacing:18.600000px;}
.ws8e{word-spacing:18.660000px;}
.ws174{word-spacing:19.248000px;}
.ws118{word-spacing:19.500000px;}
.ws172{word-spacing:19.776000px;}
.ws2b{word-spacing:20.640000px;}
.ws2a{word-spacing:21.720000px;}
.ws16a{word-spacing:22.656000px;}
.wsdd{word-spacing:22.980000px;}
.ws11a{word-spacing:23.220000px;}
.wse0{word-spacing:23.640000px;}
.wsfc{word-spacing:27.180000px;}
.ws41{word-spacing:27.840000px;}
.ws159{word-spacing:30.288000px;}
.wsb6{word-spacing:34.680000px;}
.wsc5{word-spacing:41.220000px;}
.ws9e{word-spacing:41.566800px;}
.ws9b{word-spacing:41.567400px;}
.wsac{word-spacing:53.343600px;}
.wsbd{word-spacing:73.310400px;}
.wsbc{word-spacing:73.311000px;}
.wsae{word-spacing:82.958400px;}
.wsd8{word-spacing:98.683540px;}
.ws111{word-spacing:100.066800px;}
.ws10b{word-spacing:128.932800px;}
.ws113{word-spacing:129.341400px;}
.wsbb{word-spacing:130.893000px;}
.ws115{word-spacing:143.306400px;}
.ws9a{word-spacing:153.379200px;}
.ws99{word-spacing:157.810200px;}
.ws9c{word-spacing:158.461200px;}
.wsa1{word-spacing:162.241200px;}
.wsa0{word-spacing:162.241800px;}
.ws9d{word-spacing:162.892200px;}
.wsb0{word-spacing:168.174000px;}
.ws10c{word-spacing:168.675600px;}
.ws112{word-spacing:169.701600px;}
.ws98{word-spacing:170.578200px;}
.ws9f{word-spacing:170.578800px;}
.ws10f{word-spacing:187.680000px;}
.ws10e{word-spacing:204.687600px;}
.ws10d{word-spacing:213.759600px;}
.ws110{word-spacing:245.670000px;}
.wsaf{word-spacing:301.059600px;}
.wsd7{word-spacing:2587.453607px;}
._c{margin-left:-2823.732000px;}
._7f{margin-left:-2822.688000px;}
._6e{margin-left:-537.647806px;}
._84{margin-left:-9.294000px;}
._b{margin-left:-7.774200px;}
._8{margin-left:-6.130200px;}
._71{margin-left:-5.093400px;}
._3{margin-left:-4.049400px;}
._2{margin-left:-2.703000px;}
._1{margin-left:-1.387200px;}
._4{width:1.030200px;}
._0{width:2.101200px;}
._5{width:3.322800px;}
._6{width:5.266200px;}
._e{width:6.374400px;}
._7{width:7.617600px;}
._10{width:8.618400px;}
._f{width:9.792000px;}
._11{width:11.334000px;}
._56{width:12.702000px;}
._55{width:13.872000px;}
._83{width:15.017400px;}
._6d{width:16.110000px;}
._12{width:17.232000px;}
._d{width:19.224000px;}
._6c{width:20.757600px;}
._80{width:22.014000px;}
._13{width:23.298000px;}
._70{width:26.461800px;}
._a{width:27.648000px;}
._82{width:30.446400px;}
._9{width:31.823400px;}
._81{width:33.108000px;}
._73{width:52.051800px;}
._72{width:55.617000px;}
._57{width:62.771400px;}
._74{width:79.770600px;}
._6b{width:81.154200px;}
._7d{width:88.836600px;}
._75{width:92.957400px;}
._67{width:123.289800px;}
._6f{width:125.802187px;}
._66{width:139.452000px;}
._51{width:159.040800px;}
._7e{width:163.672800px;}
._65{width:167.254200px;}
._41{width:174.250800px;}
._4e{width:176.408400px;}
._50{width:184.926600px;}
._47{width:186.046800px;}
._44{width:190.981800px;}
._26{width:193.382400px;}
._53{width:195.282000px;}
._3f{width:196.892400px;}
._7a{width:199.156200px;}
._69{width:202.039800px;}
._4a{width:203.041800px;}
._29{width:205.477800px;}
._77{width:208.950000px;}
._18{width:210.165000px;}
._46{width:211.932600px;}
._37{width:214.403400px;}
._43{width:216.867600px;}
._40{width:218.254200px;}
._68{width:221.695800px;}
._6a{width:225.181800px;}
._3c{width:227.238000px;}
._49{width:229.530600px;}
._34{width:234.276000px;}
._28{width:237.775800px;}
._3a{width:240.757800px;}
._31{width:242.059800px;}
._21{width:243.740400px;}
._1e{width:248.129400px;}
._16{width:249.589800px;}
._79{width:251.209200px;}
._3e{width:252.861000px;}
._1b{width:255.332400px;}
._27{width:257.565000px;}
._17{width:258.583800px;}
._2c{width:263.143800px;}
._39{width:264.957000px;}
._33{width:266.259600px;}
._1a{width:267.435000px;}
._22{width:268.610400px;}
._25{width:270.367800px;}
._2b{width:275.247000px;}
._14{width:277.805400px;}
._20{width:280.707000px;}
._4d{width:283.347600px;}
._54{width:285.402600px;}
._30{width:290.451600px;}
._24{width:294.567600px;}
._7c{width:300.983400px;}
._1d{width:309.373200px;}
._58{width:314.704800px;}
._2e{width:317.185200px;}
._7b{width:318.475200px;}
._63{width:319.707000px;}
._36{width:324.368400px;}
._4c{width:326.403000px;}
._59{width:328.107000px;}
._62{width:333.357000px;}
._5b{width:337.809000px;}
._5a{width:349.023000px;}
._5f{width:352.719000px;}
._5d{width:358.053000px;}
._64{width:363.219000px;}
._61{width:365.697000px;}
._5e{width:370.737000px;}
._60{width:372.165000px;}
._5c{width:374.433000px;}
._15{width:382.375200px;}
._3d{width:392.293200px;}
._38{width:404.389200px;}
._3b{width:416.484600px;}
._4b{width:433.221000px;}
._76{width:442.712400px;}
._48{width:452.982600px;}
._78{width:460.814400px;}
._23{width:467.766600px;}
._42{width:481.458600px;}
._32{width:483.138600px;}
._19{width:490.699200px;}
._2a{width:494.185200px;}
._1f{width:502.794600px;}
._2f{width:507.330600px;}
._4f{width:524.802600px;}
._1c{width:532.635000px;}
._2d{width:536.121000px;}
._52{width:537.380400px;}
._45{width:550.170600px;}
._35{width:566.905800px;}
.fcf{color:rgb(18,16,14);}
.fce{color:rgb(234,131,53);}
.fcd{color:rgb(114,82,157);}
.fc0{color:rgb(35,31,32);}
.fc1{color:rgb(110,20,23);}
.fc2{color:rgb(14,15,15);}
.fca{color:rgb(255,255,255);}
.fc4{color:rgb(16,15,13);}
.fc7{color:rgb(54,112,175);}
.fc3{color:rgb(238,36,41);}
.fcc{color:rgb(38,67,121);}
.fc6{color:rgb(39,56,119);}
.fc8{color:rgb(70,157,88);}
.fc9{color:rgb(231,29,37);}
.fc5{color:rgb(228,109,109);}
.fcb{color:rgb(84,164,185);}
.fs16{font-size:23.470800px;}
.fs1c{font-size:27.984000px;}
.fs15{font-size:28.165200px;}
.fsa{font-size:28.457400px;}
.fsd{font-size:30.828600px;}
.fs19{font-size:31.945800px;}
.fs1b{font-size:32.579400px;}
.fs14{font-size:32.859000px;}
.fsc{font-size:33.199800px;}
.fs18{font-size:33.325200px;}
.fs13{font-size:33.861000px;}
.fs11{font-size:35.505000px;}
.fs10{font-size:36.929400px;}
.fs17{font-size:37.552800px;}
.fs9{font-size:37.800000px;}
.fsb{font-size:37.942800px;}
.fs12{font-size:38.698200px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fsf{font-size:42.205200px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs1a{font-size:54.764400px;}
.fse{font-size:56.914200px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf2{bottom:2.198250px;}
.y1a2{bottom:5.679300px;}
.y26{bottom:64.631700px;}
.y27{bottom:76.648200px;}
.y25{bottom:77.231700px;}
.ye9{bottom:112.523250px;}
.yad{bottom:113.811000px;}
.y149{bottom:113.811150px;}
.ye8{bottom:130.523250px;}
.y5b{bottom:131.811000px;}
.y69{bottom:131.811150px;}
.yd{bottom:132.590700px;}
.ye7{bottom:148.523250px;}
.y5a{bottom:149.811000px;}
.y68{bottom:149.811150px;}
.ye6{bottom:166.523250px;}
.y22{bottom:167.811000px;}
.y67{bottom:167.811150px;}
.y21{bottom:185.811000px;}
.y66{bottom:185.811150px;}
.yf1{bottom:186.513000px;}
.y10c{bottom:194.207912px;}
.y121{bottom:195.502928px;}
.y74{bottom:199.247250px;}
.yf4{bottom:200.240375px;}
.y11c{bottom:201.329917px;}
.y20{bottom:203.811000px;}
.y65{bottom:203.811150px;}
.yf3{bottom:211.765500px;}
.y12d{bottom:212.700502px;}
.yfd{bottom:216.045150px;}
.y136{bottom:220.077889px;}
.y73{bottom:220.847250px;}
.y1b7{bottom:221.186850px;}
.y23{bottom:221.811000px;}
.y64{bottom:221.811150px;}
.yf5{bottom:223.290625px;}
.yf7{bottom:228.117431px;}
.y122{bottom:229.604019px;}
.yec{bottom:234.828399px;}
.yf8{bottom:236.243082px;}
.y137{bottom:237.719470px;}
.y1b6{bottom:239.186850px;}
.y1f{bottom:239.811000px;}
.y63{bottom:239.811150px;}
.y72{bottom:242.447250px;}
.yfc{bottom:245.049329px;}
.yef{bottom:246.353524px;}
.y129{bottom:246.526508px;}
.y133{bottom:253.151621px;}
.yfb{bottom:253.515278px;}
.y13a{bottom:255.013976px;}
.y1b5{bottom:257.186850px;}
.y59{bottom:257.811000px;}
.y6e{bottom:257.811150px;}
.yeb{bottom:257.878650px;}
.y125{bottom:263.439511px;}
.yf9{bottom:264.272013px;}
.yf0{bottom:269.403775px;}
.y62{bottom:274.847250px;}
.y1b4{bottom:275.186850px;}
.y58{bottom:275.811000px;}
.y6d{bottom:275.811150px;}
.yfa{bottom:278.962925px;}
.y120{bottom:280.362000px;}
.yed{bottom:280.938387px;}
.yf6{bottom:291.379650px;}
.yee{bottom:292.463512px;}
.yac{bottom:293.661300px;}
.y57{bottom:293.811000px;}
.y6c{bottom:293.811150px;}
.y61{bottom:296.447250px;}
.y126{bottom:297.265517px;}
.y134{bottom:301.031075px;}
.y11e{bottom:301.946336px;}
.y132{bottom:304.662667px;}
.y110{bottom:304.903319px;}
.y1cf{bottom:308.416200px;}
.y1e{bottom:311.811000px;}
.y6b{bottom:311.811150px;}
.y130{bottom:313.500389px;}
.y127{bottom:314.188006px;}
.y1ce{bottom:326.416200px;}
.y56{bottom:329.811000px;}
.y6a{bottom:329.811150px;}
.y124{bottom:331.110495px;}
.y10a{bottom:336.910950px;}
.yd7{bottom:337.269750px;}
.y138{bottom:338.616785px;}
.y11b{bottom:338.965050px;}
.y10b{bottom:345.615600px;}
.y1d2{bottom:346.847250px;}
.y1d{bottom:347.811000px;}
.y60{bottom:347.811150px;}
.y123{bottom:348.023498px;}
.yd6{bottom:350.769750px;}
.y176{bottom:351.253200px;}
.y13e{bottom:354.583800px;}
.yab{bottom:354.723900px;}
.yd5{bottom:364.891500px;}
.y12c{bottom:364.945987px;}
.y55{bottom:365.811000px;}
.y5f{bottom:365.811150px;}
.y11f{bottom:367.578000px;}
.yaa{bottom:370.546350px;}
.y1cd{bottom:370.894200px;}
.yff{bottom:371.277878px;}
.y1da{bottom:377.291400px;}
.y135{bottom:378.208759px;}
.yd4{bottom:378.391500px;}
.y128{bottom:381.858990px;}
.y54{bottom:383.811000px;}
.y5e{bottom:383.811150px;}
.y11a{bottom:384.264750px;}
.ya9{bottom:386.368950px;}
.y11d{bottom:387.643500px;}
.y1cc{bottom:388.894200px;}
.y10f{bottom:388.927650px;}
.yea{bottom:391.360500px;}
.yd3{bottom:392.513250px;}
.y12a{bottom:398.771993px;}
.y1d9{bottom:398.891400px;}
.y131{bottom:401.174983px;}
.y148{bottom:401.811000px;}
.y53{bottom:401.811150px;}
.ya8{bottom:402.191400px;}
.y10d{bottom:404.745000px;}
.yd2{bottom:406.013250px;}
.y1cb{bottom:406.894200px;}
.y12b{bottom:415.694482px;}
.y78{bottom:416.891400px;}
.yfe{bottom:417.392400px;}
.ya7{bottom:418.014000px;}
.y1c{bottom:419.811000px;}
.y52{bottom:419.811150px;}
.yd1{bottom:420.135000px;}
.y1d8{bottom:420.491400px;}
.y12f{bottom:422.744440px;}
.y142{bottom:424.874317px;}
.y147{bottom:427.691400px;}
.y109{bottom:428.196450px;}
.yd0{bottom:433.635000px;}
.ya6{bottom:433.836600px;}
.y1b{bottom:437.811000px;}
.y51{bottom:437.811150px;}
.y77{bottom:438.491400px;}
.y13b{bottom:441.214950px;}
.y139{bottom:441.317198px;}
.y146{bottom:445.691400px;}
.ycf{bottom:447.756750px;}
.ya5{bottom:449.659050px;}
.y1d7{bottom:454.847250px;}
.y1a{bottom:455.811000px;}
.y50{bottom:455.811150px;}
.yce{bottom:461.256750px;}
.y12e{bottom:461.523750px;}
.y102{bottom:462.054431px;}
.y145{bottom:463.691400px;}
.ya4{bottom:465.481650px;}
.y13d{bottom:468.884160px;}
.y76{bottom:472.847250px;}
.y19{bottom:473.811000px;}
.y4f{bottom:473.811150px;}
.ycd{bottom:475.378500px;}
.y141{bottom:478.654050px;}
.y13c{bottom:480.267000px;}
.ya3{bottom:481.304100px;}
.ycc{bottom:488.878500px;}
.y18{bottom:491.811000px;}
.y4e{bottom:491.811150px;}
.y140{bottom:492.068273px;}
.y144{bottom:494.447250px;}
.ya2{bottom:497.126700px;}
.y112{bottom:502.402490px;}
.ycb{bottom:503.000250px;}
.y17{bottom:509.811000px;}
.y4d{bottom:509.811150px;}
.y108{bottom:510.098550px;}
.ya1{bottom:512.949300px;}
.y114{bottom:513.949350px;}
.yca{bottom:516.500250px;}
.y16{bottom:527.811000px;}
.y4c{bottom:527.811150px;}
.ya0{bottom:528.771750px;}
.yc9{bottom:530.622000px;}
.y117{bottom:537.361350px;}
.yc8{bottom:544.122000px;}
.y9f{bottom:544.594350px;}
.y15{bottom:545.811000px;}
.y4b{bottom:545.811150px;}
.y100{bottom:553.561380px;}
.y118{bottom:554.884350px;}
.y107{bottom:558.092910px;}
.yc7{bottom:558.243750px;}
.y9e{bottom:560.416950px;}
.y116{bottom:561.437231px;}
.y14{bottom:563.811000px;}
.y4a{bottom:563.811150px;}
.y106{bottom:569.475750px;}
.yc6{bottom:571.743750px;}
.y9d{bottom:576.239400px;}
.y13{bottom:581.811000px;}
.y49{bottom:581.811150px;}
.yc5{bottom:585.865500px;}
.y9c{bottom:592.061850px;}
.yc4{bottom:599.365500px;}
.y12{bottom:599.811000px;}
.y48{bottom:599.811150px;}
.y103{bottom:601.734289px;}
.y105{bottom:603.125100px;}
.y9b{bottom:607.884450px;}
.yc3{bottom:613.487400px;}
.y11{bottom:617.811000px;}
.y47{bottom:617.811150px;}
.y9a{bottom:623.707050px;}
.yc2{bottom:626.987400px;}
.y10{bottom:635.811000px;}
.y46{bottom:635.811150px;}
.y99{bottom:639.529500px;}
.y101{bottom:640.744054px;}
.yc1{bottom:641.109150px;}
.y6f{bottom:652.647600px;}
.y143{bottom:653.811000px;}
.y45{bottom:653.811150px;}
.yc0{bottom:654.609150px;}
.y98{bottom:655.352100px;}
.y75{bottom:656.447250px;}
.y113{bottom:662.043659px;}
.ybf{bottom:668.730900px;}
.y97{bottom:671.174700px;}
.yf{bottom:671.811000px;}
.y44{bottom:671.811150px;}
.y111{bottom:672.521100px;}
.y115{bottom:672.785100px;}
.y13f{bottom:678.427050px;}
.y104{bottom:680.645700px;}
.ybe{bottom:682.230900px;}
.y1b0{bottom:683.844900px;}
.y96{bottom:686.997300px;}
.y1b1{bottom:689.811000px;}
.y43{bottom:689.811150px;}
.ybd{bottom:696.352500px;}
.y10e{bottom:697.835550px;}
.y119{bottom:698.693100px;}
.y1af{bottom:701.844900px;}
.y95{bottom:702.819750px;}
.y71{bottom:706.847250px;}
.y42{bottom:707.811150px;}
.ybc{bottom:709.852500px;}
.y94{bottom:718.642200px;}
.y1ae{bottom:719.844900px;}
.yba{bottom:723.974700px;}
.yb8{bottom:723.974850px;}
.yb5{bottom:723.975000px;}
.y41{bottom:725.811150px;}
.y1b3{bottom:726.789300px;}
.ye{bottom:727.275750px;}
.y70{bottom:728.447250px;}
.y93{bottom:734.464800px;}
.ybb{bottom:737.474550px;}
.yb9{bottom:737.474700px;}
.yb7{bottom:737.474850px;}
.yb6{bottom:737.475000px;}
.yb4{bottom:737.475150px;}
.y1ad{bottom:737.844900px;}
.y40{bottom:743.811150px;}
.y1b2{bottom:744.789300px;}
.y92{bottom:750.287400px;}
.yb3{bottom:751.596900px;}
.y1d6{bottom:755.291400px;}
.y1ac{bottom:755.844900px;}
.y3f{bottom:761.811150px;}
.yb2{bottom:765.096900px;}
.y91{bottom:766.109850px;}
.y1ab{bottom:773.844900px;}
.y1d5{bottom:776.891400px;}
.y1d1{bottom:778.847400px;}
.yb1{bottom:779.218650px;}
.y3e{bottom:779.811000px;}
.y90{bottom:781.932450px;}
.y1aa{bottom:791.844900px;}
.yb0{bottom:793.340400px;}
.yc{bottom:793.843500px;}
.y8f{bottom:797.755050px;}
.y3d{bottom:797.811000px;}
.y1d4{bottom:798.491400px;}
.y1ca{bottom:809.790000px;}
.y175{bottom:811.834500px;}
.y8e{bottom:813.577650px;}
.y3c{bottom:815.811000px;}
.y156{bottom:816.371673px;}
.y14a{bottom:819.852900px;}
.y19b{bottom:820.774950px;}
.yb{bottom:820.842750px;}
.yaf{bottom:821.065500px;}
.y1c9{bottom:823.290000px;}
.y162{bottom:824.060773px;}
.y181{bottom:828.203425px;}
.y8d{bottom:829.400100px;}
.y169{bottom:831.756913px;}
.y1d3{bottom:832.847250px;}
.y19f{bottom:833.711100px;}
.y3b{bottom:833.811000px;}
.y1c8{bottom:836.790000px;}
.y1a9{bottom:836.814300px;}
.yae{bottom:839.065500px;}
.y159{bottom:839.488261px;}
.y17d{bottom:843.606138px;}
.y8c{bottom:845.222700px;}
.y170{bottom:847.170319px;}
.ya{bottom:847.842000px;}
.y1c7{bottom:850.290000px;}
.y3a{bottom:851.811000px;}
.y16b{bottom:854.873501px;}
.y8b{bottom:861.045300px;}
.y14e{bottom:862.590766px;}
.y1c6{bottom:863.790000px;}
.y9{bottom:865.842000px;}
.y39{bottom:869.811000px;}
.y171{bottom:870.286907px;}
.y8a{bottom:876.867750px;}
.y1c5{bottom:877.290000px;}
.y150{bottom:878.004172px;}
.yd9{bottom:878.651850px;}
.y8{bottom:883.842000px;}
.y15d{bottom:885.707354px;}
.y38{bottom:887.811000px;}
.y188{bottom:887.919008px;}
.y1c4{bottom:890.790000px;}
.y1a0{bottom:892.136400px;}
.y89{bottom:892.690200px;}
.y158{bottom:893.424619px;}
.y194{bottom:893.884244px;}
.yd8{bottom:896.651850px;}
.y192{bottom:897.536168px;}
.y153{bottom:901.127801px;}
.y7{bottom:901.842000px;}
.y37{bottom:905.811000px;}
.y1c3{bottom:906.612600px;}
.y88{bottom:908.512800px;}
.y15f{bottom:908.823942px;}
.y18c{bottom:912.950616px;}
.y179{bottom:916.522844px;}
.y6{bottom:919.842000px;}
.y1c2{bottom:920.112600px;}
.y36{bottom:923.811000px;}
.y15e{bottom:924.237348px;}
.y87{bottom:924.335400px;}
.y184{bottom:928.365064px;}
.y14f{bottom:931.940530px;}
.y1c1{bottom:935.935050px;}
.y173{bottom:939.636671px;}
.y86{bottom:940.157850px;}
.y35{bottom:941.811000px;}
.y18b{bottom:945.551557px;}
.y168{bottom:947.332812px;}
.y18e{bottom:947.740210px;}
.y1c0{bottom:949.435050px;}
.y19a{bottom:949.767150px;}
.y172{bottom:955.043035px;}
.y5{bottom:955.840650px;}
.y85{bottom:955.980450px;}
.y34{bottom:959.811000px;}
.y186{bottom:959.857010px;}
.y14b{bottom:962.760300px;}
.y1bf{bottom:965.257650px;}
.y197{bottom:965.539050px;}
.y191{bottom:966.481643px;}
.y163{bottom:970.456441px;}
.y84{bottom:971.803050px;}
.y4{bottom:977.440650px;}
.y33{bottom:977.811000px;}
.y16e{bottom:978.159623px;}
.y1be{bottom:978.757650px;}
.y160{bottom:985.869847px;}
.y83{bottom:987.625650px;}
.y196{bottom:988.168050px;}
.y16d{bottom:993.565987px;}
.y1bd{bottom:994.580100px;}
.y32{bottom:995.811000px;}
.y161{bottom:1001.276211px;}
.y17c{bottom:1001.517680px;}
.y82{bottom:1003.448100px;}
.ye5{bottom:1005.757500px;}
.y1a1{bottom:1006.749944px;}
.y1bc{bottom:1008.080100px;}
.y15b{bottom:1008.993476px;}
.y195{bottom:1009.501500px;}
.y31{bottom:1013.811000px;}
.y199{bottom:1015.244700px;}
.y164{bottom:1016.682575px;}
.y3{bottom:1017.039300px;}
.y17b{bottom:1018.897807px;}
.y19e{bottom:1019.148956px;}
.y81{bottom:1019.270550px;}
.ye4{bottom:1021.580100px;}
.y1bb{bottom:1023.902700px;}
.y14c{bottom:1024.399840px;}
.y185{bottom:1029.283637px;}
.y1d0{bottom:1030.847250px;}
.y30{bottom:1031.811000px;}
.y16a{bottom:1032.088940px;}
.y18f{bottom:1033.197392px;}
.y80{bottom:1035.093150px;}
.y18d{bottom:1035.697033px;}
.ye3{bottom:1037.402550px;}
.y1ba{bottom:1039.725150px;}
.y14d{bottom:1039.806205px;}
.y189{bottom:1045.449150px;}
.y15a{bottom:1047.523469px;}
.y2{bottom:1047.639150px;}
.y2f{bottom:1049.811000px;}
.y7f{bottom:1050.915750px;}
.y182{bottom:1050.964788px;}
.ye2{bottom:1053.225150px;}
.y152{bottom:1055.226652px;}
.y18a{bottom:1055.482917px;}
.y187{bottom:1058.850977px;}
.y16f{bottom:1062.915751px;}
.y183{bottom:1066.432045px;}
.y7e{bottom:1066.738200px;}
.y2e{bottom:1067.811000px;}
.ye1{bottom:1069.047750px;}
.y154{bottom:1070.640057px;}
.y198{bottom:1071.970650px;}
.y19d{bottom:1075.393663px;}
.y1{bottom:1078.239300px;}
.y178{bottom:1078.331918px;}
.y17f{bottom:1081.846493px;}
.y7d{bottom:1082.560800px;}
.y1a4{bottom:1082.625150px;}
.ye0{bottom:1084.870200px;}
.y1b9{bottom:1084.870350px;}
.y2d{bottom:1085.811000px;}
.y177{bottom:1086.035100px;}
.y155{bottom:1093.756645px;}
.y190{bottom:1096.404257px;}
.ydf{bottom:1098.370200px;}
.y7c{bottom:1098.383400px;}
.y1b8{bottom:1100.692800px;}
.y1a5{bottom:1101.116100px;}
.y157{bottom:1101.459827px;}
.y2c{bottom:1103.811000px;}
.y166{bottom:1109.141886px;}
.yde{bottom:1114.192800px;}
.y7b{bottom:1114.205850px;}
.y180{bottom:1114.770158px;}
.y165{bottom:1116.852109px;}
.y1a3{bottom:1117.823400px;}
.y5d{bottom:1120.374900px;}
.y19c{bottom:1120.992150px;}
.y193{bottom:1121.623200px;}
.y2b{bottom:1121.811000px;}
.y16c{bottom:1124.548250px;}
.y15c{bottom:1132.272556px;}
.ydb{bottom:1135.210950px;}
.y17a{bottom:1136.398500px;}
.y2a{bottom:1139.811000px;}
.y167{bottom:1139.961656px;}
.y1a7{bottom:1140.514950px;}
.y1a6{bottom:1140.569163px;}
.ydd{bottom:1141.917900px;}
.y7a{bottom:1141.930950px;}
.y174{bottom:1147.671879px;}
.y1a8{bottom:1152.739800px;}
.y5c{bottom:1154.730900px;}
.y151{bottom:1155.389144px;}
.yda{bottom:1156.810950px;}
.y29{bottom:1157.811000px;}
.y17e{bottom:1159.834094px;}
.ydc{bottom:1159.917900px;}
.y79{bottom:1159.930950px;}
.y28{bottom:1193.653500px;}
.y24{bottom:1193.816550px;}
.h28{height:17.098845px;}
.h26{height:20.518788px;}
.h12{height:20.731661px;}
.h16{height:22.459117px;}
.h2d{height:23.273014px;}
.h2f{height:23.718694px;}
.h25{height:23.938295px;}
.h18{height:24.170362px;}
.h15{height:24.186573px;}
.h30{height:24.261657px;}
.h2c{height:24.277929px;}
.h21{height:24.668268px;}
.h1e{height:25.848611px;}
.h1f{height:25.865947px;}
.h1c{height:26.885613px;}
.h1d{height:26.903645px;}
.h2b{height:26.991075px;}
.h29{height:27.339465px;}
.h2a{height:27.357802px;}
.h13{height:27.623396px;}
.h17{height:27.641923px;}
.h20{height:28.173348px;}
.hd{height:30.013200px;}
.h1a{height:30.726540px;}
.h1b{height:30.747148px;}
.h31{height:32.676000px;}
.h11{height:33.180000px;}
.h5{height:33.328125px;}
.h4{height:33.348000px;}
.h23{height:33.351562px;}
.h32{height:35.414297px;}
.h6{height:35.730000px;}
.h7{height:37.494141px;}
.h8{height:37.520508px;}
.h9{height:39.258000px;}
.h2e{height:39.869981px;}
.h22{height:40.664062px;}
.h19{height:41.435094px;}
.hb{height:41.660156px;}
.hc{height:41.689453px;}
.h33{height:48.796875px;}
.h24{height:49.453125px;}
.he{height:49.992188px;}
.hf{height:50.027344px;}
.h3{height:55.642465px;}
.ha{height:58.324219px;}
.h10{height:58.365234px;}
.h2{height:70.822266px;}
.h27{height:357.457500px;}
.h14{height:550.747500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:679.165500px;}
.w2{width:705.826500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa4{left:3.341100px;}
.x1{left:76.535400px;}
.x13{left:79.086600px;}
.x12{left:84.314400px;}
.x4f{left:87.021784px;}
.x50{left:91.503300px;}
.x10{left:93.543300px;}
.x38{left:99.800400px;}
.xa7{left:104.822100px;}
.x9{left:110.551200px;}
.x20{left:113.102400px;}
.x14{left:117.056400px;}
.x8c{left:123.882000px;}
.xb{left:127.558950px;}
.xa1{left:137.650800px;}
.x48{left:145.564309px;}
.x51{left:149.450400px;}
.x40{left:155.127283px;}
.x43{left:164.722025px;}
.x73{left:173.245200px;}
.x42{left:175.843958px;}
.x47{left:183.071783px;}
.xa6{left:187.681050px;}
.x44{left:189.052050px;}
.x49{left:192.226628px;}
.x3f{left:193.838250px;}
.x71{left:197.916450px;}
.x46{left:199.098987px;}
.x21{left:202.573950px;}
.x15{left:206.511300px;}
.x25{left:208.621800px;}
.x2c{left:211.645800px;}
.x45{left:213.491100px;}
.x41{left:216.123616px;}
.x16{left:220.413000px;}
.x3c{left:228.485550px;}
.xa5{left:229.754550px;}
.x4c{left:237.644850px;}
.x4b{left:238.824150px;}
.x4a{left:244.755150px;}
.x93{left:246.310844px;}
.xa2{left:252.859500px;}
.xa3{left:254.496722px;}
.x3e{left:258.196164px;}
.x3a{left:262.450723px;}
.x4e{left:264.960900px;}
.x39{left:267.013345px;}
.x4d{left:270.430950px;}
.x3d{left:275.905966px;}
.x3b{left:277.978814px;}
.x2{left:281.270100px;}
.x18{left:286.715850px;}
.xab{left:287.785200px;}
.x27{left:289.409250px;}
.x26{left:292.979100px;}
.x92{left:293.991774px;}
.x32{left:296.003100px;}
.x2d{left:299.026950px;}
.x17{left:301.200300px;}
.x8d{left:303.733200px;}
.xac{left:311.005800px;}
.xb3{left:314.533650px;}
.x91{left:319.228752px;}
.x97{left:321.605170px;}
.x95{left:323.811425px;}
.x7d{left:326.143829px;}
.x83{left:329.622231px;}
.x9a{left:331.239934px;}
.x3{left:332.949600px;}
.x9b{left:338.721251px;}
.x76{left:339.951818px;}
.x7f{left:341.705102px;}
.x89{left:344.500498px;}
.x87{left:349.422367px;}
.x99{left:350.832184px;}
.x98{left:356.506250px;}
.x23{left:364.148700px;}
.x96{left:365.548376px;}
.x1a{left:367.503300px;}
.x90{left:369.567750px;}
.x22{left:370.742550px;}
.x28{left:373.766550px;}
.x94{left:375.065785px;}
.x33{left:376.790400px;}
.x2e{left:379.814400px;}
.x19{left:381.987750px;}
.xb4{left:382.987950px;}
.x58{left:386.324550px;}
.xad{left:387.555450px;}
.x82{left:388.846605px;}
.xae{left:391.225200px;}
.x75{left:392.881270px;}
.x8e{left:395.676298px;}
.x52{left:397.258200px;}
.x8b{left:398.788921px;}
.x7c{left:401.760349px;}
.x84{left:403.231981px;}
.x86{left:404.788108px;}
.x7b{left:406.006253px;}
.x81{left:407.111737px;}
.x88{left:410.484520px;}
.x80{left:411.491426px;}
.x85{left:412.984182px;}
.x53{left:414.066421px;}
.x78{left:417.342746px;}
.x79{left:419.659334px;}
.x7a{left:421.975922px;}
.x59{left:423.961050px;}
.x74{left:425.595150px;}
.x7e{left:426.968203px;}
.x8a{left:430.876125px;}
.x8f{left:436.255310px;}
.x5a{left:437.785050px;}
.x8{left:440.078700px;}
.x5b{left:441.175777px;}
.x36{left:442.629900px;}
.x9c{left:444.156117px;}
.x35{left:445.731750px;}
.x1c{left:448.290600px;}
.x5d{left:449.418000px;}
.x29{left:450.984000px;}
.x77{left:452.028190px;}
.x30{left:454.008000px;}
.x4{left:455.471400px;}
.x11{left:457.086600px;}
.x2f{left:460.601700px;}
.x1b{left:462.775200px;}
.x37{left:463.889850px;}
.xc{left:474.094350px;}
.xa8{left:482.911800px;}
.xd{left:491.102250px;}
.x5c{left:504.023250px;}
.x5{left:510.565350px;}
.x6a{left:512.998424px;}
.x1e{left:529.078050px;}
.x2b{left:531.771450px;}
.x2a{left:535.341300px;}
.x34{left:538.365300px;}
.x31{left:541.389150px;}
.x1d{left:543.562500px;}
.x6b{left:544.700786px;}
.xb5{left:546.085200px;}
.xb6{left:548.442300px;}
.xaf{left:561.871950px;}
.x6e{left:564.898872px;}
.x6c{left:575.768253px;}
.x68{left:577.435907px;}
.x69{left:582.134121px;}
.x67{left:588.533850px;}
.x57{left:590.955000px;}
.x9e{left:594.834600px;}
.x6d{left:608.257883px;}
.x1f{left:611.561700px;}
.x72{left:620.356589px;}
.x24{left:622.061550px;}
.x66{left:626.763337px;}
.x64{left:629.039905px;}
.xb7{left:630.221850px;}
.xb0{left:632.043750px;}
.x70{left:633.382500px;}
.x65{left:634.570068px;}
.x6{left:635.835900px;}
.x6f{left:637.290000px;}
.xa{left:641.647800px;}
.x9f{left:645.728032px;}
.xa9{left:648.738450px;}
.x60{left:650.894958px;}
.x61{left:652.327298px;}
.x62{left:653.835525px;}
.x63{left:659.242374px;}
.x5f{left:660.466029px;}
.x54{left:664.138050px;}
.x5e{left:684.464850px;}
.x7{left:692.520750px;}
.xa0{left:697.006381px;}
.x9d{left:701.610600px;}
.xb9{left:706.137600px;}
.x55{left:707.774400px;}
.xe{left:709.530750px;}
.xb1{left:710.705100px;}
.xb2{left:714.374850px;}
.xb8{left:715.613700px;}
.x56{left:725.184045px;}
.xaa{left:727.399950px;}
.xf{left:756.442650px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.409600pt;}
.v4{vertical-align:14.208000pt;}
.v1{vertical-align:21.312000pt;}
.ls27{letter-spacing:-6.880000pt;}
.ls22{letter-spacing:-6.192000pt;}
.ls3{letter-spacing:-4.986667pt;}
.ls26{letter-spacing:-4.896000pt;}
.ls20{letter-spacing:-2.077966pt;}
.ls13{letter-spacing:-1.821254pt;}
.ls1a{letter-spacing:-1.800755pt;}
.ls17{letter-spacing:-1.787527pt;}
.ls12{letter-spacing:-1.753801pt;}
.ls16{letter-spacing:-1.686347pt;}
.ls15{letter-spacing:-1.618893pt;}
.ls14{letter-spacing:-1.585166pt;}
.ls1b{letter-spacing:-1.575654pt;}
.ls18{letter-spacing:-1.450258pt;}
.ls11{letter-spacing:-1.416531pt;}
.ls1f{letter-spacing:-1.402001pt;}
.ls1c{letter-spacing:-1.357080pt;}
.ls19{letter-spacing:-1.268970pt;}
.ls1e{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.906667pt;}
.ls28{letter-spacing:-0.853333pt;}
.ls23{letter-spacing:-0.746667pt;}
.ls2{letter-spacing:-0.725333pt;}
.ls21{letter-spacing:-0.701001pt;}
.ls10{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls24{letter-spacing:-0.144000pt;}
.ls5{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.lsa{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:1.938667pt;}
.ls25{letter-spacing:8.240000pt;}
.lsf{letter-spacing:54.086933pt;}
.lsd{letter-spacing:69.204267pt;}
.lsc{letter-spacing:69.204800pt;}
.wsd4{word-spacing:-53.333333pt;}
.ws6{word-spacing:-48.000000pt;}
.ws0{word-spacing:-21.941333pt;}
.ws75{word-spacing:-13.760000pt;}
.ws24{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.066667pt;}
.ws23{word-spacing:-13.013333pt;}
.wsd5{word-spacing:-12.800000pt;}
.wsba{word-spacing:-12.746667pt;}
.wsab{word-spacing:-12.000000pt;}
.ws116{word-spacing:-11.856000pt;}
.wsad{word-spacing:-11.610667pt;}
.ws5{word-spacing:-11.520000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.752000pt;}
.ws4{word-spacing:-10.666667pt;}
.ws131{word-spacing:-10.240000pt;}
.ws114{word-spacing:-10.005333pt;}
.ws147{word-spacing:-9.813333pt;}
.wsbe{word-spacing:-9.376087pt;}
.ws2{word-spacing:-9.328000pt;}
.ws129{word-spacing:-7.104000pt;}
.wsd6{word-spacing:-6.959934pt;}
.ws130{word-spacing:-6.218667pt;}
.wsf8{word-spacing:-4.480000pt;}
.wse7{word-spacing:-4.160000pt;}
.ws11b{word-spacing:-4.053333pt;}
.ws132{word-spacing:-3.946667pt;}
.ws12a{word-spacing:-3.573333pt;}
.wsf0{word-spacing:-3.264000pt;}
.ws103{word-spacing:-2.826667pt;}
.wsa4{word-spacing:-2.720000pt;}
.ws39{word-spacing:-2.666667pt;}
.ws70{word-spacing:-2.560000pt;}
.ws127{word-spacing:-2.544000pt;}
.ws94{word-spacing:-2.506667pt;}
.ws122{word-spacing:-2.464000pt;}
.ws48{word-spacing:-2.453333pt;}
.ws28{word-spacing:-2.400000pt;}
.ws10a{word-spacing:-2.352000pt;}
.ws11d{word-spacing:-2.346667pt;}
.ws176{word-spacing:-2.218667pt;}
.wsbf{word-spacing:-2.186667pt;}
.wse2{word-spacing:-2.133333pt;}
.ws2f{word-spacing:-2.080000pt;}
.ws109{word-spacing:-2.064000pt;}
.ws34{word-spacing:-2.026667pt;}
.wsb8{word-spacing:-2.016000pt;}
.ws7f{word-spacing:-1.973333pt;}
.ws56{word-spacing:-1.920000pt;}
.ws8f{word-spacing:-1.866667pt;}
.ws173{word-spacing:-1.834667pt;}
.wsb2{word-spacing:-1.813333pt;}
.ws152{word-spacing:-1.792000pt;}
.ws54{word-spacing:-1.760000pt;}
.wsc0{word-spacing:-1.706667pt;}
.ws125{word-spacing:-1.680000pt;}
.ws15e{word-spacing:-1.664000pt;}
.ws19{word-spacing:-1.653333pt;}
.ws84{word-spacing:-1.546667pt;}
.ws146{word-spacing:-1.536000pt;}
.wsb1{word-spacing:-1.440000pt;}
.ws14{word-spacing:-1.344000pt;}
.ws78{word-spacing:-1.333333pt;}
.ws13f{word-spacing:-1.280000pt;}
.ws120{word-spacing:-1.248000pt;}
.wsc6{word-spacing:-1.226667pt;}
.ws108{word-spacing:-1.200000pt;}
.ws169{word-spacing:-1.194667pt;}
.wse{word-spacing:-1.152000pt;}
.ws2e{word-spacing:-1.120000pt;}
.wse9{word-spacing:-1.066667pt;}
.ws1e{word-spacing:-1.013333pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws1c{word-spacing:-0.906667pt;}
.ws105{word-spacing:-0.864000pt;}
.wsfb{word-spacing:-0.800000pt;}
.ws121{word-spacing:-0.746667pt;}
.ws168{word-spacing:-0.725333pt;}
.ws77{word-spacing:-0.693333pt;}
.ws128{word-spacing:-0.672000pt;}
.ws144{word-spacing:-0.640000pt;}
.wsef{word-spacing:-0.624000pt;}
.ws170{word-spacing:-0.597333pt;}
.ws49{word-spacing:-0.586667pt;}
.ws5a{word-spacing:-0.480000pt;}
.ws92{word-spacing:-0.426667pt;}
.ws123{word-spacing:-0.410667pt;}
.ws13{word-spacing:-0.384000pt;}
.ws89{word-spacing:-0.373333pt;}
.ws15c{word-spacing:-0.341333pt;}
.wse8{word-spacing:-0.213333pt;}
.ws104{word-spacing:-0.144000pt;}
.ws21{word-spacing:-0.134400pt;}
.ws35{word-spacing:-0.106667pt;}
.ws20{word-spacing:-0.100800pt;}
.ws55{word-spacing:-0.053333pt;}
.ws7{word-spacing:-0.048000pt;}
.ws22{word-spacing:-0.040000pt;}
.ws1{word-spacing:-0.037312pt;}
.wsb{word-spacing:0.000000pt;}
.wsca{word-spacing:0.048000pt;}
.ws59{word-spacing:0.053333pt;}
.ws96{word-spacing:0.106667pt;}
.ws126{word-spacing:0.144000pt;}
.ws32{word-spacing:0.160000pt;}
.ws1b{word-spacing:0.266667pt;}
.ws145{word-spacing:0.298667pt;}
.ws30{word-spacing:0.320000pt;}
.ws58{word-spacing:0.373333pt;}
.ws57{word-spacing:0.426667pt;}
.ws8{word-spacing:0.432000pt;}
.ws1f{word-spacing:0.480000pt;}
.wsb3{word-spacing:0.533333pt;}
.ws124{word-spacing:0.576000pt;}
.ws76{word-spacing:0.586667pt;}
.ws5c{word-spacing:0.640000pt;}
.ws65{word-spacing:0.693333pt;}
.wsee{word-spacing:0.701001pt;}
.ws2d{word-spacing:0.746667pt;}
.wsa8{word-spacing:0.800000pt;}
.ws15d{word-spacing:0.810667pt;}
.wsfd{word-spacing:0.853333pt;}
.wsd{word-spacing:0.906667pt;}
.wsf{word-spacing:0.960000pt;}
.ws165{word-spacing:0.981333pt;}
.ws7b{word-spacing:1.066667pt;}
.ws5e{word-spacing:1.120000pt;}
.ws17{word-spacing:1.173333pt;}
.wsd2{word-spacing:1.268970pt;}
.wsc2{word-spacing:1.280000pt;}
.wsea{word-spacing:1.333333pt;}
.wsaa{word-spacing:1.344000pt;}
.wsd3{word-spacing:1.357080pt;}
.ws151{word-spacing:1.365333pt;}
.ws83{word-spacing:1.386667pt;}
.wsec{word-spacing:1.402001pt;}
.ws15f{word-spacing:1.408000pt;}
.ws12e{word-spacing:1.440000pt;}
.wsd1{word-spacing:1.450258pt;}
.wsb9{word-spacing:1.488000pt;}
.ws14d{word-spacing:1.493333pt;}
.ws163{word-spacing:1.536000pt;}
.wsc9{word-spacing:1.546667pt;}
.wscc{word-spacing:1.585166pt;}
.ws7a{word-spacing:1.600000pt;}
.wscd{word-spacing:1.618893pt;}
.ws15b{word-spacing:1.664000pt;}
.wsce{word-spacing:1.686347pt;}
.ws106{word-spacing:1.706667pt;}
.ws10{word-spacing:1.728000pt;}
.ws154{word-spacing:1.749333pt;}
.wscf{word-spacing:1.753801pt;}
.ws73{word-spacing:1.760000pt;}
.wsd0{word-spacing:1.787527pt;}
.ws74{word-spacing:1.813333pt;}
.ws175{word-spacing:1.834667pt;}
.wsc3{word-spacing:1.866667pt;}
.ws7d{word-spacing:1.920000pt;}
.ws6b{word-spacing:1.973333pt;}
.ws150{word-spacing:2.005333pt;}
.ws44{word-spacing:2.026667pt;}
.wsed{word-spacing:2.077966pt;}
.ws26{word-spacing:2.080000pt;}
.wsde{word-spacing:2.133333pt;}
.ws107{word-spacing:2.160000pt;}
.ws45{word-spacing:2.186667pt;}
.ws171{word-spacing:2.218667pt;}
.ws27{word-spacing:2.240000pt;}
.ws6f{word-spacing:2.293333pt;}
.wsc4{word-spacing:2.346667pt;}
.ws61{word-spacing:2.400000pt;}
.ws36{word-spacing:2.453333pt;}
.wsf1{word-spacing:2.496000pt;}
.ws31{word-spacing:2.506667pt;}
.ws14f{word-spacing:2.517333pt;}
.wse5{word-spacing:2.560000pt;}
.ws53{word-spacing:2.613333pt;}
.ws81{word-spacing:2.666667pt;}
.ws15a{word-spacing:2.688000pt;}
.ws60{word-spacing:2.720000pt;}
.ws18{word-spacing:2.773333pt;}
.ws148{word-spacing:2.858667pt;}
.ws37{word-spacing:2.880000pt;}
.ws3a{word-spacing:2.933333pt;}
.ws177{word-spacing:2.944000pt;}
.ws33{word-spacing:2.986667pt;}
.ws153{word-spacing:3.072000pt;}
.wsf5{word-spacing:3.093333pt;}
.wsff{word-spacing:3.146667pt;}
.ws17a{word-spacing:3.157333pt;}
.wscb{word-spacing:3.168000pt;}
.ws16{word-spacing:3.200000pt;}
.ws5d{word-spacing:3.253333pt;}
.ws16e{word-spacing:3.328000pt;}
.ws4a{word-spacing:3.413333pt;}
.wsf6{word-spacing:3.466667pt;}
.ws12{word-spacing:3.504000pt;}
.ws66{word-spacing:3.573333pt;}
.ws11f{word-spacing:3.626667pt;}
.wseb{word-spacing:3.680000pt;}
.ws149{word-spacing:3.712000pt;}
.ws11c{word-spacing:3.733333pt;}
.ws90{word-spacing:3.786667pt;}
.wsf4{word-spacing:3.840000pt;}
.ws8a{word-spacing:3.893333pt;}
.ws156{word-spacing:3.925333pt;}
.ws80{word-spacing:3.946667pt;}
.wsf7{word-spacing:4.000000pt;}
.ws157{word-spacing:4.053333pt;}
.ws67{word-spacing:4.106667pt;}
.ws17b{word-spacing:4.224000pt;}
.ws3f{word-spacing:4.266667pt;}
.ws3e{word-spacing:4.373333pt;}
.ws68{word-spacing:4.426667pt;}
.ws25{word-spacing:4.480000pt;}
.ws179{word-spacing:4.522667pt;}
.wsa5{word-spacing:4.586667pt;}
.ws178{word-spacing:4.608000pt;}
.ws16f{word-spacing:4.650667pt;}
.ws5f{word-spacing:4.693333pt;}
.ws86{word-spacing:4.800000pt;}
.ws50{word-spacing:4.853333pt;}
.ws161{word-spacing:4.864000pt;}
.ws38{word-spacing:4.906667pt;}
.ws71{word-spacing:4.960000pt;}
.wsc{word-spacing:4.986667pt;}
.wsa3{word-spacing:5.013333pt;}
.ws101{word-spacing:5.120000pt;}
.ws5b{word-spacing:5.173333pt;}
.wse3{word-spacing:5.226667pt;}
.ws47{word-spacing:5.280000pt;}
.ws93{word-spacing:5.333333pt;}
.ws3c{word-spacing:5.386667pt;}
.ws133{word-spacing:5.440000pt;}
.ws69{word-spacing:5.493333pt;}
.ws16c{word-spacing:5.504000pt;}
.ws88{word-spacing:5.546667pt;}
.ws97{word-spacing:5.653333pt;}
.ws14a{word-spacing:5.674667pt;}
.wse4{word-spacing:5.706667pt;}
.ws143{word-spacing:5.760000pt;}
.ws117{word-spacing:5.813333pt;}
.ws4c{word-spacing:5.866667pt;}
.ws136{word-spacing:5.920000pt;}
.wsc1{word-spacing:5.973333pt;}
.ws16b{word-spacing:6.016000pt;}
.ws62{word-spacing:6.080000pt;}
.ws64{word-spacing:6.133333pt;}
.ws14e{word-spacing:6.144000pt;}
.ws8c{word-spacing:6.186667pt;}
.wsf2{word-spacing:6.192000pt;}
.ws72{word-spacing:6.240000pt;}
.ws7e{word-spacing:6.346667pt;}
.ws11{word-spacing:6.432000pt;}
.ws102{word-spacing:6.453333pt;}
.ws6a{word-spacing:6.506667pt;}
.ws141{word-spacing:6.613333pt;}
.ws2c{word-spacing:6.666667pt;}
.ws7c{word-spacing:6.720000pt;}
.ws29{word-spacing:6.826667pt;}
.ws13e{word-spacing:6.880000pt;}
.ws162{word-spacing:6.912000pt;}
.ws4f{word-spacing:6.933333pt;}
.ws12c{word-spacing:7.040000pt;}
.wsda{word-spacing:7.093333pt;}
.ws13c{word-spacing:7.146667pt;}
.wsb7{word-spacing:7.200000pt;}
.ws13a{word-spacing:7.253333pt;}
.wsb4{word-spacing:7.306667pt;}
.ws4b{word-spacing:7.360000pt;}
.ws12d{word-spacing:7.466667pt;}
.ws14b{word-spacing:7.509333pt;}
.wsa2{word-spacing:7.520000pt;}
.ws42{word-spacing:7.573333pt;}
.ws6e{word-spacing:7.626667pt;}
.wsd9{word-spacing:7.680000pt;}
.ws1a{word-spacing:7.786667pt;}
.ws8b{word-spacing:7.840000pt;}
.ws17c{word-spacing:7.893333pt;}
.ws95{word-spacing:8.000000pt;}
.wsa7{word-spacing:8.053333pt;}
.ws14c{word-spacing:8.064000pt;}
.ws63{word-spacing:8.106667pt;}
.ws3b{word-spacing:8.266667pt;}
.ws135{word-spacing:8.533333pt;}
.wsfa{word-spacing:8.640000pt;}
.ws167{word-spacing:8.661333pt;}
.wsa6{word-spacing:8.693333pt;}
.ws12f{word-spacing:8.736000pt;}
.ws139{word-spacing:8.746667pt;}
.ws4d{word-spacing:8.800000pt;}
.ws79{word-spacing:8.906667pt;}
.ws142{word-spacing:8.960000pt;}
.ws12b{word-spacing:9.013333pt;}
.ws4e{word-spacing:9.066667pt;}
.wse1{word-spacing:9.120000pt;}
.ws138{word-spacing:9.173333pt;}
.ws119{word-spacing:9.226667pt;}
.wsc8{word-spacing:9.333333pt;}
.ws140{word-spacing:9.440000pt;}
.ws8d{word-spacing:9.493333pt;}
.ws46{word-spacing:9.546667pt;}
.wsdb{word-spacing:9.653333pt;}
.ws13d{word-spacing:9.813333pt;}
.wsb5{word-spacing:9.920000pt;}
.ws6c{word-spacing:9.973333pt;}
.ws155{word-spacing:10.112000pt;}
.wsa9{word-spacing:10.240000pt;}
.ws43{word-spacing:10.293333pt;}
.wsf3{word-spacing:10.346667pt;}
.wse6{word-spacing:10.613333pt;}
.ws87{word-spacing:10.720000pt;}
.ws85{word-spacing:10.826667pt;}
.ws164{word-spacing:10.880000pt;}
.ws51{word-spacing:10.986667pt;}
.ws137{word-spacing:11.306667pt;}
.ws91{word-spacing:11.466667pt;}
.ws100{word-spacing:11.520000pt;}
.ws166{word-spacing:11.861333pt;}
.ws52{word-spacing:12.000000pt;}
.wsfe{word-spacing:12.106667pt;}
.ws15{word-spacing:12.373333pt;}
.ws40{word-spacing:12.693333pt;}
.ws82{word-spacing:12.746667pt;}
.ws11e{word-spacing:12.853333pt;}
.ws6d{word-spacing:12.960000pt;}
.wsdc{word-spacing:13.173333pt;}
.ws134{word-spacing:13.280000pt;}
.ws17d{word-spacing:13.440000pt;}
.ws158{word-spacing:13.568000pt;}
.ws160{word-spacing:13.738667pt;}
.wsf9{word-spacing:15.200000pt;}
.ws3d{word-spacing:15.626667pt;}
.ws13b{word-spacing:15.786667pt;}
.ws16d{word-spacing:15.872000pt;}
.wsdf{word-spacing:16.106667pt;}
.wsc7{word-spacing:16.533333pt;}
.ws8e{word-spacing:16.586667pt;}
.ws174{word-spacing:17.109333pt;}
.ws118{word-spacing:17.333333pt;}
.ws172{word-spacing:17.578667pt;}
.ws2b{word-spacing:18.346667pt;}
.ws2a{word-spacing:19.306667pt;}
.ws16a{word-spacing:20.138667pt;}
.wsdd{word-spacing:20.426667pt;}
.ws11a{word-spacing:20.640000pt;}
.wse0{word-spacing:21.013333pt;}
.wsfc{word-spacing:24.160000pt;}
.ws41{word-spacing:24.746667pt;}
.ws159{word-spacing:26.922667pt;}
.wsb6{word-spacing:30.826667pt;}
.wsc5{word-spacing:36.640000pt;}
.ws9e{word-spacing:36.948267pt;}
.ws9b{word-spacing:36.948800pt;}
.wsac{word-spacing:47.416533pt;}
.wsbd{word-spacing:65.164800pt;}
.wsbc{word-spacing:65.165333pt;}
.wsae{word-spacing:73.740800pt;}
.wsd8{word-spacing:87.718702pt;}
.ws111{word-spacing:88.948267pt;}
.ws10b{word-spacing:114.606933pt;}
.ws113{word-spacing:114.970133pt;}
.wsbb{word-spacing:116.349333pt;}
.ws115{word-spacing:127.383467pt;}
.ws9a{word-spacing:136.337067pt;}
.ws99{word-spacing:140.275733pt;}
.ws9c{word-spacing:140.854400pt;}
.wsa1{word-spacing:144.214400pt;}
.wsa0{word-spacing:144.214933pt;}
.ws9d{word-spacing:144.793067pt;}
.wsb0{word-spacing:149.488000pt;}
.ws10c{word-spacing:149.933867pt;}
.ws112{word-spacing:150.845867pt;}
.ws98{word-spacing:151.625067pt;}
.ws9f{word-spacing:151.625600pt;}
.ws10f{word-spacing:166.826667pt;}
.ws10e{word-spacing:181.944533pt;}
.ws10d{word-spacing:190.008533pt;}
.ws110{word-spacing:218.373333pt;}
.wsaf{word-spacing:267.608533pt;}
.wsd7{word-spacing:2299.958762pt;}
._c{margin-left:-2509.984000pt;}
._7f{margin-left:-2509.056000pt;}
._6e{margin-left:-477.909161pt;}
._84{margin-left:-8.261333pt;}
._b{margin-left:-6.910400pt;}
._8{margin-left:-5.449067pt;}
._71{margin-left:-4.527467pt;}
._3{margin-left:-3.599467pt;}
._2{margin-left:-2.402667pt;}
._1{margin-left:-1.233067pt;}
._4{width:0.915733pt;}
._0{width:1.867733pt;}
._5{width:2.953600pt;}
._6{width:4.681067pt;}
._e{width:5.666133pt;}
._7{width:6.771200pt;}
._10{width:7.660800pt;}
._f{width:8.704000pt;}
._11{width:10.074667pt;}
._56{width:11.290667pt;}
._55{width:12.330667pt;}
._83{width:13.348800pt;}
._6d{width:14.320000pt;}
._12{width:15.317333pt;}
._d{width:17.088000pt;}
._6c{width:18.451200pt;}
._80{width:19.568000pt;}
._13{width:20.709333pt;}
._70{width:23.521600pt;}
._a{width:24.576000pt;}
._82{width:27.063467pt;}
._9{width:28.287467pt;}
._81{width:29.429333pt;}
._73{width:46.268267pt;}
._72{width:49.437333pt;}
._57{width:55.796800pt;}
._74{width:70.907200pt;}
._6b{width:72.137067pt;}
._7d{width:78.965867pt;}
._75{width:82.628800pt;}
._67{width:109.590933pt;}
._6f{width:111.824166pt;}
._66{width:123.957333pt;}
._51{width:141.369600pt;}
._7e{width:145.486933pt;}
._65{width:148.670400pt;}
._41{width:154.889600pt;}
._4e{width:156.807467pt;}
._50{width:164.379200pt;}
._47{width:165.374933pt;}
._44{width:169.761600pt;}
._26{width:171.895467pt;}
._53{width:173.584000pt;}
._3f{width:175.015467pt;}
._7a{width:177.027733pt;}
._69{width:179.590933pt;}
._4a{width:180.481600pt;}
._29{width:182.646933pt;}
._77{width:185.733333pt;}
._18{width:186.813333pt;}
._46{width:188.384533pt;}
._37{width:190.580800pt;}
._43{width:192.771200pt;}
._40{width:194.003733pt;}
._68{width:197.062933pt;}
._6a{width:200.161600pt;}
._3c{width:201.989333pt;}
._49{width:204.027200pt;}
._34{width:208.245333pt;}
._28{width:211.356267pt;}
._3a{width:214.006933pt;}
._31{width:215.164267pt;}
._21{width:216.658133pt;}
._1e{width:220.559467pt;}
._16{width:221.857600pt;}
._79{width:223.297067pt;}
._3e{width:224.765333pt;}
._1b{width:226.962133pt;}
._27{width:228.946667pt;}
._17{width:229.852267pt;}
._2c{width:233.905600pt;}
._39{width:235.517333pt;}
._33{width:236.675200pt;}
._1a{width:237.720000pt;}
._22{width:238.764800pt;}
._25{width:240.326933pt;}
._2b{width:244.664000pt;}
._14{width:246.938133pt;}
._20{width:249.517333pt;}
._4d{width:251.864533pt;}
._54{width:253.691200pt;}
._30{width:258.179200pt;}
._24{width:261.837867pt;}
._7c{width:267.540800pt;}
._1d{width:274.998400pt;}
._58{width:279.737600pt;}
._2e{width:281.942400pt;}
._7b{width:283.089067pt;}
._63{width:284.184000pt;}
._36{width:288.327467pt;}
._4c{width:290.136000pt;}
._59{width:291.650667pt;}
._62{width:296.317333pt;}
._5b{width:300.274667pt;}
._5a{width:310.242667pt;}
._5f{width:313.528000pt;}
._5d{width:318.269333pt;}
._64{width:322.861333pt;}
._61{width:325.064000pt;}
._5e{width:329.544000pt;}
._60{width:330.813333pt;}
._5c{width:332.829333pt;}
._15{width:339.889067pt;}
._3d{width:348.705067pt;}
._38{width:359.457067pt;}
._3b{width:370.208533pt;}
._4b{width:385.085333pt;}
._76{width:393.522133pt;}
._48{width:402.651200pt;}
._78{width:409.612800pt;}
._23{width:415.792533pt;}
._42{width:427.963200pt;}
._32{width:429.456533pt;}
._19{width:436.177067pt;}
._2a{width:439.275733pt;}
._1f{width:446.928533pt;}
._2f{width:450.960533pt;}
._4f{width:466.491200pt;}
._1c{width:473.453333pt;}
._2d{width:476.552000pt;}
._52{width:477.671467pt;}
._45{width:489.040533pt;}
._35{width:503.916267pt;}
.fs16{font-size:20.862933pt;}
.fs1c{font-size:24.874667pt;}
.fs15{font-size:25.035733pt;}
.fsa{font-size:25.295467pt;}
.fsd{font-size:27.403200pt;}
.fs19{font-size:28.396267pt;}
.fs1b{font-size:28.959467pt;}
.fs14{font-size:29.208000pt;}
.fsc{font-size:29.510933pt;}
.fs18{font-size:29.622400pt;}
.fs13{font-size:30.098667pt;}
.fs11{font-size:31.560000pt;}
.fs10{font-size:32.826133pt;}
.fs17{font-size:33.380267pt;}
.fs9{font-size:33.600000pt;}
.fsb{font-size:33.726933pt;}
.fs12{font-size:34.398400pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fsf{font-size:37.515733pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs1a{font-size:48.679467pt;}
.fse{font-size:50.590400pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf2{bottom:1.954000pt;}
.y1a2{bottom:5.048267pt;}
.y26{bottom:57.450400pt;}
.y27{bottom:68.131733pt;}
.y25{bottom:68.650400pt;}
.ye9{bottom:100.020667pt;}
.yad{bottom:101.165333pt;}
.y149{bottom:101.165467pt;}
.ye8{bottom:116.020667pt;}
.y5b{bottom:117.165333pt;}
.y69{bottom:117.165467pt;}
.yd{bottom:117.858400pt;}
.ye7{bottom:132.020667pt;}
.y5a{bottom:133.165333pt;}
.y68{bottom:133.165467pt;}
.ye6{bottom:148.020667pt;}
.y22{bottom:149.165333pt;}
.y67{bottom:149.165467pt;}
.y21{bottom:165.165333pt;}
.y66{bottom:165.165467pt;}
.yf1{bottom:165.789333pt;}
.y10c{bottom:172.629255pt;}
.y121{bottom:173.780380pt;}
.y74{bottom:177.108667pt;}
.yf4{bottom:177.991444pt;}
.y11c{bottom:178.959927pt;}
.y20{bottom:181.165333pt;}
.y65{bottom:181.165467pt;}
.yf3{bottom:188.236000pt;}
.y12d{bottom:189.067113pt;}
.yfd{bottom:192.040133pt;}
.y136{bottom:195.624791pt;}
.y73{bottom:196.308667pt;}
.y1b7{bottom:196.610533pt;}
.y23{bottom:197.165333pt;}
.y64{bottom:197.165467pt;}
.yf5{bottom:198.480556pt;}
.yf7{bottom:202.771050pt;}
.y122{bottom:204.092462pt;}
.yec{bottom:208.736355pt;}
.yf8{bottom:209.993851pt;}
.y137{bottom:211.306196pt;}
.y1b6{bottom:212.610533pt;}
.y1f{bottom:213.165333pt;}
.y63{bottom:213.165467pt;}
.y72{bottom:215.508667pt;}
.yfc{bottom:217.821626pt;}
.yef{bottom:218.980911pt;}
.y129{bottom:219.134674pt;}
.y133{bottom:225.023663pt;}
.yfb{bottom:225.346914pt;}
.y13a{bottom:226.679090pt;}
.y1b5{bottom:228.610533pt;}
.y59{bottom:229.165333pt;}
.y6e{bottom:229.165467pt;}
.yeb{bottom:229.225467pt;}
.y125{bottom:234.168454pt;}
.yf9{bottom:234.908456pt;}
.yf0{bottom:239.470023pt;}
.y62{bottom:244.308667pt;}
.y1b4{bottom:244.610533pt;}
.y58{bottom:245.165333pt;}
.y6d{bottom:245.165467pt;}
.yfa{bottom:247.967044pt;}
.y120{bottom:249.210667pt;}
.yed{bottom:249.723010pt;}
.yf6{bottom:259.004133pt;}
.yee{bottom:259.967566pt;}
.yac{bottom:261.032267pt;}
.y57{bottom:261.165333pt;}
.y6c{bottom:261.165467pt;}
.y61{bottom:263.508667pt;}
.y126{bottom:264.236015pt;}
.y134{bottom:267.583178pt;}
.y11e{bottom:268.396743pt;}
.y132{bottom:270.811260pt;}
.y110{bottom:271.025173pt;}
.y1cf{bottom:274.147733pt;}
.y1e{bottom:277.165333pt;}
.y6b{bottom:277.165467pt;}
.y130{bottom:278.667012pt;}
.y127{bottom:279.278228pt;}
.y1ce{bottom:290.147733pt;}
.y56{bottom:293.165333pt;}
.y6a{bottom:293.165467pt;}
.y124{bottom:294.320440pt;}
.y10a{bottom:299.476400pt;}
.yd7{bottom:299.795333pt;}
.y138{bottom:300.992698pt;}
.y11b{bottom:301.302267pt;}
.y10b{bottom:307.213867pt;}
.y1d2{bottom:308.308667pt;}
.y1d{bottom:309.165333pt;}
.y60{bottom:309.165467pt;}
.y123{bottom:309.354221pt;}
.yd6{bottom:311.795333pt;}
.y176{bottom:312.225067pt;}
.y13e{bottom:315.185600pt;}
.yab{bottom:315.310133pt;}
.yd5{bottom:324.348000pt;}
.y12c{bottom:324.396433pt;}
.y55{bottom:325.165333pt;}
.y5f{bottom:325.165467pt;}
.y11f{bottom:326.736000pt;}
.yaa{bottom:329.374533pt;}
.y1cd{bottom:329.683733pt;}
.yff{bottom:330.024780pt;}
.y1da{bottom:335.370133pt;}
.y135{bottom:336.185564pt;}
.yd4{bottom:336.348000pt;}
.y128{bottom:339.430213pt;}
.y54{bottom:341.165333pt;}
.y5e{bottom:341.165467pt;}
.y11a{bottom:341.568667pt;}
.ya9{bottom:343.439067pt;}
.y11d{bottom:344.572000pt;}
.y1cc{bottom:345.683733pt;}
.y10f{bottom:345.713467pt;}
.yea{bottom:347.876000pt;}
.yd3{bottom:348.900667pt;}
.y12a{bottom:354.463994pt;}
.y1d9{bottom:354.570133pt;}
.y131{bottom:356.599985pt;}
.y148{bottom:357.165333pt;}
.y53{bottom:357.165467pt;}
.ya8{bottom:357.503467pt;}
.y10d{bottom:359.773333pt;}
.yd2{bottom:360.900667pt;}
.y1cb{bottom:361.683733pt;}
.y12b{bottom:369.506206pt;}
.y78{bottom:370.570133pt;}
.yfe{bottom:371.015467pt;}
.ya7{bottom:371.568000pt;}
.y1c{bottom:373.165333pt;}
.y52{bottom:373.165467pt;}
.yd1{bottom:373.453333pt;}
.y1d8{bottom:373.770133pt;}
.y12f{bottom:375.772835pt;}
.y142{bottom:377.666059pt;}
.y147{bottom:380.170133pt;}
.y109{bottom:380.619067pt;}
.yd0{bottom:385.453333pt;}
.ya6{bottom:385.632533pt;}
.y1b{bottom:389.165333pt;}
.y51{bottom:389.165467pt;}
.y77{bottom:389.770133pt;}
.y13b{bottom:392.191067pt;}
.y139{bottom:392.281954pt;}
.y146{bottom:396.170133pt;}
.ycf{bottom:398.006000pt;}
.ya5{bottom:399.696933pt;}
.y1d7{bottom:404.308667pt;}
.y1a{bottom:405.165333pt;}
.y50{bottom:405.165467pt;}
.yce{bottom:410.006000pt;}
.y12e{bottom:410.243333pt;}
.y102{bottom:410.715050pt;}
.y145{bottom:412.170133pt;}
.ya4{bottom:413.761467pt;}
.y13d{bottom:416.785920pt;}
.y76{bottom:420.308667pt;}
.y19{bottom:421.165333pt;}
.y4f{bottom:421.165467pt;}
.ycd{bottom:422.558667pt;}
.y141{bottom:425.470267pt;}
.y13c{bottom:426.904000pt;}
.ya3{bottom:427.825867pt;}
.ycc{bottom:434.558667pt;}
.y18{bottom:437.165333pt;}
.y4e{bottom:437.165467pt;}
.y140{bottom:437.394020pt;}
.y144{bottom:439.508667pt;}
.ya2{bottom:441.890400pt;}
.y112{bottom:446.579991pt;}
.ycb{bottom:447.111333pt;}
.y17{bottom:453.165333pt;}
.y4d{bottom:453.165467pt;}
.y108{bottom:453.420933pt;}
.ya1{bottom:455.954933pt;}
.y114{bottom:456.843867pt;}
.yca{bottom:459.111333pt;}
.y16{bottom:469.165333pt;}
.y4c{bottom:469.165467pt;}
.ya0{bottom:470.019333pt;}
.yc9{bottom:471.664000pt;}
.y117{bottom:477.654533pt;}
.yc8{bottom:483.664000pt;}
.y9f{bottom:484.083867pt;}
.y15{bottom:485.165333pt;}
.y4b{bottom:485.165467pt;}
.y100{bottom:492.054560pt;}
.y118{bottom:493.230534pt;}
.y107{bottom:496.082587pt;}
.yc7{bottom:496.216667pt;}
.y9e{bottom:498.148400pt;}
.y116{bottom:499.055317pt;}
.y14{bottom:501.165333pt;}
.y4a{bottom:501.165467pt;}
.y106{bottom:506.200667pt;}
.yc6{bottom:508.216667pt;}
.y9d{bottom:512.212800pt;}
.y13{bottom:517.165333pt;}
.y49{bottom:517.165467pt;}
.yc5{bottom:520.769333pt;}
.y9c{bottom:526.277200pt;}
.yc4{bottom:532.769333pt;}
.y12{bottom:533.165333pt;}
.y48{bottom:533.165467pt;}
.y103{bottom:534.874924pt;}
.y105{bottom:536.111200pt;}
.y9b{bottom:540.341733pt;}
.yc3{bottom:545.322133pt;}
.y11{bottom:549.165333pt;}
.y47{bottom:549.165467pt;}
.y9a{bottom:554.406267pt;}
.yc2{bottom:557.322133pt;}
.y10{bottom:565.165333pt;}
.y46{bottom:565.165467pt;}
.y99{bottom:568.470667pt;}
.y101{bottom:569.550271pt;}
.yc1{bottom:569.874800pt;}
.y6f{bottom:580.131200pt;}
.y143{bottom:581.165333pt;}
.y45{bottom:581.165467pt;}
.yc0{bottom:581.874800pt;}
.y98{bottom:582.535200pt;}
.y75{bottom:583.508667pt;}
.y113{bottom:588.483253pt;}
.ybf{bottom:594.427467pt;}
.y97{bottom:596.599733pt;}
.yf{bottom:597.165333pt;}
.y44{bottom:597.165467pt;}
.y111{bottom:597.796533pt;}
.y115{bottom:598.031200pt;}
.y13f{bottom:603.046267pt;}
.y104{bottom:605.018400pt;}
.ybe{bottom:606.427467pt;}
.y1b0{bottom:607.862133pt;}
.y96{bottom:610.664267pt;}
.y1b1{bottom:613.165333pt;}
.y43{bottom:613.165467pt;}
.ybd{bottom:618.980000pt;}
.y10e{bottom:620.298267pt;}
.y119{bottom:621.060533pt;}
.y1af{bottom:623.862133pt;}
.y95{bottom:624.728667pt;}
.y71{bottom:628.308667pt;}
.y42{bottom:629.165467pt;}
.ybc{bottom:630.980000pt;}
.y94{bottom:638.793067pt;}
.y1ae{bottom:639.862133pt;}
.yba{bottom:643.533067pt;}
.yb8{bottom:643.533200pt;}
.yb5{bottom:643.533333pt;}
.y41{bottom:645.165467pt;}
.y1b3{bottom:646.034933pt;}
.ye{bottom:646.467333pt;}
.y70{bottom:647.508667pt;}
.y93{bottom:652.857600pt;}
.ybb{bottom:655.532933pt;}
.yb9{bottom:655.533067pt;}
.yb7{bottom:655.533200pt;}
.yb6{bottom:655.533333pt;}
.yb4{bottom:655.533467pt;}
.y1ad{bottom:655.862133pt;}
.y40{bottom:661.165467pt;}
.y1b2{bottom:662.034933pt;}
.y92{bottom:666.922133pt;}
.yb3{bottom:668.086133pt;}
.y1d6{bottom:671.370133pt;}
.y1ac{bottom:671.862133pt;}
.y3f{bottom:677.165467pt;}
.yb2{bottom:680.086133pt;}
.y91{bottom:680.986533pt;}
.y1ab{bottom:687.862133pt;}
.y1d5{bottom:690.570133pt;}
.y1d1{bottom:692.308800pt;}
.yb1{bottom:692.638800pt;}
.y3e{bottom:693.165333pt;}
.y90{bottom:695.051067pt;}
.y1aa{bottom:703.862133pt;}
.yb0{bottom:705.191467pt;}
.yc{bottom:705.638667pt;}
.y8f{bottom:709.115600pt;}
.y3d{bottom:709.165333pt;}
.y1d4{bottom:709.770133pt;}
.y1ca{bottom:719.813333pt;}
.y175{bottom:721.630667pt;}
.y8e{bottom:723.180133pt;}
.y3c{bottom:725.165333pt;}
.y156{bottom:725.663709pt;}
.y14a{bottom:728.758133pt;}
.y19b{bottom:729.577733pt;}
.yb{bottom:729.638000pt;}
.yaf{bottom:729.836000pt;}
.y1c9{bottom:731.813333pt;}
.y162{bottom:732.498465pt;}
.y181{bottom:736.180822pt;}
.y8d{bottom:737.244533pt;}
.y169{bottom:739.339479pt;}
.y1d3{bottom:740.308667pt;}
.y19f{bottom:741.076533pt;}
.y3b{bottom:741.165333pt;}
.y1c8{bottom:743.813333pt;}
.y1a9{bottom:743.834933pt;}
.yae{bottom:745.836000pt;}
.y159{bottom:746.211787pt;}
.y17d{bottom:749.872122pt;}
.y8c{bottom:751.309067pt;}
.y170{bottom:753.040284pt;}
.ya{bottom:753.637333pt;}
.y1c7{bottom:755.813333pt;}
.y3a{bottom:757.165333pt;}
.y16b{bottom:759.887557pt;}
.y8b{bottom:765.373600pt;}
.y14e{bottom:766.747348pt;}
.y1c6{bottom:767.813333pt;}
.y9{bottom:769.637333pt;}
.y39{bottom:773.165333pt;}
.y171{bottom:773.588362pt;}
.y8a{bottom:779.438000pt;}
.y1c5{bottom:779.813333pt;}
.y150{bottom:780.448153pt;}
.yd9{bottom:781.023867pt;}
.y8{bottom:785.637333pt;}
.y15d{bottom:787.295426pt;}
.y38{bottom:789.165333pt;}
.y188{bottom:789.261341pt;}
.y1c4{bottom:791.813333pt;}
.y1a0{bottom:793.010133pt;}
.y89{bottom:793.502400pt;}
.y158{bottom:794.155217pt;}
.y194{bottom:794.563773pt;}
.yd8{bottom:797.023867pt;}
.y192{bottom:797.809927pt;}
.y153{bottom:801.002490pt;}
.y7{bottom:801.637333pt;}
.y37{bottom:805.165333pt;}
.y1c3{bottom:805.877867pt;}
.y88{bottom:807.566933pt;}
.y15f{bottom:807.843504pt;}
.y18c{bottom:811.511659pt;}
.y179{bottom:814.686972pt;}
.y6{bottom:817.637333pt;}
.y1c2{bottom:817.877867pt;}
.y36{bottom:821.165333pt;}
.y15e{bottom:821.544309pt;}
.y87{bottom:821.631467pt;}
.y184{bottom:825.213390pt;}
.y14f{bottom:828.391582pt;}
.y1c1{bottom:831.942267pt;}
.y173{bottom:835.232596pt;}
.y86{bottom:835.695867pt;}
.y35{bottom:837.165333pt;}
.y18b{bottom:840.490273pt;}
.y168{bottom:842.073610pt;}
.y18e{bottom:842.435742pt;}
.y1c0{bottom:843.942267pt;}
.y19a{bottom:844.237467pt;}
.y172{bottom:848.927142pt;}
.y5{bottom:849.636133pt;}
.y85{bottom:849.760400pt;}
.y34{bottom:853.165333pt;}
.y186{bottom:853.206231pt;}
.y14b{bottom:855.786933pt;}
.y1bf{bottom:858.006800pt;}
.y197{bottom:858.256933pt;}
.y191{bottom:859.094794pt;}
.y163{bottom:862.627947pt;}
.y84{bottom:863.824933pt;}
.y4{bottom:868.836133pt;}
.y33{bottom:869.165333pt;}
.y16e{bottom:869.475221pt;}
.y1be{bottom:870.006800pt;}
.y160{bottom:876.328753pt;}
.y83{bottom:877.889467pt;}
.y196{bottom:878.371600pt;}
.y16d{bottom:883.169767pt;}
.y1bd{bottom:884.071200pt;}
.y32{bottom:885.165333pt;}
.y161{bottom:890.023299pt;}
.y17c{bottom:890.237938pt;}
.y82{bottom:891.953867pt;}
.ye5{bottom:894.006667pt;}
.y1a1{bottom:894.888839pt;}
.y1bc{bottom:896.071200pt;}
.y15b{bottom:896.883090pt;}
.y195{bottom:897.334667pt;}
.y31{bottom:901.165333pt;}
.y199{bottom:902.439733pt;}
.y164{bottom:903.717845pt;}
.y3{bottom:904.034933pt;}
.y17b{bottom:905.686940pt;}
.y19e{bottom:905.910183pt;}
.y81{bottom:906.018267pt;}
.ye4{bottom:908.071200pt;}
.y1bb{bottom:910.135733pt;}
.y14c{bottom:910.577636pt;}
.y185{bottom:914.918788pt;}
.y1d0{bottom:916.308667pt;}
.y30{bottom:917.165333pt;}
.y16a{bottom:917.412391pt;}
.y18f{bottom:918.397682pt;}
.y80{bottom:920.082800pt;}
.y18d{bottom:920.619585pt;}
.ye3{bottom:922.135600pt;}
.y1ba{bottom:924.200133pt;}
.y14d{bottom:924.272182pt;}
.y189{bottom:929.288133pt;}
.y15a{bottom:931.131973pt;}
.y2{bottom:931.234800pt;}
.y2f{bottom:933.165333pt;}
.y7f{bottom:934.147333pt;}
.y182{bottom:934.190923pt;}
.ye2{bottom:936.200133pt;}
.y152{bottom:937.979246pt;}
.y18a{bottom:938.207037pt;}
.y187{bottom:941.200868pt;}
.y16f{bottom:944.814001pt;}
.y183{bottom:947.939596pt;}
.y7e{bottom:948.211733pt;}
.y2e{bottom:949.165333pt;}
.ye1{bottom:950.264667pt;}
.y154{bottom:951.680051pt;}
.y198{bottom:952.862800pt;}
.y19d{bottom:955.905478pt;}
.y1{bottom:958.434933pt;}
.y178{bottom:958.517260pt;}
.y17f{bottom:961.641327pt;}
.y7d{bottom:962.276267pt;}
.y1a4{bottom:962.333467pt;}
.ye0{bottom:964.329067pt;}
.y1b9{bottom:964.329200pt;}
.y2d{bottom:965.165333pt;}
.y177{bottom:965.364533pt;}
.y155{bottom:972.228129pt;}
.y190{bottom:974.581562pt;}
.ydf{bottom:976.329067pt;}
.y7c{bottom:976.340800pt;}
.y1b8{bottom:978.393600pt;}
.y1a5{bottom:978.769867pt;}
.y157{bottom:979.075402pt;}
.y2c{bottom:981.165333pt;}
.y166{bottom:985.903898pt;}
.yde{bottom:990.393600pt;}
.y7b{bottom:990.405200pt;}
.y180{bottom:990.906807pt;}
.y165{bottom:992.757430pt;}
.y1a3{bottom:993.620800pt;}
.y5d{bottom:995.888800pt;}
.y19c{bottom:996.437467pt;}
.y193{bottom:996.998400pt;}
.y2b{bottom:997.165333pt;}
.y16c{bottom:999.598445pt;}
.y15c{bottom:1006.464494pt;}
.ydb{bottom:1009.076400pt;}
.y17a{bottom:1010.132000pt;}
.y2a{bottom:1013.165333pt;}
.y167{bottom:1013.299250pt;}
.y1a7{bottom:1013.791067pt;}
.y1a6{bottom:1013.839256pt;}
.ydd{bottom:1015.038133pt;}
.y7a{bottom:1015.049733pt;}
.y174{bottom:1020.152782pt;}
.y1a8{bottom:1024.657600pt;}
.y5c{bottom:1026.427467pt;}
.y151{bottom:1027.012573pt;}
.yda{bottom:1028.276400pt;}
.y29{bottom:1029.165333pt;}
.y17e{bottom:1030.963639pt;}
.ydc{bottom:1031.038133pt;}
.y79{bottom:1031.049733pt;}
.y28{bottom:1061.025333pt;}
.y24{bottom:1061.170267pt;}
.h28{height:15.198973pt;}
.h26{height:18.238923pt;}
.h12{height:18.428143pt;}
.h16{height:19.963659pt;}
.h2d{height:20.687124pt;}
.h2f{height:21.083284pt;}
.h25{height:21.278484pt;}
.h18{height:21.484766pt;}
.h15{height:21.499176pt;}
.h30{height:21.565917pt;}
.h2c{height:21.580381pt;}
.h21{height:21.927349pt;}
.h1e{height:22.976543pt;}
.h1f{height:22.991953pt;}
.h1c{height:23.898323pt;}
.h1d{height:23.914351pt;}
.h2b{height:23.992067pt;}
.h29{height:24.301747pt;}
.h2a{height:24.318046pt;}
.h13{height:24.554130pt;}
.h17{height:24.570598pt;}
.h20{height:25.042976pt;}
.hd{height:26.678400pt;}
.h1a{height:27.312480pt;}
.h1b{height:27.330798pt;}
.h31{height:29.045333pt;}
.h11{height:29.493333pt;}
.h5{height:29.625000pt;}
.h4{height:29.642667pt;}
.h23{height:29.645833pt;}
.h32{height:31.479375pt;}
.h6{height:31.760000pt;}
.h7{height:33.328125pt;}
.h8{height:33.351562pt;}
.h9{height:34.896000pt;}
.h2e{height:35.439983pt;}
.h22{height:36.145833pt;}
.h19{height:36.831195pt;}
.hb{height:37.031250pt;}
.hc{height:37.057292pt;}
.h33{height:43.375000pt;}
.h24{height:43.958333pt;}
.he{height:44.437500pt;}
.hf{height:44.468750pt;}
.h3{height:49.459969pt;}
.ha{height:51.843750pt;}
.h10{height:51.880208pt;}
.h2{height:62.953125pt;}
.h27{height:317.740000pt;}
.h14{height:489.553333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:603.702667pt;}
.w2{width:627.401333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa4{left:2.969867pt;}
.x1{left:68.031467pt;}
.x13{left:70.299200pt;}
.x12{left:74.946133pt;}
.x4f{left:77.352697pt;}
.x50{left:81.336267pt;}
.x10{left:83.149600pt;}
.x38{left:88.711467pt;}
.xa7{left:93.175200pt;}
.x9{left:98.267733pt;}
.x20{left:100.535467pt;}
.x14{left:104.050133pt;}
.x8c{left:110.117333pt;}
.xb{left:113.385733pt;}
.xa1{left:122.356267pt;}
.x48{left:129.390497pt;}
.x51{left:132.844800pt;}
.x40{left:137.890918pt;}
.x43{left:146.419578pt;}
.x73{left:153.995733pt;}
.x42{left:156.305741pt;}
.x47{left:162.730474pt;}
.xa6{left:166.827600pt;}
.x44{left:168.046267pt;}
.x49{left:170.868114pt;}
.x3f{left:172.300667pt;}
.x71{left:175.925733pt;}
.x46{left:176.976877pt;}
.x21{left:180.065733pt;}
.x15{left:183.565600pt;}
.x25{left:185.441600pt;}
.x2c{left:188.129600pt;}
.x45{left:189.769867pt;}
.x41{left:192.109881pt;}
.x16{left:195.922667pt;}
.x3c{left:203.098267pt;}
.xa5{left:204.226267pt;}
.x4c{left:211.239867pt;}
.x4b{left:212.288133pt;}
.x4a{left:217.560133pt;}
.x93{left:218.942972pt;}
.xa2{left:224.764000pt;}
.xa3{left:226.219309pt;}
.x3e{left:229.507701pt;}
.x3a{left:233.289532pt;}
.x4e{left:235.520800pt;}
.x39{left:237.345195pt;}
.x4d{left:240.383067pt;}
.x3d{left:245.249747pt;}
.x3b{left:247.092279pt;}
.x2{left:250.017867pt;}
.x18{left:254.858533pt;}
.xab{left:255.809067pt;}
.x27{left:257.252667pt;}
.x26{left:260.425867pt;}
.x92{left:261.326021pt;}
.x32{left:263.113867pt;}
.x2d{left:265.801733pt;}
.x17{left:267.733600pt;}
.x8d{left:269.985067pt;}
.xac{left:276.449600pt;}
.xb3{left:279.585467pt;}
.x91{left:283.758890pt;}
.x97{left:285.871262pt;}
.x95{left:287.832378pt;}
.x7d{left:289.905626pt;}
.x83{left:292.997539pt;}
.x9a{left:294.435497pt;}
.x3{left:295.955200pt;}
.x9b{left:301.085557pt;}
.x76{left:302.179394pt;}
.x7f{left:303.737868pt;}
.x89{left:306.222665pt;}
.x87{left:310.597659pt;}
.x99{left:311.850830pt;}
.x98{left:316.894444pt;}
.x23{left:323.687733pt;}
.x96{left:324.931889pt;}
.x1a{left:326.669600pt;}
.x90{left:328.504667pt;}
.x22{left:329.548933pt;}
.x28{left:332.236933pt;}
.x94{left:333.391809pt;}
.x33{left:334.924800pt;}
.x2e{left:337.612800pt;}
.x19{left:339.544667pt;}
.xb4{left:340.433733pt;}
.x58{left:343.399600pt;}
.xad{left:344.493733pt;}
.x82{left:345.641427pt;}
.xae{left:347.755733pt;}
.x75{left:349.227796pt;}
.x8e{left:351.712265pt;}
.x52{left:353.118400pt;}
.x8b{left:354.479041pt;}
.x7c{left:357.120311pt;}
.x84{left:358.428428pt;}
.x86{left:359.811652pt;}
.x7b{left:360.894447pt;}
.x81{left:361.877100pt;}
.x88{left:364.875129pt;}
.x80{left:365.770157pt;}
.x85{left:367.097050pt;}
.x53{left:368.059041pt;}
.x78{left:370.971330pt;}
.x79{left:373.030519pt;}
.x7a{left:375.089708pt;}
.x59{left:376.854267pt;}
.x74{left:378.306800pt;}
.x7e{left:379.527292pt;}
.x8a{left:383.001000pt;}
.x8f{left:387.782498pt;}
.x5a{left:389.142267pt;}
.x8{left:391.181067pt;}
.x5b{left:392.156247pt;}
.x36{left:393.448800pt;}
.x9c{left:394.805437pt;}
.x35{left:396.206000pt;}
.x1c{left:398.480533pt;}
.x5d{left:399.482667pt;}
.x29{left:400.874667pt;}
.x77{left:401.802836pt;}
.x30{left:403.562667pt;}
.x4{left:404.863467pt;}
.x11{left:406.299200pt;}
.x2f{left:409.423733pt;}
.x1b{left:411.355733pt;}
.x37{left:412.346533pt;}
.xc{left:421.417200pt;}
.xa8{left:429.254933pt;}
.xd{left:436.535333pt;}
.x5c{left:448.020667pt;}
.x5{left:453.835867pt;}
.x6a{left:455.998599pt;}
.x1e{left:470.291600pt;}
.x2b{left:472.685733pt;}
.x2a{left:475.858933pt;}
.x34{left:478.546933pt;}
.x31{left:481.234800pt;}
.x1d{left:483.166667pt;}
.x6b{left:484.178476pt;}
.xb5{left:485.409067pt;}
.xb6{left:487.504267pt;}
.xaf{left:499.441733pt;}
.x6e{left:502.132331pt;}
.x6c{left:511.794003pt;}
.x68{left:513.276362pt;}
.x69{left:517.452552pt;}
.x67{left:523.141200pt;}
.x57{left:525.293333pt;}
.x9e{left:528.741867pt;}
.x6d{left:540.673673pt;}
.x1f{left:543.610400pt;}
.x72{left:551.428079pt;}
.x24{left:552.943600pt;}
.x66{left:557.122966pt;}
.x64{left:559.146582pt;}
.xb7{left:560.197200pt;}
.xb0{left:561.816667pt;}
.x70{left:563.006667pt;}
.x65{left:564.062283pt;}
.x6{left:565.187467pt;}
.x6f{left:566.480000pt;}
.xa{left:570.353600pt;}
.x9f{left:573.980473pt;}
.xa9{left:576.656400pt;}
.x60{left:578.573296pt;}
.x61{left:579.846487pt;}
.x62{left:581.187133pt;}
.x63{left:585.993221pt;}
.x5f{left:587.080915pt;}
.x54{left:590.344933pt;}
.x5e{left:608.413200pt;}
.x7{left:615.574000pt;}
.xa0{left:619.561227pt;}
.x9d{left:623.653867pt;}
.xb9{left:627.677867pt;}
.x55{left:629.132800pt;}
.xe{left:630.694000pt;}
.xb1{left:631.737867pt;}
.xb2{left:634.999867pt;}
.xb8{left:636.101067pt;}
.x56{left:644.608040pt;}
.xaa{left:646.577733pt;}
.xf{left:672.393467pt;}
}




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