
    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_dfe427c17dbf1d1cde676ffb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3d59ea68458058a39897abc8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.103000;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_4a19b911eeab4bd7fcb5128e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.059000;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_020301902c0cff63d4977f56.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_f8d8e580509cbb315142226f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.456000;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_03a774e1d9ceb68746bef266.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_71e3ab8f443514e3350a6113.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.094000;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_f1c53ce1cbffe2820a53ffbf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.049805;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_818a4f16bcf25153252802d0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_799658ac09f92647f31b5c05.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.216000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.221237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221237,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.519305px;}
.ls7{letter-spacing:1.569800px;}
.ls5{letter-spacing:1.601837px;}
.ls8{letter-spacing:1.890167px;}
.ls6{letter-spacing:1.922204px;}
.lsf{letter-spacing:6.796950px;}
.ls3{letter-spacing:7.964215px;}
.ls4{letter-spacing:13.648276px;}
.ls16{letter-spacing:13.974529px;}
.ls14{letter-spacing:14.300783px;}
.lsc{letter-spacing:15.740000px;}
.lse{letter-spacing:15.861544px;}
.ls11{letter-spacing:16.367056px;}
.lsb{letter-spacing:17.198533px;}
.ls15{letter-spacing:17.345816px;}
.ls1{letter-spacing:17.521632px;}
.ls12{letter-spacing:20.771479px;}
.ls13{letter-spacing:21.097733px;}
.ls10{letter-spacing:24.904025px;}
.lsd{letter-spacing:25.524324px;}
.lsa{letter-spacing:27.101400px;}
.ls9{letter-spacing:29.142000px;}
.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;}
}
.ws73{word-spacing:-34.275521px;}
.wsb0{word-spacing:-30.667838px;}
.ws6a{word-spacing:-23.458069px;}
.ws5f{word-spacing:-23.275753px;}
.ws80{word-spacing:-22.850347px;}
.ws6d{word-spacing:-22.546486px;}
.ws72{word-spacing:-22.485714px;}
.ws2d{word-spacing:-22.364170px;}
.ws71{word-spacing:-22.303397px;}
.ws5d{word-spacing:-22.242625px;}
.ws30{word-spacing:-22.181853px;}
.ws9a{word-spacing:-22.121081px;}
.wse2{word-spacing:-22.076494px;}
.ws65{word-spacing:-22.060309px;}
.wsff{word-spacing:-22.022118px;}
.wsf6{word-spacing:-21.967742px;}
.ws68{word-spacing:-21.938764px;}
.ws98{word-spacing:-21.817220px;}
.ws55{word-spacing:-21.682463px;}
.ws47{word-spacing:-21.634903px;}
.ws6b{word-spacing:-21.574131px;}
.wsb5{word-spacing:-21.532738px;}
.ws37{word-spacing:-21.513359px;}
.wsae{word-spacing:-21.478362px;}
.ws99{word-spacing:-21.452587px;}
.ws6c{word-spacing:-21.391814px;}
.wsaf{word-spacing:-21.315235px;}
.ws18{word-spacing:-21.270270px;}
.ws17{word-spacing:-21.209498px;}
.wse1{word-spacing:-21.206484px;}
.ws6f{word-spacing:-21.148726px;}
.wsbd{word-spacing:-21.043357px;}
.ws6e{word-spacing:-21.027181px;}
.wsf4{word-spacing:-20.988982px;}
.ws69{word-spacing:-20.844865px;}
.wsf2{word-spacing:-20.825855px;}
.ws5b{word-spacing:-20.784092px;}
.wsb6{word-spacing:-20.662728px;}
.ws84{word-spacing:-20.662548px;}
.wse9{word-spacing:-20.608352px;}
.ws4e{word-spacing:-20.601776px;}
.wsce{word-spacing:-20.553977px;}
.ws10b{word-spacing:-20.499601px;}
.ws27{word-spacing:-20.480231px;}
.wsec{word-spacing:-20.445226px;}
.ws5e{word-spacing:-20.419459px;}
.wsd1{word-spacing:-20.390850px;}
.ws90{word-spacing:-20.297915px;}
.wsf9{word-spacing:-20.282099px;}
.wsc{word-spacing:-20.237143px;}
.wsd{word-spacing:-20.176370px;}
.ws57{word-spacing:-20.115598px;}
.ws56{word-spacing:-20.054826px;}
.wsee{word-spacing:-20.010221px;}
.ws61{word-spacing:-19.955845px;}
.ws11{word-spacing:-19.872509px;}
.ws7b{word-spacing:-19.811737px;}
.ws49{word-spacing:-19.750965px;}
.ws32{word-spacing:-19.690193px;}
.ws8d{word-spacing:-19.629421px;}
.wsc1{word-spacing:-19.520840px;}
.ws67{word-spacing:-19.507876px;}
.ws52{word-spacing:-19.412089px;}
.wse{word-spacing:-19.386332px;}
.wsa4{word-spacing:-19.325560px;}
.ws70{word-spacing:-19.264787px;}
.ws10c{word-spacing:-19.248962px;}
.ws66{word-spacing:-19.204015px;}
.wsf3{word-spacing:-19.194587px;}
.wsa5{word-spacing:-19.143243px;}
.ws50{word-spacing:-19.085836px;}
.ws46{word-spacing:-19.082471px;}
.ws51{word-spacing:-19.031460px;}
.ws96{word-spacing:-19.021699px;}
.ws64{word-spacing:-18.960926px;}
.ws97{word-spacing:-18.900154px;}
.ws5{word-spacing:-18.778610px;}
.ws45{word-spacing:-18.759582px;}
.ws8e{word-spacing:-18.717838px;}
.ws105{word-spacing:-18.705206px;}
.ws3a{word-spacing:-18.657065px;}
.wsc4{word-spacing:-18.596455px;}
.ws21{word-spacing:-18.567176px;}
.ws1c{word-spacing:-18.535521px;}
.wsd7{word-spacing:-18.487704px;}
.ws48{word-spacing:-18.474749px;}
.wsef{word-spacing:-18.433328px;}
.ws2b{word-spacing:-18.353204px;}
.wse8{word-spacing:-18.324577px;}
.ws4{word-spacing:-18.292432px;}
.ws26{word-spacing:-18.231660px;}
.wsc2{word-spacing:-18.215826px;}
.ws2f{word-spacing:-18.170888px;}
.wscd{word-spacing:-18.107075px;}
.ws54{word-spacing:-18.068719px;}
.ws78{word-spacing:-17.988571px;}
.wsf1{word-spacing:-17.943948px;}
.ws8c{word-spacing:-17.867027px;}
.wsd5{word-spacing:-17.835197px;}
.ws92{word-spacing:-17.806255px;}
.ws29{word-spacing:-17.745482px;}
.ws7f{word-spacing:-17.623938px;}
.wsd8{word-spacing:-17.617694px;}
.wsb4{word-spacing:-17.508943px;}
.ws28{word-spacing:-17.502394px;}
.ws34{word-spacing:-17.441621px;}
.wse4{word-spacing:-17.400192px;}
.ws83{word-spacing:-17.380849px;}
.ws4f{word-spacing:-17.367746px;}
.wsac{word-spacing:-17.345816px;}
.ws19{word-spacing:-17.320077px;}
.ws103{word-spacing:-17.291441px;}
.wsf7{word-spacing:-17.237065px;}
.ws24{word-spacing:-17.198533px;}
.ws74{word-spacing:-17.137760px;}
.wsed{word-spacing:-17.128314px;}
.wsd3{word-spacing:-17.019563px;}
.wsb1{word-spacing:-16.965187px;}
.ws94{word-spacing:-16.955444px;}
.ws60{word-spacing:-16.935952px;}
.ws7e{word-spacing:-16.833899px;}
.wsb9{word-spacing:-16.802060px;}
.ws10e{word-spacing:-16.747685px;}
.wsfa{word-spacing:-16.693309px;}
.ws8f{word-spacing:-16.651583px;}
.ws20{word-spacing:-16.590811px;}
.ws3c{word-spacing:-16.469266px;}
.ws104{word-spacing:-16.421431px;}
.ws1a{word-spacing:-16.408494px;}
.ws36{word-spacing:-16.286950px;}
.ws41{word-spacing:-16.274095px;}
.ws95{word-spacing:-16.226177px;}
.wsc6{word-spacing:-16.203929px;}
.ws33{word-spacing:-16.165405px;}
.ws4b{word-spacing:-16.104633px;}
.ws108{word-spacing:-16.095178px;}
.wsa7{word-spacing:-16.043861px;}
.ws12{word-spacing:-15.983089px;}
.ws31{word-spacing:-15.922316px;}
.wsb{word-spacing:-15.800772px;}
.ws10a{word-spacing:-15.768924px;}
.ws44{word-spacing:-15.640567px;}
.ws35{word-spacing:-15.557683px;}
.wseb{word-spacing:-15.551422px;}
.ws81{word-spacing:-15.496911px;}
.wsa2{word-spacing:-15.436139px;}
.wsa3{word-spacing:-15.314594px;}
.ws91{word-spacing:-15.253822px;}
.ws10{word-spacing:-15.193050px;}
.ws39{word-spacing:-15.132278px;}
.wsd0{word-spacing:-15.062041px;}
.ws5c{word-spacing:-15.010733px;}
.wsa9{word-spacing:-15.007666px;}
.ws59{word-spacing:-14.949961px;}
.ws79{word-spacing:-14.889189px;}
.ws87{word-spacing:-14.767645px;}
.wse6{word-spacing:-14.735788px;}
.ws86{word-spacing:-14.706872px;}
.wsab{word-spacing:-14.627036px;}
.ws4d{word-spacing:-14.585328px;}
.ws106{word-spacing:-14.572661px;}
.ws75{word-spacing:-14.463784px;}
.ws4c{word-spacing:-14.403011px;}
.ws76{word-spacing:-14.342239px;}
.wsd6{word-spacing:-14.300783px;}
.wsa6{word-spacing:-14.281467px;}
.wsa0{word-spacing:-14.220695px;}
.wsbf{word-spacing:-13.757027px;}
.ws2a{word-spacing:-13.734517px;}
.ws107{word-spacing:-13.702651px;}
.wsbe{word-spacing:-13.648276px;}
.wsc0{word-spacing:-13.593900px;}
.ws62{word-spacing:-13.552201px;}
.wsb8{word-spacing:-13.158895px;}
.ws109{word-spacing:-13.104520px;}
.ws1d{word-spacing:-13.066023px;}
.wse0{word-spacing:-13.050144px;}
.wsbb{word-spacing:-12.941393px;}
.ws22{word-spacing:-12.905867px;}
.ws2e{word-spacing:-12.883706px;}
.ws102{word-spacing:-12.832642px;}
.ws8{word-spacing:-12.701390px;}
.wsb7{word-spacing:-12.669515px;}
.ws16{word-spacing:-12.640618px;}
.ws10f{word-spacing:-12.506388px;}
.ws43{word-spacing:-12.474072px;}
.ws23{word-spacing:-12.359225px;}
.ws63{word-spacing:-12.336757px;}
.wsc5{word-spacing:-12.288886px;}
.ws13{word-spacing:-12.275984px;}
.wsfe{word-spacing:-12.234510px;}
.ws14{word-spacing:-12.215212px;}
.ws3b{word-spacing:-12.032896px;}
.ws111{word-spacing:-12.017008px;}
.ws42{word-spacing:-11.994300px;}
.ws9b{word-spacing:-11.850579px;}
.ws25{word-spacing:-11.729035px;}
.wsf0{word-spacing:-11.690754px;}
.ws82{word-spacing:-11.668262px;}
.wsc3{word-spacing:-11.582003px;}
.wsa1{word-spacing:-11.546718px;}
.ws6{word-spacing:-11.303629px;}
.wse5{word-spacing:-11.201374px;}
.ws4a{word-spacing:-11.182085px;}
.ws10d{word-spacing:-11.092622px;}
.ws15{word-spacing:-11.060540px;}
.wsf5{word-spacing:-11.038247px;}
.ws7a{word-spacing:-10.999768px;}
.wsea{word-spacing:-10.929496px;}
.wsd4{word-spacing:-10.820744px;}
.ws88{word-spacing:-10.817452px;}
.ws9d{word-spacing:-10.695907px;}
.wsa{word-spacing:-10.513591px;}
.wsaa{word-spacing:-10.494491px;}
.wsd2{word-spacing:-10.276988px;}
.ws58{word-spacing:-10.209730px;}
.ws9c{word-spacing:-10.148957px;}
.wsba{word-spacing:-10.113862px;}
.ws8a{word-spacing:-9.845096px;}
.wse7{word-spacing:-9.841984px;}
.wsfd{word-spacing:-9.624481px;}
.wsfb{word-spacing:-9.406979px;}
.ws1b{word-spacing:-9.298147px;}
.ws9{word-spacing:-9.176602px;}
.wsfc{word-spacing:-9.135101px;}
.ws85{word-spacing:-9.115830px;}
.ws77{word-spacing:-8.994286px;}
.wsbc{word-spacing:-8.917598px;}
.wse3{word-spacing:-8.754472px;}
.ws93{word-spacing:-8.508108px;}
.wsc9{word-spacing:-8.265091px;}
.ws2c{word-spacing:-7.657297px;}
.wsf8{word-spacing:-7.177579px;}
.ws101{word-spacing:-6.470696px;}
.ws7{word-spacing:-5.894903px;}
.ws9f{word-spacing:-5.651815px;}
.ws1e{word-spacing:-4.922548px;}
.wsdf{word-spacing:-4.676302px;}
.ws100{word-spacing:-4.567550px;}
.wsb3{word-spacing:-4.078170px;}
.wsdd{word-spacing:-3.099409px;}
.wsde{word-spacing:-2.718780px;}
.wsda{word-spacing:-1.196263px;}
.ws8b{word-spacing:-1.154672px;}
.wsdc{word-spacing:-1.141888px;}
.wsdb{word-spacing:-0.870010px;}
.ws1f{word-spacing:-0.668494px;}
.wsd9{word-spacing:-0.652507px;}
.ws3{word-spacing:-0.422208px;}
.ws3f{word-spacing:-0.307058px;}
.ws2{word-spacing:-0.211104px;}
.ws1{word-spacing:-0.140736px;}
.ws5a{word-spacing:-0.108751px;}
.ws7c{word-spacing:-0.060772px;}
.ws3d{word-spacing:-0.054376px;}
.ws0{word-spacing:0.000000px;}
.ws38{word-spacing:0.054376px;}
.ws7d{word-spacing:0.060772px;}
.ws3e{word-spacing:0.271878px;}
.wsad{word-spacing:1.087512px;}
.wscb{word-spacing:1.685644px;}
.ws89{word-spacing:1.762394px;}
.ws9e{word-spacing:2.795521px;}
.wsf{word-spacing:3.160154px;}
.wsca{word-spacing:5.926940px;}
.wsa8{word-spacing:6.525072px;}
.wscf{word-spacing:6.960077px;}
.wscc{word-spacing:7.340706px;}
.ws110{word-spacing:9.896359px;}
.wsc8{word-spacing:10.603242px;}
.wsc7{word-spacing:10.929496px;}
.wsb2{word-spacing:16.367056px;}
.ws40{word-spacing:306.188401px;}
.ws53{word-spacing:307.167764px;}
._4{margin-left:-7.839614px;}
._f{margin-left:-6.198764px;}
._0{margin-left:-5.066496px;}
._9{margin-left:-3.828649px;}
._a{margin-left:-2.712346px;}
._11{margin-left:-1.093900px;}
._1b{width:2.562939px;}
._1d{width:6.259537px;}
._1e{width:7.957990px;}
._1a{width:9.480463px;}
._e{width:11.303629px;}
._d{width:12.944479px;}
._14{width:14.156754px;}
._c{width:15.176984px;}
._1{width:16.184640px;}
._3{width:17.198533px;}
._2{width:18.474749px;}
._b{width:19.690193px;}
._5{width:21.513359px;}
._8{width:23.275753px;}
._6{width:25.098919px;}
._10{width:26.314363px;}
._15{width:27.894440px;}
._16{width:28.927567px;}
._7{width:30.264556px;}
._1c{width:32.532362px;}
._12{width:33.546254px;}
._13{width:35.695685px;}
._1f{width:37.374903px;}
._20{width:38.954980px;}
._19{width:138.820907px;}
._17{width:171.498536px;}
._18{width:335.051891px;}
.fc2{color:transparent;}
.fc1{color:rgb(191,50,65);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:32.036736px;}
.fsc{font-size:38.444083px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:44.779800px;}
.fs7{font-size:47.977200px;}
.fsa{font-size:51.176400px;}
.fs9{font-size:54.375600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.770400px;}
.fs6{font-size:60.772200px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:70.368000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:2.458819px;}
.y49{bottom:8.367300px;}
.y9c{bottom:11.421096px;}
.yac{bottom:20.311291px;}
.y4a{bottom:22.116300px;}
.y8b{bottom:32.244975px;}
.y6{bottom:35.925007px;}
.y9b{bottom:41.207252px;}
.y48{bottom:43.540050px;}
.yab{bottom:50.097446px;}
.y8a{bottom:62.031130px;}
.y5{bottom:66.525004px;}
.y9a{bottom:71.001416px;}
.y107{bottom:72.138340px;}
.y45{bottom:72.175861px;}
.ye5{bottom:72.246544px;}
.y125{bottom:72.266565px;}
.y147{bottom:72.282898px;}
.y171{bottom:72.304513px;}
.y7a{bottom:73.134724px;}
.yc3{bottom:73.787611px;}
.y6f{bottom:74.837029px;}
.yaa{bottom:79.883601px;}
.y146{bottom:88.269324px;}
.y170{bottom:88.290940px;}
.y79{bottom:89.121150px;}
.y6e{bottom:89.206200px;}
.y106{bottom:89.747085px;}
.y44{bottom:89.784606px;}
.ye4{bottom:89.855289px;}
.y124{bottom:89.875310px;}
.yc2{bottom:91.396356px;}
.y89{bottom:91.817285px;}
.y4{bottom:97.125005px;}
.y99{bottom:100.787571px;}
.y145{bottom:104.255750px;}
.y105{bottom:107.355830px;}
.y43{bottom:107.393351px;}
.ye3{bottom:107.464034px;}
.y123{bottom:107.484055px;}
.ya9{bottom:109.677766px;}
.y16f{bottom:112.610427px;}
.y78{bottom:113.187300px;}
.y6d{bottom:114.906263px;}
.yc1{bottom:115.370989px;}
.y144{bottom:120.242177px;}
.y88{bottom:121.611450px;}
.y104{bottom:124.964575px;}
.y42{bottom:125.002095px;}
.ye2{bottom:125.072778px;}
.y122{bottom:125.092800px;}
.y197{bottom:128.398274px;}
.y16e{bottom:128.596853px;}
.y98{bottom:130.573727px;}
.yc0{bottom:132.979734px;}
.y7c{bottom:133.936950px;}
.y6c{bottom:135.479176px;}
.y143{bottom:136.228603px;}
.y25{bottom:139.264499px;}
.ya8{bottom:139.463921px;}
.y103{bottom:142.482161px;}
.y41{bottom:142.519682px;}
.ye1{bottom:142.681523px;}
.y196{bottom:144.384701px;}
.y16d{bottom:144.583280px;}
.y121{bottom:149.918755px;}
.ybf{bottom:150.588479px;}
.y87{bottom:151.397605px;}
.y6b{bottom:156.052089px;}
.y142{bottom:159.786832px;}
.y102{bottom:160.090906px;}
.y40{bottom:160.128427px;}
.ye0{bottom:160.199110px;}
.y97{bottom:160.359882px;}
.y16c{bottom:160.569706px;}
.y195{bottom:166.746666px;}
.y120{bottom:167.527500px;}
.ybe{bottom:168.106065px;}
.ya7{bottom:169.330168px;}
.y141{bottom:175.773258px;}
.y6a{bottom:176.548237px;}
.y101{bottom:177.699651px;}
.y3f{bottom:177.737172px;}
.ydf{bottom:177.807855px;}
.y86{bottom:181.183760px;}
.y194{bottom:182.733093px;}
.y16b{bottom:184.889193px;}
.ybd{bottom:185.714810px;}
.y96{bottom:190.154047px;}
.y11f{bottom:192.342779px;}
.y100{bottom:195.308396px;}
.yde{bottom:195.416600px;}
.y1c{bottom:196.933500px;}
.y69{bottom:197.121150px;}
.y193{bottom:198.719519px;}
.ya6{bottom:199.036232px;}
.y140{bottom:199.331487px;}
.y16a{bottom:200.875620px;}
.y3e{bottom:201.711805px;}
.ybc{bottom:203.323555px;}
.y24{bottom:209.518500px;}
.y1b{bottom:209.533503px;}
.y11e{bottom:209.951523px;}
.y85{bottom:210.889824px;}
.yff{bottom:212.917141px;}
.y192{bottom:214.705945px;}
.y13f{bottom:215.317913px;}
.y3d{bottom:219.320550px;}
.y95{bottom:219.860110px;}
.ybb{bottom:220.932300px;}
.ydd{bottom:221.867700px;}
.y23{bottom:222.118502px;}
.y1a{bottom:222.133505px;}
.y169{bottom:225.195107px;}
.y68{bottom:226.633234px;}
.y11d{bottom:227.469110px;}
.ya5{bottom:228.822387px;}
.y22{bottom:234.718504px;}
.y19{bottom:234.733496px;}
.y3c{bottom:236.929295px;}
.y191{bottom:237.067911px;}
.y13e{bottom:238.876142px;}
.yfe{bottom:240.219052px;}
.y84{bottom:240.675979px;}
.y168{bottom:241.181533px;}
.ydc{bottom:244.147950px;}
.y11c{bottom:245.077855px;}
.y67{bottom:248.995200px;}
.y94{bottom:249.646265px;}
.y190{bottom:253.135901px;}
.yba{bottom:253.246743px;}
.y3b{bottom:254.538040px;}
.y13d{bottom:254.862569px;}
.yfd{bottom:257.827797px;}
.ya4{bottom:258.616551px;}
.y21{bottom:259.918497px;}
.y18{bottom:259.933500px;}
.y11b{bottom:262.686600px;}
.y167{bottom:265.501020px;}
.ydb{bottom:266.343300px;}
.y18f{bottom:269.122327px;}
.y83{bottom:270.462134px;}
.y3a{bottom:272.146785px;}
.y20{bottom:272.518500px;}
.y17{bottom:272.533503px;}
.yfc{bottom:275.436542px;}
.yaf{bottom:275.672952px;}
.y13c{bottom:278.420797px;}
.y93{bottom:279.432421px;}
.y166{bottom:281.487447px;}
.y66{bottom:282.308320px;}
.y18e{bottom:285.108754px;}
.y1f{bottom:285.118502px;}
.y16{bottom:285.133499px;}
.y11a{bottom:287.506910px;}
.ya3{bottom:288.402707px;}
.yda{bottom:288.538500px;}
.yae{bottom:289.282136px;}
.y39{bottom:289.755530px;}
.yfb{bottom:292.954128px;}
.y13b{bottom:294.407224px;}
.yb9{bottom:297.467700px;}
.y65{bottom:299.917065px;}
.y82{bottom:300.328382px;}
.yad{bottom:302.814390px;}
.y119{bottom:305.115655px;}
.y165{bottom:305.806934px;}
.y38{bottom:307.273116px;}
.y18d{bottom:307.470719px;}
.y92{bottom:309.218576px;}
.y1e{bottom:310.318501px;}
.y15{bottom:310.333501px;}
.y13a{bottom:310.393650px;}
.yfa{bottom:310.562873px;}
.yd9{bottom:310.733850px;}
.y64{bottom:317.525810px;}
.ya2{bottom:318.188862px;}
.yb8{bottom:321.533850px;}
.y164{bottom:321.793360px;}
.y118{bottom:322.724400px;}
.y1d{bottom:322.918500px;}
.y14{bottom:322.933500px;}
.y18c{bottom:323.457145px;}
.y37{bottom:324.881861px;}
.yf9{bottom:328.171618px;}
.y81{bottom:330.122546px;}
.y63{bottom:335.134555px;}
.yd8{bottom:335.480250px;}
.y163{bottom:337.861350px;}
.y91{bottom:339.004731px;}
.y18b{bottom:339.443572px;}
.y36{bottom:342.490606px;}
.y139{bottom:343.892882px;}
.yf8{bottom:345.780363px;}
.y117{bottom:346.612438px;}
.ya1{bottom:347.975017px;}
.y13{bottom:348.133500px;}
.y62{bottom:352.743300px;}
.y80{bottom:359.908701px;}
.yd7{bottom:361.587300px;}
.y18a{bottom:361.805537px;}
.y162{bottom:362.186594px;}
.y116{bottom:364.221183px;}
.y90{bottom:368.798896px;}
.yf7{bottom:373.082274px;}
.y35{bottom:377.358656px;}
.ya0{bottom:377.761173px;}
.y189{bottom:377.791964px;}
.y161{bottom:378.173021px;}
.y61{bottom:380.721150px;}
.y115{bottom:381.829928px;}
.yd6{bottom:383.782650px;}
.y12{bottom:386.785499px;}
.y7f{bottom:389.694857px;}
.yf6{bottom:390.691019px;}
.y188{bottom:393.778390px;}
.y160{bottom:394.159447px;}
.y8f{bottom:398.585051px;}
.y138{bottom:399.332322px;}
.yd5{bottom:405.977850px;}
.y9f{bottom:407.555337px;}
.y11{bottom:408.044999px;}
.yf5{bottom:408.299764px;}
.y15f{bottom:410.145874px;}
.y60{bottom:414.920391px;}
.y187{bottom:416.140356px;}
.y137{bottom:416.941067px;}
.y114{bottom:417.457631px;}
.y7e{bottom:419.481012px;}
.yf4{bottom:425.817351px;}
.y15e{bottom:426.132300px;}
.yd4{bottom:428.258250px;}
.y8e{bottom:428.371206px;}
.y34{bottom:431.704196px;}
.y186{bottom:432.126782px;}
.y136{bottom:434.549812px;}
.y9e{bottom:437.341492px;}
.yf3{bottom:443.426096px;}
.y185{bottom:448.113208px;}
.y33{bottom:449.221782px;}
.y7d{bottom:449.267167px;}
.yd3{bottom:450.453450px;}
.y15d{bottom:450.478547px;}
.y135{bottom:452.158557px;}
.y8d{bottom:458.157362px;}
.yf2{bottom:461.034841px;}
.y5f{bottom:462.884850px;}
.y15c{bottom:466.464973px;}
.y32{bottom:466.830527px;}
.y10{bottom:466.864502px;}
.y9d{bottom:467.127648px;}
.y134{bottom:469.767302px;}
.y184{bottom:470.475174px;}
.y113{bottom:472.653981px;}
.yd2{bottom:475.114950px;}
.yf1{bottom:478.643586px;}
.y5e{bottom:480.402437px;}
.y15b{bottom:482.451400px;}
.y31{bottom:484.439272px;}
.yf{bottom:484.864502px;}
.y183{bottom:486.461600px;}
.y133{bottom:487.376047px;}
.y112{bottom:490.262726px;}
.y5d{bottom:498.011182px;}
.yd1{bottom:501.222000px;}
.y30{bottom:502.048017px;}
.y182{bottom:502.448027px;}
.ye{bottom:502.864502px;}
.y132{bottom:504.984792px;}
.y15a{bottom:506.770887px;}
.y111{bottom:507.871471px;}
.y5c{bottom:515.619927px;}
.yf0{bottom:516.747755px;}
.y181{bottom:518.434453px;}
.y2f{bottom:519.656762px;}
.yd{bottom:520.864502px;}
.y131{bottom:522.502378px;}
.y159{bottom:522.757313px;}
.yd0{bottom:523.417200px;}
.y110{bottom:525.480216px;}
.y5b{bottom:533.228672px;}
.y2e{bottom:537.265507px;}
.yc{bottom:538.864499px;}
.y130{bottom:540.111123px;}
.y180{bottom:540.796419px;}
.y10f{bottom:543.088961px;}
.ycf{bottom:545.697600px;}
.y158{bottom:547.076800px;}
.y5a{bottom:550.837416px;}
.yb7{bottom:551.452325px;}
.y2d{bottom:554.874252px;}
.y17f{bottom:556.864408px;}
.yb{bottom:556.864499px;}
.y12f{bottom:557.719868px;}
.y10e{bottom:560.697706px;}
.y157{bottom:563.063227px;}
.yef{bottom:568.024299px;}
.y59{bottom:568.446161px;}
.yb6{bottom:569.061070px;}
.yce{bottom:570.358950px;}
.y2c{bottom:572.391839px;}
.y17e{bottom:572.850835px;}
.y10d{bottom:578.215293px;}
.y12e{bottom:582.894752px;}
.yee{bottom:585.633044px;}
.y58{bottom:586.054906px;}
.yb5{bottom:586.669815px;}
.y156{bottom:587.382714px;}
.y2b{bottom:590.000584px;}
.y17d{bottom:595.212800px;}
.y10c{bottom:595.824038px;}
.ycd{bottom:596.466150px;}
.y12d{bottom:600.503497px;}
.yed{bottom:603.241789px;}
.y155{bottom:603.369140px;}
.y57{bottom:603.572493px;}
.yb4{bottom:604.278560px;}
.y17c{bottom:611.199227px;}
.y10b{bottom:613.432782px;}
.y12c{bottom:618.112242px;}
.ycc{bottom:618.661350px;}
.y154{bottom:619.355567px;}
.yec{bottom:620.850534px;}
.y56{bottom:621.181238px;}
.yb3{bottom:621.887305px;}
.y17b{bottom:627.185653px;}
.y10a{bottom:631.041527px;}
.y153{bottom:635.341993px;}
.y12b{bottom:635.629829px;}
.yeb{bottom:638.368120px;}
.y55{bottom:638.789983px;}
.yb2{bottom:639.496050px;}
.ycb{bottom:640.941600px;}
.y77{bottom:642.010910px;}
.y17a{bottom:643.172080px;}
.y2a{bottom:644.938653px;}
.ya{bottom:645.510000px;}
.y12a{bottom:653.238573px;}
.yea{bottom:655.976865px;}
.y76{bottom:659.619654px;}
.y152{bottom:659.661480px;}
.y54{bottom:662.764616px;}
.yca{bottom:663.136950px;}
.y29{bottom:663.307050px;}
.y179{bottom:665.534045px;}
.y109{bottom:666.760388px;}
.y9{bottom:666.771000px;}
.y129{bottom:670.847318px;}
.yb1{bottom:671.720908px;}
.ye9{bottom:673.585610px;}
.y151{bottom:675.647907px;}
.y75{bottom:677.228399px;}
.y53{bottom:680.373361px;}
.y178{bottom:681.520472px;}
.yc9{bottom:685.332300px;}
.y128{bottom:688.456063px;}
.yb0{bottom:688.563750px;}
.ye8{bottom:691.194355px;}
.y150{bottom:691.634333px;}
.y74{bottom:694.837144px;}
.y52{bottom:697.982106px;}
.y177{bottom:703.882437px;}
.y127{bottom:706.064808px;}
.y8{bottom:707.398501px;}
.y28{bottom:707.796954px;}
.ye7{bottom:708.803100px;}
.yc8{bottom:710.078700px;}
.y73{bottom:712.354731px;}
.y51{bottom:715.590851px;}
.y14f{bottom:715.953820px;}
.y176{bottom:719.868863px;}
.y108{bottom:721.956739px;}
.y7{bottom:726.298500px;}
.y27{bottom:728.625882px;}
.y14e{bottom:731.940247px;}
.y50{bottom:733.199596px;}
.y175{bottom:735.855290px;}
.yc7{bottom:736.185750px;}
.y72{bottom:739.565484px;}
.y126{bottom:742.041951px;}
.ye6{bottom:744.349500px;}
.y26{bottom:749.366850px;}
.y4f{bottom:750.717182px;}
.y3{bottom:752.599495px;}
.y14d{bottom:756.259734px;}
.y71{bottom:757.083070px;}
.y174{bottom:758.217255px;}
.yc6{bottom:758.381100px;}
.y14c{bottom:772.246160px;}
.y173{bottom:774.203682px;}
.y4e{bottom:774.691815px;}
.yc5{bottom:780.576300px;}
.y4d{bottom:792.300560px;}
.y14b{bottom:796.565647px;}
.yc4{bottom:802.771650px;}
.y4c{bottom:809.909305px;}
.y14a{bottom:812.552074px;}
.y4b{bottom:827.518050px;}
.y149{bottom:828.538500px;}
.y47{bottom:855.161759px;}
.y7b{bottom:866.800981px;}
.y148{bottom:866.805571px;}
.y70{bottom:866.806200px;}
.y172{bottom:866.827187px;}
.y198{bottom:866.873298px;}
.y46{bottom:867.911700px;}
.y2{bottom:879.369000px;}
.y1{bottom:966.726000px;}
.h16{height:0.000000px;}
.h17{height:26.718137px;}
.h18{height:32.061765px;}
.h7{height:32.130000px;}
.he{height:37.345654px;}
.hd{height:40.012235px;}
.hf{height:41.220703px;}
.h14{height:42.171959px;}
.h13{height:42.680318px;}
.h15{height:45.348401px;}
.h12{height:45.444643px;}
.h6{height:45.900000px;}
.h11{height:47.796152px;}
.h3{height:48.195000px;}
.h10{height:48.285533px;}
.hb{height:50.683065px;}
.hc{height:53.965714px;}
.h2{height:55.080000px;}
.ha{height:62.486784px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:948.000000px;}
.h8{height:948.187800px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:-0.000600px;}
.w4{width:624.750000px;}
.w5{width:625.028040px;}
.w3{width:625.038540px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:72.275434px;}
.x34{left:85.020924px;}
.xa{left:86.648059px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x20{left:115.954532px;}
.x1d{left:121.270323px;}
.x23{left:125.522957px;}
.xf{left:139.509540px;}
.x10{left:141.284040px;}
.x25{left:143.731314px;}
.x5{left:147.288090px;}
.x6{left:153.234186px;}
.x1f{left:158.969917px;}
.x18{left:161.489640px;}
.x7{left:170.403978px;}
.x1c{left:173.145361px;}
.x1e{left:175.548098px;}
.x1a{left:177.122625px;}
.x2a{left:178.879328px;}
.x24{left:180.013363px;}
.x29{left:181.430908px;}
.x16{left:182.837119px;}
.x15{left:187.766790px;}
.x22{left:191.424596px;}
.x11{left:196.273921px;}
.x8{left:199.927440px;}
.x4{left:203.484001px;}
.x9{left:206.126204px;}
.xd{left:207.240840px;}
.x1b{left:208.569795px;}
.x14{left:214.808906px;}
.x28{left:217.429448px;}
.x27{left:224.942433px;}
.x19{left:226.536452px;}
.x30{left:234.711362px;}
.x2f{left:236.664540px;}
.x2d{left:238.280190px;}
.xe{left:244.051347px;}
.x21{left:250.734653px;}
.x2c{left:253.077090px;}
.x32{left:255.115628px;}
.xc{left:263.616706px;}
.x31{left:265.401323px;}
.x12{left:274.932240px;}
.x2e{left:276.547019px;}
.x33{left:278.157072px;}
.x26{left:287.938106px;}
.x13{left:292.620390px;}
.x2b{left:352.423600px;}
.x17{left:395.603040px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.350493pt;}
.ls7{letter-spacing:1.395378pt;}
.ls5{letter-spacing:1.423855pt;}
.ls8{letter-spacing:1.680149pt;}
.ls6{letter-spacing:1.708626pt;}
.lsf{letter-spacing:6.041733pt;}
.ls3{letter-spacing:7.079302pt;}
.ls4{letter-spacing:12.131801pt;}
.ls16{letter-spacing:12.421804pt;}
.ls14{letter-spacing:12.711807pt;}
.lsc{letter-spacing:13.991111pt;}
.lse{letter-spacing:14.099150pt;}
.ls11{letter-spacing:14.548494pt;}
.lsb{letter-spacing:15.287585pt;}
.ls15{letter-spacing:15.418503pt;}
.ls1{letter-spacing:15.574784pt;}
.ls12{letter-spacing:18.463537pt;}
.ls13{letter-spacing:18.753540pt;}
.ls10{letter-spacing:22.136911pt;}
.lsd{letter-spacing:22.688288pt;}
.lsa{letter-spacing:24.090133pt;}
.ls9{letter-spacing:25.904000pt;}
.ws73{word-spacing:-30.467130pt;}
.wsb0{word-spacing:-27.260301pt;}
.ws6a{word-spacing:-20.851617pt;}
.ws5f{word-spacing:-20.689558pt;}
.ws80{word-spacing:-20.311420pt;}
.ws6d{word-spacing:-20.041321pt;}
.ws72{word-spacing:-19.987301pt;}
.ws2d{word-spacing:-19.879262pt;}
.ws71{word-spacing:-19.825242pt;}
.ws5d{word-spacing:-19.771222pt;}
.ws30{word-spacing:-19.717203pt;}
.ws9a{word-spacing:-19.663183pt;}
.wse2{word-spacing:-19.623550pt;}
.ws65{word-spacing:-19.609163pt;}
.wsff{word-spacing:-19.575216pt;}
.wsf6{word-spacing:-19.526882pt;}
.ws68{word-spacing:-19.501124pt;}
.ws98{word-spacing:-19.393084pt;}
.ws55{word-spacing:-19.273300pt;}
.ws47{word-spacing:-19.231025pt;}
.ws6b{word-spacing:-19.177005pt;}
.wsb5{word-spacing:-19.140211pt;}
.ws37{word-spacing:-19.122986pt;}
.wsae{word-spacing:-19.091877pt;}
.ws99{word-spacing:-19.068966pt;}
.ws6c{word-spacing:-19.014946pt;}
.wsaf{word-spacing:-18.946876pt;}
.ws18{word-spacing:-18.906907pt;}
.ws17{word-spacing:-18.852887pt;}
.wse1{word-spacing:-18.850208pt;}
.ws6f{word-spacing:-18.798867pt;}
.wsbd{word-spacing:-18.705206pt;}
.ws6e{word-spacing:-18.690828pt;}
.wsf4{word-spacing:-18.656873pt;}
.ws69{word-spacing:-18.528769pt;}
.wsf2{word-spacing:-18.511871pt;}
.ws5b{word-spacing:-18.474749pt;}
.wsb6{word-spacing:-18.366869pt;}
.ws84{word-spacing:-18.366709pt;}
.wse9{word-spacing:-18.318535pt;}
.ws4e{word-spacing:-18.312690pt;}
.wsce{word-spacing:-18.270202pt;}
.ws10b{word-spacing:-18.221868pt;}
.ws27{word-spacing:-18.204650pt;}
.wsec{word-spacing:-18.173534pt;}
.ws5e{word-spacing:-18.150630pt;}
.wsd1{word-spacing:-18.125200pt;}
.ws90{word-spacing:-18.042591pt;}
.wsf9{word-spacing:-18.028532pt;}
.wsc{word-spacing:-17.988571pt;}
.wsd{word-spacing:-17.934551pt;}
.ws57{word-spacing:-17.880532pt;}
.ws56{word-spacing:-17.826512pt;}
.wsee{word-spacing:-17.786863pt;}
.ws61{word-spacing:-17.738529pt;}
.ws11{word-spacing:-17.664453pt;}
.ws7b{word-spacing:-17.610433pt;}
.ws49{word-spacing:-17.556413pt;}
.ws32{word-spacing:-17.502394pt;}
.ws8d{word-spacing:-17.448374pt;}
.wsc1{word-spacing:-17.351858pt;}
.ws67{word-spacing:-17.340334pt;}
.ws52{word-spacing:-17.255190pt;}
.wse{word-spacing:-17.232295pt;}
.wsa4{word-spacing:-17.178275pt;}
.ws70{word-spacing:-17.124255pt;}
.ws10c{word-spacing:-17.110189pt;}
.ws66{word-spacing:-17.070236pt;}
.wsf3{word-spacing:-17.061855pt;}
.wsa5{word-spacing:-17.016216pt;}
.ws50{word-spacing:-16.965187pt;}
.ws46{word-spacing:-16.962196pt;}
.ws51{word-spacing:-16.916853pt;}
.ws96{word-spacing:-16.908177pt;}
.ws64{word-spacing:-16.854157pt;}
.ws97{word-spacing:-16.800137pt;}
.ws5{word-spacing:-16.692098pt;}
.ws45{word-spacing:-16.675184pt;}
.ws8e{word-spacing:-16.638078pt;}
.ws105{word-spacing:-16.626850pt;}
.ws3a{word-spacing:-16.584058pt;}
.wsc4{word-spacing:-16.530182pt;}
.ws21{word-spacing:-16.504157pt;}
.ws1c{word-spacing:-16.476019pt;}
.wsd7{word-spacing:-16.433515pt;}
.ws48{word-spacing:-16.421999pt;}
.wsef{word-spacing:-16.385181pt;}
.ws2b{word-spacing:-16.313959pt;}
.wse8{word-spacing:-16.288513pt;}
.ws4{word-spacing:-16.259940pt;}
.ws26{word-spacing:-16.205920pt;}
.wsc2{word-spacing:-16.191845pt;}
.ws2f{word-spacing:-16.151900pt;}
.wscd{word-spacing:-16.095178pt;}
.ws54{word-spacing:-16.061084pt;}
.ws78{word-spacing:-15.989841pt;}
.wsf1{word-spacing:-15.950176pt;}
.ws8c{word-spacing:-15.881802pt;}
.wsd5{word-spacing:-15.853508pt;}
.ws92{word-spacing:-15.827782pt;}
.ws29{word-spacing:-15.773762pt;}
.ws7f{word-spacing:-15.665723pt;}
.wsd8{word-spacing:-15.660173pt;}
.wsb4{word-spacing:-15.563505pt;}
.ws28{word-spacing:-15.557683pt;}
.ws34{word-spacing:-15.503663pt;}
.wse4{word-spacing:-15.466837pt;}
.ws83{word-spacing:-15.449644pt;}
.ws4f{word-spacing:-15.437997pt;}
.wsac{word-spacing:-15.418503pt;}
.ws19{word-spacing:-15.395624pt;}
.ws103{word-spacing:-15.370170pt;}
.wsf7{word-spacing:-15.321836pt;}
.ws24{word-spacing:-15.287585pt;}
.ws74{word-spacing:-15.233565pt;}
.wsed{word-spacing:-15.225168pt;}
.wsd3{word-spacing:-15.128500pt;}
.wsb1{word-spacing:-15.080166pt;}
.ws94{word-spacing:-15.071506pt;}
.ws60{word-spacing:-15.054179pt;}
.ws7e{word-spacing:-14.963466pt;}
.wsb9{word-spacing:-14.935165pt;}
.ws10e{word-spacing:-14.886831pt;}
.wsfa{word-spacing:-14.838497pt;}
.ws8f{word-spacing:-14.801407pt;}
.ws20{word-spacing:-14.747387pt;}
.ws3c{word-spacing:-14.639348pt;}
.ws104{word-spacing:-14.596828pt;}
.ws1a{word-spacing:-14.585328pt;}
.ws36{word-spacing:-14.477289pt;}
.ws41{word-spacing:-14.465862pt;}
.ws95{word-spacing:-14.423269pt;}
.wsc6{word-spacing:-14.403492pt;}
.ws33{word-spacing:-14.369249pt;}
.ws4b{word-spacing:-14.315229pt;}
.ws108{word-spacing:-14.306825pt;}
.wsa7{word-spacing:-14.261210pt;}
.ws12{word-spacing:-14.207190pt;}
.ws31{word-spacing:-14.153170pt;}
.wsb{word-spacing:-14.045131pt;}
.ws10a{word-spacing:-14.016821pt;}
.ws44{word-spacing:-13.902726pt;}
.ws35{word-spacing:-13.829052pt;}
.wseb{word-spacing:-13.823486pt;}
.ws81{word-spacing:-13.775032pt;}
.wsa2{word-spacing:-13.721012pt;}
.wsa3{word-spacing:-13.612973pt;}
.ws91{word-spacing:-13.558953pt;}
.ws10{word-spacing:-13.504933pt;}
.ws39{word-spacing:-13.450914pt;}
.wsd0{word-spacing:-13.388481pt;}
.ws5c{word-spacing:-13.342874pt;}
.wsa9{word-spacing:-13.340147pt;}
.ws59{word-spacing:-13.288854pt;}
.ws79{word-spacing:-13.234835pt;}
.ws87{word-spacing:-13.126795pt;}
.wse6{word-spacing:-13.098478pt;}
.ws86{word-spacing:-13.072775pt;}
.wsab{word-spacing:-13.001810pt;}
.ws4d{word-spacing:-12.964736pt;}
.ws106{word-spacing:-12.953476pt;}
.ws75{word-spacing:-12.856697pt;}
.ws4c{word-spacing:-12.802677pt;}
.ws76{word-spacing:-12.748657pt;}
.wsd6{word-spacing:-12.711807pt;}
.wsa6{word-spacing:-12.694637pt;}
.wsa0{word-spacing:-12.640618pt;}
.wsbf{word-spacing:-12.228468pt;}
.ws2a{word-spacing:-12.208460pt;}
.ws107{word-spacing:-12.180134pt;}
.wsbe{word-spacing:-12.131801pt;}
.wsc0{word-spacing:-12.083467pt;}
.ws62{word-spacing:-12.046401pt;}
.wsb8{word-spacing:-11.696796pt;}
.ws109{word-spacing:-11.648462pt;}
.ws1d{word-spacing:-11.614243pt;}
.wse0{word-spacing:-11.600128pt;}
.wsbb{word-spacing:-11.503460pt;}
.ws22{word-spacing:-11.471882pt;}
.ws2e{word-spacing:-11.452183pt;}
.ws102{word-spacing:-11.406793pt;}
.ws8{word-spacing:-11.290124pt;}
.wsb7{word-spacing:-11.261791pt;}
.ws16{word-spacing:-11.236105pt;}
.ws10f{word-spacing:-11.116789pt;}
.ws43{word-spacing:-11.088064pt;}
.ws23{word-spacing:-10.985978pt;}
.ws63{word-spacing:-10.966006pt;}
.wsc5{word-spacing:-10.923454pt;}
.ws13{word-spacing:-10.911986pt;}
.wsfe{word-spacing:-10.875120pt;}
.ws14{word-spacing:-10.857966pt;}
.ws3b{word-spacing:-10.695907pt;}
.ws111{word-spacing:-10.681785pt;}
.ws42{word-spacing:-10.661600pt;}
.ws9b{word-spacing:-10.533848pt;}
.ws25{word-spacing:-10.425809pt;}
.wsf0{word-spacing:-10.391781pt;}
.ws82{word-spacing:-10.371789pt;}
.wsc3{word-spacing:-10.295114pt;}
.wsa1{word-spacing:-10.263749pt;}
.ws6{word-spacing:-10.047670pt;}
.wse5{word-spacing:-9.956777pt;}
.ws4a{word-spacing:-9.939631pt;}
.ws10d{word-spacing:-9.860109pt;}
.ws15{word-spacing:-9.831591pt;}
.wsf5{word-spacing:-9.811775pt;}
.ws7a{word-spacing:-9.777572pt;}
.wsea{word-spacing:-9.715107pt;}
.wsd4{word-spacing:-9.618439pt;}
.ws88{word-spacing:-9.615513pt;}
.ws9d{word-spacing:-9.507473pt;}
.wsa{word-spacing:-9.345414pt;}
.wsaa{word-spacing:-9.328436pt;}
.wsd2{word-spacing:-9.135101pt;}
.ws58{word-spacing:-9.075315pt;}
.ws9c{word-spacing:-9.021295pt;}
.wsba{word-spacing:-8.990099pt;}
.ws8a{word-spacing:-8.751197pt;}
.wse7{word-spacing:-8.748430pt;}
.wsfd{word-spacing:-8.555094pt;}
.wsfb{word-spacing:-8.361759pt;}
.ws1b{word-spacing:-8.265019pt;}
.ws9{word-spacing:-8.156980pt;}
.wsfc{word-spacing:-8.120090pt;}
.ws85{word-spacing:-8.102960pt;}
.ws77{word-spacing:-7.994921pt;}
.wsbc{word-spacing:-7.926754pt;}
.wse3{word-spacing:-7.781753pt;}
.ws93{word-spacing:-7.562763pt;}
.wsc9{word-spacing:-7.346748pt;}
.ws2c{word-spacing:-6.806486pt;}
.wsf8{word-spacing:-6.380070pt;}
.ws101{word-spacing:-5.751730pt;}
.ws7{word-spacing:-5.239914pt;}
.ws9f{word-spacing:-5.023835pt;}
.ws1e{word-spacing:-4.375598pt;}
.wsdf{word-spacing:-4.156713pt;}
.ws100{word-spacing:-4.060045pt;}
.wsb3{word-spacing:-3.625040pt;}
.wsdd{word-spacing:-2.755030pt;}
.wsde{word-spacing:-2.416693pt;}
.wsda{word-spacing:-1.063345pt;}
.ws8b{word-spacing:-1.026375pt;}
.wsdc{word-spacing:-1.015011pt;}
.wsdb{word-spacing:-0.773342pt;}
.ws1f{word-spacing:-0.594217pt;}
.wsd9{word-spacing:-0.580006pt;}
.ws3{word-spacing:-0.375296pt;}
.ws3f{word-spacing:-0.272941pt;}
.ws2{word-spacing:-0.187648pt;}
.ws1{word-spacing:-0.125099pt;}
.ws5a{word-spacing:-0.096668pt;}
.ws7c{word-spacing:-0.054020pt;}
.ws3d{word-spacing:-0.048334pt;}
.ws0{word-spacing:0.000000pt;}
.ws38{word-spacing:0.048334pt;}
.ws7d{word-spacing:0.054020pt;}
.ws3e{word-spacing:0.241669pt;}
.wsad{word-spacing:0.966677pt;}
.wscb{word-spacing:1.498350pt;}
.ws89{word-spacing:1.566572pt;}
.ws9e{word-spacing:2.484908pt;}
.wsf{word-spacing:2.809026pt;}
.wsca{word-spacing:5.268391pt;}
.wsa8{word-spacing:5.800064pt;}
.wscf{word-spacing:6.186735pt;}
.wscc{word-spacing:6.525072pt;}
.ws110{word-spacing:8.796764pt;}
.wsc8{word-spacing:9.425104pt;}
.wsc7{word-spacing:9.715107pt;}
.wsb2{word-spacing:14.548494pt;}
.ws40{word-spacing:272.167468pt;}
.ws53{word-spacing:273.038013pt;}
._4{margin-left:-6.968546pt;}
._f{margin-left:-5.510013pt;}
._0{margin-left:-4.503552pt;}
._9{margin-left:-3.403243pt;}
._a{margin-left:-2.410974pt;}
._11{margin-left:-0.972355pt;}
._1b{width:2.278168pt;}
._1d{width:5.564033pt;}
._1e{width:7.073769pt;}
._1a{width:8.427078pt;}
._e{width:10.047670pt;}
._d{width:11.506203pt;}
._14{width:12.583781pt;}
._c{width:13.490652pt;}
._1{width:14.386347pt;}
._3{width:15.287585pt;}
._2{width:16.421999pt;}
._b{width:17.502394pt;}
._5{width:19.122986pt;}
._8{width:20.689558pt;}
._6{width:22.310150pt;}
._10{width:23.390545pt;}
._15{width:24.795058pt;}
._16{width:25.713393pt;}
._7{width:26.901827pt;}
._1c{width:28.917655pt;}
._12{width:29.818893pt;}
._13{width:31.729498pt;}
._1f{width:33.222136pt;}
._20{width:34.626649pt;}
._19{width:123.396362pt;}
._17{width:152.443143pt;}
._18{width:297.823903pt;}
.fsb{font-size:28.477099pt;}
.fsc{font-size:34.172518pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:39.804267pt;}
.fs7{font-size:42.646400pt;}
.fsa{font-size:45.490133pt;}
.fs9{font-size:48.333867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:54.018133pt;}
.fs6{font-size:54.019733pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:62.549333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:2.185617pt;}
.y49{bottom:7.437600pt;}
.y9c{bottom:10.152086pt;}
.yac{bottom:18.054481pt;}
.y4a{bottom:19.658933pt;}
.y8b{bottom:28.662200pt;}
.y6{bottom:31.933340pt;}
.y9b{bottom:36.628668pt;}
.y48{bottom:38.702267pt;}
.yab{bottom:44.531063pt;}
.y8a{bottom:55.138782pt;}
.y5{bottom:59.133337pt;}
.y9a{bottom:63.112370pt;}
.y107{bottom:64.122969pt;}
.y45{bottom:64.156321pt;}
.ye5{bottom:64.219150pt;}
.y125{bottom:64.236947pt;}
.y147{bottom:64.251465pt;}
.y171{bottom:64.270679pt;}
.y7a{bottom:65.008643pt;}
.yc3{bottom:65.588987pt;}
.y6f{bottom:66.521803pt;}
.yaa{bottom:71.007646pt;}
.y146{bottom:78.461621pt;}
.y170{bottom:78.480835pt;}
.y79{bottom:79.218800pt;}
.y6e{bottom:79.294400pt;}
.y106{bottom:79.775186pt;}
.y44{bottom:79.808538pt;}
.ye4{bottom:79.871368pt;}
.y124{bottom:79.889165pt;}
.yc2{bottom:81.241205pt;}
.y89{bottom:81.615365pt;}
.y4{bottom:86.333337pt;}
.y99{bottom:89.588952pt;}
.y145{bottom:92.671778pt;}
.y105{bottom:95.427404pt;}
.y43{bottom:95.460756pt;}
.ye3{bottom:95.523585pt;}
.y123{bottom:95.541382pt;}
.ya9{bottom:97.491347pt;}
.y16f{bottom:100.098157pt;}
.y78{bottom:100.610933pt;}
.y6d{bottom:102.138901pt;}
.yc1{bottom:102.551990pt;}
.y144{bottom:106.881935pt;}
.y88{bottom:108.099067pt;}
.y104{bottom:111.079622pt;}
.y42{bottom:111.112974pt;}
.ye2{bottom:111.175803pt;}
.y122{bottom:111.193600pt;}
.y197{bottom:114.131799pt;}
.y16e{bottom:114.308314pt;}
.y98{bottom:116.065535pt;}
.yc0{bottom:118.204208pt;}
.y7c{bottom:119.055067pt;}
.y6c{bottom:120.425934pt;}
.y143{bottom:121.092092pt;}
.y25{bottom:123.790666pt;}
.ya8{bottom:123.967930pt;}
.y103{bottom:126.650810pt;}
.y41{bottom:126.684162pt;}
.ye1{bottom:126.828021pt;}
.y196{bottom:128.341956pt;}
.y16d{bottom:128.518471pt;}
.y121{bottom:133.261116pt;}
.ybf{bottom:133.856425pt;}
.y87{bottom:134.575649pt;}
.y6b{bottom:138.712968pt;}
.y142{bottom:142.032739pt;}
.y102{bottom:142.303028pt;}
.y40{bottom:142.336380pt;}
.ye0{bottom:142.399209pt;}
.y97{bottom:142.542117pt;}
.y16c{bottom:142.728628pt;}
.y195{bottom:148.219259pt;}
.y120{bottom:148.913333pt;}
.ybe{bottom:149.427613pt;}
.ya7{bottom:150.515705pt;}
.y141{bottom:156.242896pt;}
.y6a{bottom:156.931766pt;}
.y101{bottom:157.955245pt;}
.y3f{bottom:157.988597pt;}
.ydf{bottom:158.051427pt;}
.y86{bottom:161.052232pt;}
.y194{bottom:162.429416pt;}
.y16b{bottom:164.345950pt;}
.ybd{bottom:165.079831pt;}
.y96{bottom:169.025819pt;}
.y11f{bottom:170.971359pt;}
.y100{bottom:173.607463pt;}
.yde{bottom:173.703644pt;}
.y1c{bottom:175.052000pt;}
.y69{bottom:175.218800pt;}
.y193{bottom:176.639573pt;}
.ya6{bottom:176.921095pt;}
.y140{bottom:177.183544pt;}
.y16a{bottom:178.556106pt;}
.y3e{bottom:179.299382pt;}
.ybc{bottom:180.732049pt;}
.y24{bottom:186.238666pt;}
.y1b{bottom:186.252002pt;}
.y11e{bottom:186.623576pt;}
.y85{bottom:187.457621pt;}
.yff{bottom:189.259681pt;}
.y192{bottom:190.849729pt;}
.y13f{bottom:191.393701pt;}
.y3d{bottom:194.951600pt;}
.y95{bottom:195.431209pt;}
.ybb{bottom:196.384267pt;}
.ydd{bottom:197.215733pt;}
.y23{bottom:197.438668pt;}
.y1a{bottom:197.452004pt;}
.y169{bottom:200.173428pt;}
.y68{bottom:201.451764pt;}
.y11d{bottom:202.194765pt;}
.ya5{bottom:203.397677pt;}
.y22{bottom:208.638670pt;}
.y19{bottom:208.651996pt;}
.y3c{bottom:210.603818pt;}
.y191{bottom:210.727032pt;}
.y13e{bottom:212.334349pt;}
.yfe{bottom:213.528046pt;}
.y84{bottom:213.934204pt;}
.y168{bottom:214.383585pt;}
.ydc{bottom:217.020400pt;}
.y11c{bottom:217.846982pt;}
.y67{bottom:221.329067pt;}
.y94{bottom:221.907791pt;}
.y190{bottom:225.009690pt;}
.yba{bottom:225.108216pt;}
.y3b{bottom:226.256035pt;}
.y13d{bottom:226.544505pt;}
.yfd{bottom:229.180264pt;}
.ya4{bottom:229.881379pt;}
.y21{bottom:231.038664pt;}
.y18{bottom:231.052000pt;}
.y11b{bottom:233.499200pt;}
.y167{bottom:236.000907pt;}
.ydb{bottom:236.749600pt;}
.y18f{bottom:239.219846pt;}
.y83{bottom:240.410786pt;}
.y3a{bottom:241.908253pt;}
.y20{bottom:242.238666pt;}
.y17{bottom:242.252002pt;}
.yfc{bottom:244.832482pt;}
.yaf{bottom:245.042624pt;}
.y13c{bottom:247.485153pt;}
.y93{bottom:248.384374pt;}
.y166{bottom:250.211064pt;}
.y66{bottom:250.940729pt;}
.y18e{bottom:253.430003pt;}
.y1f{bottom:253.438668pt;}
.y16{bottom:253.451999pt;}
.y11a{bottom:255.561698pt;}
.ya3{bottom:256.357961pt;}
.yda{bottom:256.478667pt;}
.yae{bottom:257.139677pt;}
.y39{bottom:257.560471pt;}
.yfb{bottom:260.403670pt;}
.y13b{bottom:261.695310pt;}
.yb9{bottom:264.415733pt;}
.y65{bottom:266.592947pt;}
.y82{bottom:266.958561pt;}
.yad{bottom:269.168347pt;}
.y119{bottom:271.213916pt;}
.y165{bottom:271.828386pt;}
.y38{bottom:273.131659pt;}
.y18d{bottom:273.307306pt;}
.y92{bottom:274.860956pt;}
.y1e{bottom:275.838667pt;}
.y15{bottom:275.852001pt;}
.y13a{bottom:275.905467pt;}
.yfa{bottom:276.055887pt;}
.yd9{bottom:276.207867pt;}
.y64{bottom:282.245165pt;}
.ya2{bottom:282.834544pt;}
.yb8{bottom:285.807867pt;}
.y164{bottom:286.038542pt;}
.y118{bottom:286.866133pt;}
.y1d{bottom:287.038667pt;}
.y14{bottom:287.052000pt;}
.y18c{bottom:287.517463pt;}
.y37{bottom:288.783877pt;}
.yf9{bottom:291.708105pt;}
.y81{bottom:293.442263pt;}
.y63{bottom:297.897382pt;}
.yd8{bottom:298.204667pt;}
.y163{bottom:300.321200pt;}
.y91{bottom:301.337539pt;}
.y18b{bottom:301.727619pt;}
.y36{bottom:304.436094pt;}
.y139{bottom:305.682562pt;}
.yf8{bottom:307.360323pt;}
.y117{bottom:308.099945pt;}
.ya1{bottom:309.311126pt;}
.y13{bottom:309.452000pt;}
.y62{bottom:313.549600pt;}
.y80{bottom:319.918846pt;}
.yd7{bottom:321.410933pt;}
.y18a{bottom:321.604922pt;}
.y162{bottom:321.943639pt;}
.y116{bottom:323.752163pt;}
.y90{bottom:327.821241pt;}
.yf7{bottom:331.628688pt;}
.y35{bottom:335.429916pt;}
.ya0{bottom:335.787709pt;}
.y189{bottom:335.815079pt;}
.y161{bottom:336.153796pt;}
.y61{bottom:338.418800pt;}
.y115{bottom:339.404381pt;}
.yd6{bottom:341.140133pt;}
.y12{bottom:343.809333pt;}
.y7f{bottom:346.395428pt;}
.yf6{bottom:347.280906pt;}
.y188{bottom:350.025236pt;}
.y160{bottom:350.363953pt;}
.y8f{bottom:354.297823pt;}
.y138{bottom:354.962064pt;}
.yd5{bottom:360.869200pt;}
.y9f{bottom:362.271411pt;}
.y11{bottom:362.706666pt;}
.yf5{bottom:362.933124pt;}
.y15f{bottom:364.574110pt;}
.y60{bottom:368.818125pt;}
.y187{bottom:369.902538pt;}
.y137{bottom:370.614282pt;}
.y114{bottom:371.073449pt;}
.y7e{bottom:372.872011pt;}
.yf4{bottom:378.504312pt;}
.y15e{bottom:378.784267pt;}
.yd4{bottom:380.674000pt;}
.y8e{bottom:380.774406pt;}
.y34{bottom:383.737063pt;}
.y186{bottom:384.112695pt;}
.y136{bottom:386.266499pt;}
.y9e{bottom:388.747993pt;}
.yf3{bottom:394.156529pt;}
.y185{bottom:398.322852pt;}
.y33{bottom:399.308251pt;}
.y7d{bottom:399.348593pt;}
.yd3{bottom:400.403067pt;}
.y15d{bottom:400.425375pt;}
.y135{bottom:401.918717pt;}
.y8d{bottom:407.250988pt;}
.yf2{bottom:409.808747pt;}
.y5f{bottom:411.453200pt;}
.y15c{bottom:414.635532pt;}
.y32{bottom:414.960469pt;}
.y10{bottom:414.990669pt;}
.y9d{bottom:415.224576pt;}
.y134{bottom:417.570935pt;}
.y184{bottom:418.200155pt;}
.y113{bottom:420.136872pt;}
.yd2{bottom:422.324400pt;}
.yf1{bottom:425.460965pt;}
.y5e{bottom:427.024388pt;}
.y15b{bottom:428.845689pt;}
.y31{bottom:430.612687pt;}
.yf{bottom:430.990669pt;}
.y183{bottom:432.410311pt;}
.y133{bottom:433.223153pt;}
.y112{bottom:435.789090pt;}
.y5d{bottom:442.676606pt;}
.yd1{bottom:445.530667pt;}
.y30{bottom:446.264904pt;}
.y182{bottom:446.620468pt;}
.ye{bottom:446.990669pt;}
.y132{bottom:448.875370pt;}
.y15a{bottom:450.463011pt;}
.y111{bottom:451.441308pt;}
.y5c{bottom:458.328824pt;}
.yf0{bottom:459.331338pt;}
.y181{bottom:460.830625pt;}
.y2f{bottom:461.917122pt;}
.yd{bottom:462.990669pt;}
.y131{bottom:464.446558pt;}
.y159{bottom:464.673167pt;}
.yd0{bottom:465.259733pt;}
.y110{bottom:467.093525pt;}
.y5b{bottom:473.981041pt;}
.y2e{bottom:477.569340pt;}
.yc{bottom:478.990666pt;}
.y130{bottom:480.098776pt;}
.y180{bottom:480.707928pt;}
.y10f{bottom:482.745743pt;}
.ycf{bottom:485.064533pt;}
.y158{bottom:486.290489pt;}
.y5a{bottom:489.633259pt;}
.yb7{bottom:490.179845pt;}
.y2d{bottom:493.221557pt;}
.y17f{bottom:494.990585pt;}
.yb{bottom:494.990666pt;}
.y12f{bottom:495.750994pt;}
.y10e{bottom:498.397961pt;}
.y157{bottom:500.500646pt;}
.yef{bottom:504.910488pt;}
.y59{bottom:505.285477pt;}
.yb6{bottom:505.832062pt;}
.yce{bottom:506.985733pt;}
.y2c{bottom:508.792746pt;}
.y17e{bottom:509.200742pt;}
.y10d{bottom:513.969149pt;}
.y12e{bottom:518.128668pt;}
.yee{bottom:520.562705pt;}
.y58{bottom:520.937695pt;}
.yb5{bottom:521.484280pt;}
.y156{bottom:522.117968pt;}
.y2b{bottom:524.444963pt;}
.y17d{bottom:529.078045pt;}
.y10c{bottom:529.621367pt;}
.ycd{bottom:530.192133pt;}
.y12d{bottom:533.780886pt;}
.yed{bottom:536.214923pt;}
.y155{bottom:536.328125pt;}
.y57{bottom:536.508883pt;}
.yb4{bottom:537.136498pt;}
.y17c{bottom:543.288202pt;}
.y10b{bottom:545.273584pt;}
.y12c{bottom:549.433104pt;}
.ycc{bottom:549.921200pt;}
.y154{bottom:550.538282pt;}
.yec{bottom:551.867141pt;}
.y56{bottom:552.161100pt;}
.yb3{bottom:552.788716pt;}
.y17b{bottom:557.498358pt;}
.y10a{bottom:560.925802pt;}
.y153{bottom:564.748438pt;}
.y12b{bottom:565.004292pt;}
.yeb{bottom:567.438329pt;}
.y55{bottom:567.813318pt;}
.yb2{bottom:568.440933pt;}
.ycb{bottom:569.725867pt;}
.y77{bottom:570.676364pt;}
.y17a{bottom:571.708515pt;}
.y2a{bottom:573.278802pt;}
.ya{bottom:573.786667pt;}
.y12a{bottom:580.656510pt;}
.yea{bottom:583.090547pt;}
.y76{bottom:586.328582pt;}
.y152{bottom:586.365760pt;}
.y54{bottom:589.124103pt;}
.yca{bottom:589.455067pt;}
.y29{bottom:589.606267pt;}
.y179{bottom:591.585818pt;}
.y109{bottom:592.675900pt;}
.y9{bottom:592.685334pt;}
.y129{bottom:596.308727pt;}
.yb1{bottom:597.085251pt;}
.ye9{bottom:598.742765pt;}
.y151{bottom:600.575917pt;}
.y75{bottom:601.980799pt;}
.y53{bottom:604.776321pt;}
.y178{bottom:605.795975pt;}
.yc9{bottom:609.184267pt;}
.y128{bottom:611.960945pt;}
.yb0{bottom:612.056667pt;}
.ye8{bottom:614.394982pt;}
.y150{bottom:614.786074pt;}
.y74{bottom:617.633017pt;}
.y52{bottom:620.428538pt;}
.y177{bottom:625.673277pt;}
.y127{bottom:627.613163pt;}
.y8{bottom:628.798668pt;}
.y28{bottom:629.152848pt;}
.ye7{bottom:630.047200pt;}
.yc8{bottom:631.181067pt;}
.y73{bottom:633.204205pt;}
.y51{bottom:636.080756pt;}
.y14f{bottom:636.403396pt;}
.y176{bottom:639.883434pt;}
.y108{bottom:641.739323pt;}
.y7{bottom:645.598667pt;}
.y27{bottom:647.667451pt;}
.y14e{bottom:650.613553pt;}
.y50{bottom:651.732974pt;}
.y175{bottom:654.093591pt;}
.yc7{bottom:654.387333pt;}
.y72{bottom:657.391541pt;}
.y126{bottom:659.592845pt;}
.ye6{bottom:661.644000pt;}
.y26{bottom:666.103867pt;}
.y4f{bottom:667.304162pt;}
.y3{bottom:668.977329pt;}
.y14d{bottom:672.230874pt;}
.y71{bottom:672.962729pt;}
.y174{bottom:673.970894pt;}
.yc6{bottom:674.116533pt;}
.y14c{bottom:686.441031pt;}
.y173{bottom:688.181050pt;}
.y4e{bottom:688.614947pt;}
.yc5{bottom:693.845600pt;}
.y4d{bottom:704.267165pt;}
.y14b{bottom:708.058353pt;}
.yc4{bottom:713.574800pt;}
.y4c{bottom:719.919382pt;}
.y14a{bottom:722.268510pt;}
.y4b{bottom:735.571600pt;}
.y149{bottom:736.478667pt;}
.y47{bottom:760.143786pt;}
.y7b{bottom:770.489761pt;}
.y148{bottom:770.493841pt;}
.y70{bottom:770.494400pt;}
.y172{bottom:770.513055pt;}
.y198{bottom:770.554043pt;}
.y46{bottom:771.477067pt;}
.y2{bottom:781.661334pt;}
.y1{bottom:859.312000pt;}
.h16{height:0.000000pt;}
.h17{height:23.749455pt;}
.h18{height:28.499346pt;}
.h7{height:28.560000pt;}
.he{height:33.196136pt;}
.hd{height:35.566431pt;}
.hf{height:36.640625pt;}
.h14{height:37.486186pt;}
.h13{height:37.938060pt;}
.h15{height:40.309690pt;}
.h12{height:40.395238pt;}
.h6{height:40.800000pt;}
.h11{height:42.485469pt;}
.h3{height:42.840000pt;}
.h10{height:42.920474pt;}
.hb{height:45.051614pt;}
.hc{height:47.969523pt;}
.h2{height:48.960000pt;}
.ha{height:55.543808pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:842.666667pt;}
.h8{height:842.833600pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:-0.000533pt;}
.w4{width:555.333333pt;}
.w5{width:555.580480pt;}
.w3{width:555.589813pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:64.244830pt;}
.x34{left:75.574155pt;}
.xa{left:77.020497pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x20{left:103.070695pt;}
.x1d{left:107.795843pt;}
.x23{left:111.575961pt;}
.xf{left:124.008480pt;}
.x10{left:125.585813pt;}
.x25{left:127.761168pt;}
.x5{left:130.922747pt;}
.x6{left:136.208165pt;}
.x1f{left:141.306593pt;}
.x18{left:143.546347pt;}
.x7{left:151.470203pt;}
.x1c{left:153.906987pt;}
.x1e{left:156.042754pt;}
.x1a{left:157.442333pt;}
.x2a{left:159.003847pt;}
.x24{left:160.011879pt;}
.x29{left:161.271918pt;}
.x16{left:162.521883pt;}
.x15{left:166.903813pt;}
.x22{left:170.155196pt;}
.x11{left:174.465708pt;}
.x8{left:177.713280pt;}
.x4{left:180.874667pt;}
.x9{left:183.223293pt;}
.xd{left:184.214080pt;}
.x1b{left:185.395374pt;}
.x14{left:190.941250pt;}
.x28{left:193.270620pt;}
.x27{left:199.948829pt;}
.x19{left:201.365735pt;}
.x30{left:208.632322pt;}
.x2f{left:210.368480pt;}
.x2d{left:211.804613pt;}
.xe{left:216.934530pt;}
.x21{left:222.875248pt;}
.x2c{left:224.957413pt;}
.x32{left:226.769447pt;}
.xc{left:234.325961pt;}
.x31{left:235.912287pt;}
.x12{left:244.384213pt;}
.x2e{left:245.819572pt;}
.x33{left:247.250730pt;}
.x26{left:255.944983pt;}
.x13{left:260.107013pt;}
.x2b{left:313.265422pt;}
.x17{left:351.647147pt;}
.x3{left:404.408000pt;}
}




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