
    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_a4e1859e6d933947fd528b16.woff')format("woff");}.ff1{font-family:ff1;line-height:0.693359;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_aa965a48e40f8d39eb7703fd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.709473;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_ca8cbee4096393650a193dee.woff')format("woff");}.ff3{font-family:ff3;line-height:0.970000;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_fd8a74baeabb35077f3582ef.woff')format("woff");}.ff4{font-family:ff4;line-height:0.970000;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_e216e36ffb5f91990c6722b6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_70e91294aa686fdc0c96c858.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_9179b9c37b5b928b7a2dde85.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_a4d0677d55fbed4bb281d342.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_f48f2a523ab2eeac7535cdd5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970000;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_324c7f51bbcc1c3561c37b8e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_ffefd7b6de104dc298398b35.woff')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_011753eb30f7cee4e6a86a30.woff')format("woff");}.ffc{font-family:ffc;line-height:1.104004;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_f0c0aaa0584f0f03b62a453b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.104004;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_23eff263d99765a6249b2d60.woff')format("woff");}.ffe{font-family:ffe;line-height:1.104004;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_2475e8937ebf941983c19308.woff')format("woff");}.fff{font-family:fff;line-height:1.095703;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_c42decee28aa809bbab72e9a.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4e02719158a5a7683eb0c39d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010200px;}
.ls1{letter-spacing:191.400000px;}
.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;}
}
.ws11{word-spacing:-66.000000px;}
.ws10{word-spacing:-21.000000px;}
.ws4{word-spacing:-17.388000px;}
.wsa{word-spacing:-16.500000px;}
.ws3b{word-spacing:-6.996000px;}
.ws1c{word-spacing:-6.864000px;}
.ws1{word-spacing:-4.620000px;}
.ws5f{word-spacing:-4.224000px;}
.ws75{word-spacing:-3.960000px;}
.ws71{word-spacing:-3.894000px;}
.ws3a{word-spacing:-3.828000px;}
.ws20{word-spacing:-3.630000px;}
.ws6c{word-spacing:-3.564000px;}
.ws49{word-spacing:-3.168000px;}
.ws63{word-spacing:-3.036000px;}
.ws5a{word-spacing:-2.904000px;}
.ws72{word-spacing:-2.640000px;}
.ws52{word-spacing:-2.508000px;}
.ws6b{word-spacing:-2.442000px;}
.ws30{word-spacing:-2.112000px;}
.ws37{word-spacing:-1.848000px;}
.ws54{word-spacing:-1.584000px;}
.ws2{word-spacing:-1.512000px;}
.ws27{word-spacing:-1.452000px;}
.ws1b{word-spacing:-1.386000px;}
.ws6{word-spacing:-1.188000px;}
.ws5e{word-spacing:-1.056000px;}
.ws24{word-spacing:-0.924000px;}
.ws26{word-spacing:-0.726000px;}
.ws17{word-spacing:-0.396000px;}
.ws3d{word-spacing:-0.330000px;}
.ws41{word-spacing:-0.264000px;}
.ws73{word-spacing:-0.198000px;}
.ws46{word-spacing:-0.132000px;}
.ws0{word-spacing:0.000000px;}
.ws18{word-spacing:0.132000px;}
.ws8{word-spacing:0.198000px;}
.ws5c{word-spacing:0.396000px;}
.ws4c{word-spacing:0.462000px;}
.ws23{word-spacing:0.528000px;}
.ws1f{word-spacing:0.792000px;}
.ws55{word-spacing:0.858000px;}
.ws5d{word-spacing:0.924000px;}
.ws3e{word-spacing:0.990000px;}
.ws74{word-spacing:1.122000px;}
.ws4d{word-spacing:1.188000px;}
.ws25{word-spacing:1.254000px;}
.ws31{word-spacing:1.320000px;}
.ws9{word-spacing:1.518000px;}
.ws42{word-spacing:1.584000px;}
.ws53{word-spacing:1.716000px;}
.wsc{word-spacing:1.782000px;}
.ws4e{word-spacing:2.112000px;}
.ws32{word-spacing:2.178000px;}
.ws3f{word-spacing:2.442000px;}
.ws4a{word-spacing:2.640000px;}
.ws16{word-spacing:2.706000px;}
.ws22{word-spacing:2.904000px;}
.ws1e{word-spacing:2.970000px;}
.ws40{word-spacing:3.300000px;}
.ws68{word-spacing:3.498000px;}
.ws7{word-spacing:3.696000px;}
.ws59{word-spacing:3.828000px;}
.ws61{word-spacing:3.894000px;}
.ws3c{word-spacing:3.960000px;}
.ws58{word-spacing:4.026000px;}
.ws43{word-spacing:4.158000px;}
.ws60{word-spacing:4.356000px;}
.wsf{word-spacing:4.422000px;}
.ws6f{word-spacing:4.488000px;}
.ws57{word-spacing:4.752000px;}
.ws47{word-spacing:4.818000px;}
.ws19{word-spacing:4.884000px;}
.ws5b{word-spacing:4.950000px;}
.ws62{word-spacing:5.016000px;}
.ws1d{word-spacing:5.082000px;}
.wse{word-spacing:5.214000px;}
.ws4b{word-spacing:5.346000px;}
.ws12{word-spacing:5.412000px;}
.ws13{word-spacing:5.742000px;}
.ws64{word-spacing:6.072000px;}
.ws39{word-spacing:6.138000px;}
.ws28{word-spacing:6.204000px;}
.ws65{word-spacing:6.402000px;}
.ws6a{word-spacing:6.864000px;}
.ws56{word-spacing:7.128000px;}
.ws6d{word-spacing:7.194000px;}
.ws4f{word-spacing:7.392000px;}
.ws66{word-spacing:7.524000px;}
.ws36{word-spacing:7.920000px;}
.ws2f{word-spacing:8.118000px;}
.ws50{word-spacing:8.184000px;}
.ws15{word-spacing:8.448000px;}
.wsd{word-spacing:8.712000px;}
.wsb{word-spacing:8.844000px;}
.ws69{word-spacing:8.976000px;}
.ws51{word-spacing:9.174000px;}
.ws2e{word-spacing:9.372000px;}
.ws2c{word-spacing:10.296000px;}
.ws48{word-spacing:10.428000px;}
.ws29{word-spacing:10.758000px;}
.ws21{word-spacing:10.824000px;}
.ws6e{word-spacing:10.956000px;}
.ws1a{word-spacing:11.550000px;}
.ws67{word-spacing:11.616000px;}
.ws2b{word-spacing:11.814000px;}
.ws14{word-spacing:13.002000px;}
.ws44{word-spacing:13.134000px;}
.ws33{word-spacing:13.596000px;}
.ws34{word-spacing:13.992000px;}
.ws2d{word-spacing:14.322000px;}
.ws2a{word-spacing:16.236000px;}
.ws35{word-spacing:16.368000px;}
.ws45{word-spacing:16.896000px;}
.ws38{word-spacing:19.866000px;}
.ws70{word-spacing:25.410000px;}
.ws5{word-spacing:191.436000px;}
.ws3{word-spacing:196.896000px;}
._a{margin-left:-197.408400px;}
._9{margin-left:-196.392000px;}
._1d{margin-left:-12.870000px;}
._8{margin-left:-8.660400px;}
._1c{margin-left:-7.306200px;}
._2{margin-left:-5.976000px;}
._0{margin-left:-4.586400px;}
._1{margin-left:-2.923200px;}
._3{margin-left:-1.584000px;}
._5{width:1.080000px;}
._10{width:2.141400px;}
._f{width:3.537600px;}
._6{width:4.620000px;}
._11{width:5.748600px;}
._12{width:7.557000px;}
._13{width:9.405000px;}
._15{width:10.461000px;}
._1a{width:11.589600px;}
._14{width:12.969000px;}
._17{width:14.150400px;}
._16{width:15.423000px;}
._1b{width:17.602200px;}
._18{width:23.093400px;}
._1e{width:25.423200px;}
._e{width:140.624400px;}
._c{width:142.917600px;}
._19{width:162.888000px;}
._b{width:191.436000px;}
._7{width:196.896000px;}
._d{width:208.790400px;}
._4{width:1844.418000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(112,109,110);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:22.506600px;}
.y18b{bottom:73.553100px;}
.yaa{bottom:92.257650px;}
.ydf{bottom:96.421200px;}
.y112{bottom:102.047250px;}
.y15b{bottom:104.555400px;}
.yde{bottom:115.396050px;}
.ya9{bottom:120.232800px;}
.y111{bottom:121.022250px;}
.y35{bottom:129.846000px;}
.ydd{bottom:134.371050px;}
.ya8{bottom:139.207800px;}
.ydc{bottom:153.346050px;}
.y34{bottom:157.821000px;}
.ya7{bottom:158.182650px;}
.y156{bottom:160.471050px;}
.y11c{bottom:162.844350px;}
.y1b0{bottom:163.797450px;}
.y110{bottom:167.377800px;}
.ydb{bottom:172.321050px;}
.ya6{bottom:177.157800px;}
.y155{bottom:179.446050px;}
.y33{bottom:185.796000px;}
.y27{bottom:186.203250px;}
.y10f{bottom:186.352800px;}
.yda{bottom:191.296200px;}
.y154{bottom:198.421200px;}
.ya5{bottom:205.132650px;}
.y10e{bottom:205.327950px;}
.yd9{bottom:210.271050px;}
.y32{bottom:213.771000px;}
.ya4{bottom:224.107800px;}
.y10d{bottom:224.302800px;}
.y153{bottom:226.396050px;}
.yd8{bottom:229.246050px;}
.y43{bottom:235.613700px;}
.y31{bottom:241.746000px;}
.ya3{bottom:243.082800px;}
.y10c{bottom:243.277800px;}
.y45{bottom:243.631800px;}
.yd7{bottom:248.221050px;}
.y46{bottom:250.009800px;}
.y13d{bottom:252.082800px;}
.y26{bottom:252.503250px;}
.y152{bottom:254.371050px;}
.ya2{bottom:262.057650px;}
.y10b{bottom:262.252800px;}
.y2f{bottom:262.474350px;}
.y42{bottom:263.588700px;}
.y30{bottom:269.721000px;}
.y1cd{bottom:270.046200px;}
.y13c{bottom:271.057650px;}
.y48{bottom:271.269600px;}
.yd6{bottom:276.196050px;}
.y44{bottom:279.773550px;}
.y10a{bottom:281.227800px;}
.y151{bottom:282.346050px;}
.y47{bottom:284.025450px;}
.ya1{bottom:290.032800px;}
.y2e{bottom:290.449350px;}
.y41{bottom:291.563700px;}
.y3c{bottom:293.592450px;}
.y3d{bottom:294.655350px;}
.yd5{bottom:295.171200px;}
.y1cc{bottom:298.021050px;}
.y109{bottom:300.202950px;}
.ya0{bottom:309.007650px;}
.y150{bottom:310.321050px;}
.yd4{bottom:314.146050px;}
.y25{bottom:318.803250px;}
.y108{bottom:319.177800px;}
.y40{bottom:319.538700px;}
.y114{bottom:320.167200px;}
.y1cb{bottom:325.996050px;}
.y9f{bottom:327.982800px;}
.y2d{bottom:337.660950px;}
.y107{bottom:338.152800px;}
.y14f{bottom:338.296200px;}
.yd3{bottom:342.121050px;}
.y24{bottom:342.953250px;}
.y18a{bottom:344.146050px;}
.y13b{bottom:346.957800px;}
.y3f{bottom:347.513700px;}
.y9e{bottom:355.957800px;}
.y106{bottom:357.127800px;}
.yd2{bottom:361.096050px;}
.y2c{bottom:365.635950px;}
.y13a{bottom:365.932650px;}
.y14e{bottom:366.271050px;}
.y189{bottom:372.121050px;}
.y9d{bottom:374.932650px;}
.y3e{bottom:375.488700px;}
.y105{bottom:376.102800px;}
.yd1{bottom:380.071050px;}
.y139{bottom:384.907800px;}
.y1ca{bottom:385.396050px;}
.y2b{bottom:393.610950px;}
.y9c{bottom:393.907800px;}
.y14d{bottom:394.246050px;}
.y104{bottom:395.077950px;}
.yd0{bottom:399.046200px;}
.y188{bottom:400.096050px;}
.y1af{bottom:403.164300px;}
.y1c9{bottom:404.371050px;}
.y23{bottom:409.253250px;}
.y9b{bottom:412.882800px;}
.ycf{bottom:418.021050px;}
.y2a{bottom:421.585950px;}
.y1ae{bottom:422.139300px;}
.y14c{bottom:422.221050px;}
.y103{bottom:423.052800px;}
.y187{bottom:428.071050px;}
.y9a{bottom:431.857800px;}
.y1c8{bottom:432.346050px;}
.y22{bottom:433.403250px;}
.y3b{bottom:435.456150px;}
.yce{bottom:436.996050px;}
.y102{bottom:442.027800px;}
.y29{bottom:449.560950px;}
.y1ad{bottom:450.114300px;}
.y14b{bottom:450.196050px;}
.y99{bottom:450.832650px;}
.y186{bottom:456.046050px;}
.y1c7{bottom:460.321050px;}
.y101{bottom:461.002800px;}
.y3a{bottom:463.431150px;}
.ycd{bottom:464.971050px;}
.y1ac{bottom:469.089450px;}
.yba{bottom:469.807650px;}
.y28{bottom:477.535950px;}
.y14a{bottom:478.171050px;}
.y98{bottom:478.807650px;}
.y100{bottom:479.977800px;}
.ycc{bottom:483.946050px;}
.y185{bottom:484.021050px;}
.y1c6{bottom:488.296050px;}
.y39{bottom:491.406150px;}
.y1ab{bottom:497.064450px;}
.y97{bottom:497.782800px;}
.yff{bottom:498.952800px;}
.y21{bottom:499.703250px;}
.ycb{bottom:502.921050px;}
.y184{bottom:502.996050px;}
.y149{bottom:506.146050px;}
.y1aa{bottom:516.039300px;}
.y1c5{bottom:516.271050px;}
.y96{bottom:516.757800px;}
.yfe{bottom:517.927800px;}
.y38{bottom:519.381300px;}
.yca{bottom:521.896050px;}
.y20{bottom:523.853250px;}
.y183{bottom:530.971050px;}
.y148{bottom:534.121050px;}
.y95{bottom:535.732800px;}
.yfd{bottom:536.902800px;}
.yc9{bottom:540.871050px;}
.y1a9{bottom:544.014300px;}
.y1c4{bottom:544.246050px;}
.y37{bottom:547.356150px;}
.y1f{bottom:549.053250px;}
.y147{bottom:553.096050px;}
.y94{bottom:554.707650px;}
.yfc{bottom:555.877800px;}
.y182{bottom:558.946050px;}
.yc8{bottom:559.846050px;}
.y1a8{bottom:562.989300px;}
.y138{bottom:563.707650px;}
.y146{bottom:572.071050px;}
.y1c3{bottom:572.221050px;}
.yb9{bottom:573.682650px;}
.y1e{bottom:574.253250px;}
.yfb{bottom:574.852800px;}
.y36{bottom:575.331150px;}
.y181{bottom:577.921050px;}
.yc7{bottom:578.821050px;}
.y93{bottom:582.682650px;}
.y1a7{bottom:590.964450px;}
.yb8{bottom:592.657800px;}
.yfa{bottom:593.827800px;}
.y1d{bottom:599.453250px;}
.y1c2{bottom:600.196050px;}
.y15d{bottom:601.417050px;}
.y92{bottom:601.657800px;}
.y180{bottom:605.896050px;}
.yc6{bottom:606.796050px;}
.y1a6{bottom:609.939450px;}
.y131{bottom:611.632800px;}
.yf9{bottom:612.802800px;}
.y143{bottom:614.409450px;}
.y1c1{bottom:619.171050px;}
.y91{bottom:620.632800px;}
.y157{bottom:622.057050px;}
.y1c{bottom:624.653250px;}
.yc5{bottom:625.771050px;}
.y15f{bottom:626.308950px;}
.y1a5{bottom:628.914300px;}
.y130{bottom:630.607800px;}
.yf8{bottom:631.777800px;}
.y142{bottom:633.384450px;}
.y17f{bottom:633.871050px;}
.y90{bottom:639.607800px;}
.yc4{bottom:644.746050px;}
.y1c0{bottom:647.146050px;}
.y1a4{bottom:647.889300px;}
.y11a{bottom:648.607800px;}
.y12f{bottom:649.582650px;}
.y1b{bottom:649.853250px;}
.yf7{bottom:650.752800px;}
.y141{bottom:652.359450px;}
.y17e{bottom:652.846050px;}
.yb7{bottom:658.582650px;}
.y1a3{bottom:666.864300px;}
.y8f{bottom:667.582650px;}
.y12e{bottom:668.557650px;}
.yf6{bottom:669.727800px;}
.y140{bottom:671.334450px;}
.yc3{bottom:672.721050px;}
.y1a{bottom:675.053250px;}
.y1bf{bottom:675.121050px;}
.yb6{bottom:677.557650px;}
.y17d{bottom:680.821050px;}
.y8e{bottom:686.557650px;}
.y12d{bottom:687.532800px;}
.yf5{bottom:688.702800px;}
.yc2{bottom:691.696050px;}
.y1a2{bottom:694.839450px;}
.y113{bottom:696.466500px;}
.yb5{bottom:696.532800px;}
.y17c{bottom:699.796050px;}
.y19{bottom:700.253250px;}
.y1be{bottom:703.096050px;}
.y7d{bottom:705.532800px;}
.y12c{bottom:706.507800px;}
.y11b{bottom:707.096400px;}
.yf4{bottom:707.677800px;}
.yc1{bottom:710.671050px;}
.y1a1{bottom:713.814450px;}
.y119{bottom:714.532800px;}
.y137{bottom:715.507800px;}
.y7c{bottom:724.507800px;}
.y16a{bottom:724.846050px;}
.y18{bottom:725.453250px;}
.y12b{bottom:725.482800px;}
.yf3{bottom:726.652800px;}
.y17b{bottom:727.771050px;}
.yc0{bottom:729.646050px;}
.y1bd{bottom:731.071050px;}
.y1a0{bottom:732.789300px;}
.y118{bottom:733.507800px;}
.y15a{bottom:735.652800px;}
.y7b{bottom:743.482800px;}
.y169{bottom:743.821050px;}
.y12a{bottom:744.457650px;}
.y17a{bottom:746.746050px;}
.ybf{bottom:748.621050px;}
.y17{bottom:750.653250px;}
.y117{bottom:752.482800px;}
.yf2{bottom:754.627800px;}
.y19f{bottom:760.764300px;}
.y7a{bottom:762.457650px;}
.y129{bottom:763.432650px;}
.y9{bottom:767.494200px;}
.y116{bottom:771.457800px;}
.y168{bottom:771.796200px;}
.yf1{bottom:773.602800px;}
.y179{bottom:774.721050px;}
.y16{bottom:775.853250px;}
.y85{bottom:776.596050px;}
.y19e{bottom:779.739300px;}
.y136{bottom:781.432650px;}
.y128{bottom:782.407800px;}
.y1bc{bottom:788.746050px;}
.y79{bottom:790.432650px;}
.y167{bottom:790.771050px;}
.yf0{bottom:792.577950px;}
.y8{bottom:795.469200px;}
.y84{bottom:795.571050px;}
.y19d{bottom:798.714450px;}
.y135{bottom:800.407800px;}
.y15{bottom:801.053250px;}
.y178{bottom:802.696050px;}
.y78{bottom:809.407800px;}
.y5a{bottom:809.746050px;}
.y127{bottom:810.382650px;}
.y159{bottom:811.552800px;}
.y83{bottom:814.546200px;}
.y1bb{bottom:816.721050px;}
.y19c{bottom:817.689300px;}
.y134{bottom:819.382650px;}
.yef{bottom:820.552800px;}
.y177{bottom:821.671200px;}
.y14{bottom:826.253250px;}
.y77{bottom:828.382650px;}
.y59{bottom:828.721050px;}
.y158{bottom:830.527800px;}
.y82{bottom:833.521050px;}
.y19b{bottom:836.664300px;}
.y13f{bottom:837.382650px;}
.y126{bottom:838.357800px;}
.yee{bottom:839.527800px;}
.y1ba{bottom:844.696050px;}
.y76{bottom:847.357800px;}
.y166{bottom:847.696050px;}
.y176{bottom:849.646050px;}
.y13{bottom:851.453250px;}
.y81{bottom:852.496050px;}
.y19a{bottom:855.639450px;}
.y13e{bottom:856.357800px;}
.y7{bottom:856.594200px;}
.y58{bottom:856.696050px;}
.y125{bottom:857.332800px;}
.yed{bottom:858.502800px;}
.y8d{bottom:866.332800px;}
.y165{bottom:866.671200px;}
.y175{bottom:868.621050px;}
.y1b9{bottom:872.671200px;}
.y75{bottom:875.332800px;}
.y57{bottom:875.671200px;}
.y124{bottom:876.307650px;}
.y12{bottom:876.653250px;}
.yec{bottom:877.477800px;}
.y15c{bottom:879.301050px;}
.y80{bottom:880.471050px;}
.y199{bottom:883.614300px;}
.y8c{bottom:885.307650px;}
.y164{bottom:885.646050px;}
.y4{bottom:889.744200px;}
.y74{bottom:894.307650px;}
.y56{bottom:894.646050px;}
.y123{bottom:895.282800px;}
.yeb{bottom:896.452950px;}
.y174{bottom:896.596050px;}
.y7f{bottom:899.446050px;}
.y1b8{bottom:900.646050px;}
.y11{bottom:901.853250px;}
.y198{bottom:902.589450px;}
.yb4{bottom:904.282800px;}
.y163{bottom:904.621050px;}
.y66{bottom:908.446050px;}
.y73{bottom:913.282800px;}
.y55{bottom:913.621050px;}
.y122{bottom:914.257650px;}
.yea{bottom:915.427800px;}
.y173{bottom:915.571050px;}
.y7e{bottom:918.421200px;}
.y197{bottom:921.564300px;}
.yb3{bottom:923.257650px;}
.y65{bottom:927.421200px;}
.y1b7{bottom:928.621050px;}
.y72{bottom:932.257650px;}
.y54{bottom:932.596050px;}
.ye9{bottom:934.402800px;}
.y10{bottom:936.053250px;}
.ybe{bottom:937.396050px;}
.y196{bottom:940.539300px;}
.y115{bottom:942.232800px;}
.y172{bottom:943.546200px;}
.y64{bottom:946.396050px;}
.y71{bottom:951.232800px;}
.y53{bottom:951.571050px;}
.ye8{bottom:953.377800px;}
.y3{bottom:956.044200px;}
.ybd{bottom:956.371050px;}
.y1b6{bottom:956.596050px;}
.y195{bottom:959.514450px;}
.y121{bottom:961.207800px;}
.y171{bottom:962.521050px;}
.y63{bottom:965.371050px;}
.y70{bottom:970.207800px;}
.y52{bottom:970.546200px;}
.ye7{bottom:972.352800px;}
.ybc{bottom:975.346050px;}
.y194{bottom:978.489300px;}
.y133{bottom:979.207800px;}
.y145{bottom:979.546200px;}
.y120{bottom:980.182650px;}
.y62{bottom:984.346050px;}
.y1b5{bottom:984.571050px;}
.yf{bottom:985.403250px;}
.y8b{bottom:989.182650px;}
.y6f{bottom:989.182800px;}
.y2{bottom:989.194200px;}
.y51{bottom:989.521050px;}
.y170{bottom:990.496050px;}
.ye6{bottom:991.327950px;}
.ybb{bottom:994.321050px;}
.y193{bottom:997.464450px;}
.y132{bottom:998.182650px;}
.y144{bottom:998.521050px;}
.y11f{bottom:999.157800px;}
.y61{bottom:1003.321050px;}
.y6e{bottom:1008.157800px;}
.y162{bottom:1008.496050px;}
.y16f{bottom:1009.471050px;}
.ye5{bottom:1010.302800px;}
.ye{bottom:1010.603250px;}
.y1b4{bottom:1012.546200px;}
.yb2{bottom:1017.157800px;}
.y50{bottom:1017.496050px;}
.y11e{bottom:1018.132650px;}
.y60{bottom:1022.296200px;}
.y1{bottom:1022.344200px;}
.y192{bottom:1025.439300px;}
.y8a{bottom:1027.132650px;}
.y161{bottom:1027.471050px;}
.ye4{bottom:1029.277800px;}
.yd{bottom:1035.803250px;}
.yb1{bottom:1036.132650px;}
.y6d{bottom:1036.132800px;}
.y4f{bottom:1036.471050px;}
.y11d{bottom:1037.107800px;}
.y16e{bottom:1037.446050px;}
.y1b3{bottom:1040.521050px;}
.y5f{bottom:1041.271050px;}
.y191{bottom:1044.414300px;}
.y89{bottom:1046.107800px;}
.y160{bottom:1046.446050px;}
.ye3{bottom:1048.252800px;}
.y6c{bottom:1055.107800px;}
.y4e{bottom:1055.446050px;}
.y16d{bottom:1056.421200px;}
.y5e{bottom:1060.246050px;}
.yc{bottom:1061.003250px;}
.y190{bottom:1063.389450px;}
.y88{bottom:1065.082800px;}
.ye2{bottom:1067.227800px;}
.y1b2{bottom:1068.496050px;}
.y6b{bottom:1074.082800px;}
.y4d{bottom:1074.421200px;}
.yaf{bottom:1077.202950px;}
.y5d{bottom:1079.221050px;}
.y87{bottom:1084.057650px;}
.y16c{bottom:1084.396050px;}
.ye1{bottom:1086.202950px;}
.y18f{bottom:1091.364300px;}
.yb0{bottom:1093.057650px;}
.y6a{bottom:1093.057800px;}
.y4c{bottom:1093.396050px;}
.yb{bottom:1095.203250px;}
.yae{bottom:1096.177800px;}
.y1b1{bottom:1096.471050px;}
.y5c{bottom:1098.196050px;}
.y16b{bottom:1103.371050px;}
.ye0{bottom:1105.177800px;}
.y18e{bottom:1110.339450px;}
.y69{bottom:1112.032800px;}
.y4b{bottom:1112.371050px;}
.y15e{bottom:1115.152800px;}
.yad{bottom:1124.152800px;}
.y5b{bottom:1126.171200px;}
.y18d{bottom:1129.314300px;}
.y86{bottom:1131.007650px;}
.y68{bottom:1131.007800px;}
.y4a{bottom:1131.346050px;}
.yac{bottom:1143.127800px;}
.y18c{bottom:1157.289300px;}
.y67{bottom:1158.982800px;}
.y49{bottom:1159.321050px;}
.ya{bottom:1159.321200px;}
.yab{bottom:1162.102800px;}
.y5{bottom:1237.506600px;}
.hc{height:45.826172px;}
.ha{height:47.381836px;}
.hf{height:49.289062px;}
.h4{height:51.336000px;}
.h2{height:56.929688px;}
.h7{height:57.911133px;}
.hb{height:58.072266px;}
.h3{height:58.324219px;}
.h9{height:58.620117px;}
.h8{height:59.892000px;}
.he{height:63.949219px;}
.hd{height:65.718750px;}
.h6{height:73.705078px;}
.h5{height:74.607422px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:55.931250px;}
.xa{left:131.811000px;}
.xd{left:133.936950px;}
.xb{left:143.716500px;}
.xe{left:161.574750px;}
.x2{left:163.838550px;}
.x1d{left:192.998250px;}
.x10{left:241.299150px;}
.x12{left:252.992100px;}
.x7{left:265.413750px;}
.x8{left:310.831200px;}
.x1{left:316.657650px;}
.x16{left:326.137200px;}
.x14{left:334.399350px;}
.x15{left:337.138500px;}
.x17{left:343.080300px;}
.x18{left:346.742100px;}
.x13{left:347.966700px;}
.x4{left:349.659900px;}
.x19{left:363.052800px;}
.x9{left:364.351500px;}
.x3{left:372.079950px;}
.x1b{left:391.181100px;}
.x1a{left:410.800350px;}
.x11{left:463.889850px;}
.xf{left:467.716500px;}
.x1c{left:533.622000px;}
.xc{left:792.236250px;}
.x6{left:796.556250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009067pt;}
.ls1{letter-spacing:170.133333pt;}
.ws11{word-spacing:-58.666667pt;}
.ws10{word-spacing:-18.666667pt;}
.ws4{word-spacing:-15.456000pt;}
.wsa{word-spacing:-14.666667pt;}
.ws3b{word-spacing:-6.218667pt;}
.ws1c{word-spacing:-6.101333pt;}
.ws1{word-spacing:-4.106667pt;}
.ws5f{word-spacing:-3.754667pt;}
.ws75{word-spacing:-3.520000pt;}
.ws71{word-spacing:-3.461333pt;}
.ws3a{word-spacing:-3.402667pt;}
.ws20{word-spacing:-3.226667pt;}
.ws6c{word-spacing:-3.168000pt;}
.ws49{word-spacing:-2.816000pt;}
.ws63{word-spacing:-2.698667pt;}
.ws5a{word-spacing:-2.581333pt;}
.ws72{word-spacing:-2.346667pt;}
.ws52{word-spacing:-2.229333pt;}
.ws6b{word-spacing:-2.170667pt;}
.ws30{word-spacing:-1.877333pt;}
.ws37{word-spacing:-1.642667pt;}
.ws54{word-spacing:-1.408000pt;}
.ws2{word-spacing:-1.344000pt;}
.ws27{word-spacing:-1.290667pt;}
.ws1b{word-spacing:-1.232000pt;}
.ws6{word-spacing:-1.056000pt;}
.ws5e{word-spacing:-0.938667pt;}
.ws24{word-spacing:-0.821333pt;}
.ws26{word-spacing:-0.645333pt;}
.ws17{word-spacing:-0.352000pt;}
.ws3d{word-spacing:-0.293333pt;}
.ws41{word-spacing:-0.234667pt;}
.ws73{word-spacing:-0.176000pt;}
.ws46{word-spacing:-0.117333pt;}
.ws0{word-spacing:0.000000pt;}
.ws18{word-spacing:0.117333pt;}
.ws8{word-spacing:0.176000pt;}
.ws5c{word-spacing:0.352000pt;}
.ws4c{word-spacing:0.410667pt;}
.ws23{word-spacing:0.469333pt;}
.ws1f{word-spacing:0.704000pt;}
.ws55{word-spacing:0.762667pt;}
.ws5d{word-spacing:0.821333pt;}
.ws3e{word-spacing:0.880000pt;}
.ws74{word-spacing:0.997333pt;}
.ws4d{word-spacing:1.056000pt;}
.ws25{word-spacing:1.114667pt;}
.ws31{word-spacing:1.173333pt;}
.ws9{word-spacing:1.349333pt;}
.ws42{word-spacing:1.408000pt;}
.ws53{word-spacing:1.525333pt;}
.wsc{word-spacing:1.584000pt;}
.ws4e{word-spacing:1.877333pt;}
.ws32{word-spacing:1.936000pt;}
.ws3f{word-spacing:2.170667pt;}
.ws4a{word-spacing:2.346667pt;}
.ws16{word-spacing:2.405333pt;}
.ws22{word-spacing:2.581333pt;}
.ws1e{word-spacing:2.640000pt;}
.ws40{word-spacing:2.933333pt;}
.ws68{word-spacing:3.109333pt;}
.ws7{word-spacing:3.285333pt;}
.ws59{word-spacing:3.402667pt;}
.ws61{word-spacing:3.461333pt;}
.ws3c{word-spacing:3.520000pt;}
.ws58{word-spacing:3.578667pt;}
.ws43{word-spacing:3.696000pt;}
.ws60{word-spacing:3.872000pt;}
.wsf{word-spacing:3.930667pt;}
.ws6f{word-spacing:3.989333pt;}
.ws57{word-spacing:4.224000pt;}
.ws47{word-spacing:4.282667pt;}
.ws19{word-spacing:4.341333pt;}
.ws5b{word-spacing:4.400000pt;}
.ws62{word-spacing:4.458667pt;}
.ws1d{word-spacing:4.517333pt;}
.wse{word-spacing:4.634667pt;}
.ws4b{word-spacing:4.752000pt;}
.ws12{word-spacing:4.810667pt;}
.ws13{word-spacing:5.104000pt;}
.ws64{word-spacing:5.397333pt;}
.ws39{word-spacing:5.456000pt;}
.ws28{word-spacing:5.514667pt;}
.ws65{word-spacing:5.690667pt;}
.ws6a{word-spacing:6.101333pt;}
.ws56{word-spacing:6.336000pt;}
.ws6d{word-spacing:6.394667pt;}
.ws4f{word-spacing:6.570667pt;}
.ws66{word-spacing:6.688000pt;}
.ws36{word-spacing:7.040000pt;}
.ws2f{word-spacing:7.216000pt;}
.ws50{word-spacing:7.274667pt;}
.ws15{word-spacing:7.509333pt;}
.wsd{word-spacing:7.744000pt;}
.wsb{word-spacing:7.861333pt;}
.ws69{word-spacing:7.978667pt;}
.ws51{word-spacing:8.154667pt;}
.ws2e{word-spacing:8.330667pt;}
.ws2c{word-spacing:9.152000pt;}
.ws48{word-spacing:9.269333pt;}
.ws29{word-spacing:9.562667pt;}
.ws21{word-spacing:9.621333pt;}
.ws6e{word-spacing:9.738667pt;}
.ws1a{word-spacing:10.266667pt;}
.ws67{word-spacing:10.325333pt;}
.ws2b{word-spacing:10.501333pt;}
.ws14{word-spacing:11.557333pt;}
.ws44{word-spacing:11.674667pt;}
.ws33{word-spacing:12.085333pt;}
.ws34{word-spacing:12.437333pt;}
.ws2d{word-spacing:12.730667pt;}
.ws2a{word-spacing:14.432000pt;}
.ws35{word-spacing:14.549333pt;}
.ws45{word-spacing:15.018667pt;}
.ws38{word-spacing:17.658667pt;}
.ws70{word-spacing:22.586667pt;}
.ws5{word-spacing:170.165333pt;}
.ws3{word-spacing:175.018667pt;}
._a{margin-left:-175.474133pt;}
._9{margin-left:-174.570667pt;}
._1d{margin-left:-11.440000pt;}
._8{margin-left:-7.698133pt;}
._1c{margin-left:-6.494400pt;}
._2{margin-left:-5.312000pt;}
._0{margin-left:-4.076800pt;}
._1{margin-left:-2.598400pt;}
._3{margin-left:-1.408000pt;}
._5{width:0.960000pt;}
._10{width:1.903467pt;}
._f{width:3.144533pt;}
._6{width:4.106667pt;}
._11{width:5.109867pt;}
._12{width:6.717333pt;}
._13{width:8.360000pt;}
._15{width:9.298667pt;}
._1a{width:10.301867pt;}
._14{width:11.528000pt;}
._17{width:12.578133pt;}
._16{width:13.709333pt;}
._1b{width:15.646400pt;}
._18{width:20.527467pt;}
._1e{width:22.598400pt;}
._e{width:124.999467pt;}
._c{width:127.037867pt;}
._19{width:144.789333pt;}
._b{width:170.165333pt;}
._7{width:175.018667pt;}
._d{width:185.591467pt;}
._4{width:1639.482667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:20.005867pt;}
.y18b{bottom:65.380533pt;}
.yaa{bottom:82.006800pt;}
.ydf{bottom:85.707733pt;}
.y112{bottom:90.708667pt;}
.y15b{bottom:92.938133pt;}
.yde{bottom:102.574267pt;}
.ya9{bottom:106.873600pt;}
.y111{bottom:107.575333pt;}
.y35{bottom:115.418667pt;}
.ydd{bottom:119.440933pt;}
.ya8{bottom:123.740267pt;}
.ydc{bottom:136.307600pt;}
.y34{bottom:140.285333pt;}
.ya7{bottom:140.606800pt;}
.y156{bottom:142.640933pt;}
.y11c{bottom:144.750533pt;}
.y1b0{bottom:145.597733pt;}
.y110{bottom:148.780267pt;}
.ydb{bottom:153.174267pt;}
.ya6{bottom:157.473600pt;}
.y155{bottom:159.507600pt;}
.y33{bottom:165.152000pt;}
.y27{bottom:165.514000pt;}
.y10f{bottom:165.646933pt;}
.yda{bottom:170.041067pt;}
.y154{bottom:176.374400pt;}
.ya5{bottom:182.340133pt;}
.y10e{bottom:182.513733pt;}
.yd9{bottom:186.907600pt;}
.y32{bottom:190.018667pt;}
.ya4{bottom:199.206933pt;}
.y10d{bottom:199.380267pt;}
.y153{bottom:201.240933pt;}
.yd8{bottom:203.774267pt;}
.y43{bottom:209.434400pt;}
.y31{bottom:214.885333pt;}
.ya3{bottom:216.073600pt;}
.y10c{bottom:216.246933pt;}
.y45{bottom:216.561600pt;}
.yd7{bottom:220.640933pt;}
.y46{bottom:222.230933pt;}
.y13d{bottom:224.073600pt;}
.y26{bottom:224.447333pt;}
.y152{bottom:226.107600pt;}
.ya2{bottom:232.940133pt;}
.y10b{bottom:233.113600pt;}
.y2f{bottom:233.310533pt;}
.y42{bottom:234.301067pt;}
.y30{bottom:239.752000pt;}
.y1cd{bottom:240.041067pt;}
.y13c{bottom:240.940133pt;}
.y48{bottom:241.128533pt;}
.yd6{bottom:245.507600pt;}
.y44{bottom:248.687600pt;}
.y10a{bottom:249.980267pt;}
.y151{bottom:250.974267pt;}
.y47{bottom:252.467067pt;}
.ya1{bottom:257.806933pt;}
.y2e{bottom:258.177200pt;}
.y41{bottom:259.167733pt;}
.y3c{bottom:260.971067pt;}
.y3d{bottom:261.915867pt;}
.yd5{bottom:262.374400pt;}
.y1cc{bottom:264.907600pt;}
.y109{bottom:266.847067pt;}
.ya0{bottom:274.673467pt;}
.y150{bottom:275.840933pt;}
.yd4{bottom:279.240933pt;}
.y25{bottom:283.380667pt;}
.y108{bottom:283.713600pt;}
.y40{bottom:284.034400pt;}
.y114{bottom:284.593067pt;}
.y1cb{bottom:289.774267pt;}
.y9f{bottom:291.540267pt;}
.y2d{bottom:300.143067pt;}
.y107{bottom:300.580267pt;}
.y14f{bottom:300.707733pt;}
.yd3{bottom:304.107600pt;}
.y24{bottom:304.847333pt;}
.y18a{bottom:305.907600pt;}
.y13b{bottom:308.406933pt;}
.y3f{bottom:308.901067pt;}
.y9e{bottom:316.406933pt;}
.y106{bottom:317.446933pt;}
.yd2{bottom:320.974267pt;}
.y2c{bottom:325.009733pt;}
.y13a{bottom:325.273467pt;}
.y14e{bottom:325.574267pt;}
.y189{bottom:330.774267pt;}
.y9d{bottom:333.273467pt;}
.y3e{bottom:333.767733pt;}
.y105{bottom:334.313600pt;}
.yd1{bottom:337.840933pt;}
.y139{bottom:342.140267pt;}
.y1ca{bottom:342.574267pt;}
.y2b{bottom:349.876400pt;}
.y9c{bottom:350.140267pt;}
.y14d{bottom:350.440933pt;}
.y104{bottom:351.180400pt;}
.yd0{bottom:354.707733pt;}
.y188{bottom:355.640933pt;}
.y1af{bottom:358.368267pt;}
.y1c9{bottom:359.440933pt;}
.y23{bottom:363.780667pt;}
.y9b{bottom:367.006933pt;}
.ycf{bottom:371.574267pt;}
.y2a{bottom:374.743067pt;}
.y1ae{bottom:375.234933pt;}
.y14c{bottom:375.307600pt;}
.y103{bottom:376.046933pt;}
.y187{bottom:380.507600pt;}
.y9a{bottom:383.873600pt;}
.y1c8{bottom:384.307600pt;}
.y22{bottom:385.247333pt;}
.y3b{bottom:387.072133pt;}
.yce{bottom:388.440933pt;}
.y102{bottom:392.913600pt;}
.y29{bottom:399.609733pt;}
.y1ad{bottom:400.101600pt;}
.y14b{bottom:400.174267pt;}
.y99{bottom:400.740133pt;}
.y186{bottom:405.374267pt;}
.y1c7{bottom:409.174267pt;}
.y101{bottom:409.780267pt;}
.y3a{bottom:411.938800pt;}
.ycd{bottom:413.307600pt;}
.y1ac{bottom:416.968400pt;}
.yba{bottom:417.606800pt;}
.y28{bottom:424.476400pt;}
.y14a{bottom:425.040933pt;}
.y98{bottom:425.606800pt;}
.y100{bottom:426.646933pt;}
.ycc{bottom:430.174267pt;}
.y185{bottom:430.240933pt;}
.y1c6{bottom:434.040933pt;}
.y39{bottom:436.805467pt;}
.y1ab{bottom:441.835067pt;}
.y97{bottom:442.473600pt;}
.yff{bottom:443.513600pt;}
.y21{bottom:444.180667pt;}
.ycb{bottom:447.040933pt;}
.y184{bottom:447.107600pt;}
.y149{bottom:449.907600pt;}
.y1aa{bottom:458.701600pt;}
.y1c5{bottom:458.907600pt;}
.y96{bottom:459.340267pt;}
.yfe{bottom:460.380267pt;}
.y38{bottom:461.672267pt;}
.yca{bottom:463.907600pt;}
.y20{bottom:465.647333pt;}
.y183{bottom:471.974267pt;}
.y148{bottom:474.774267pt;}
.y95{bottom:476.206933pt;}
.yfd{bottom:477.246933pt;}
.yc9{bottom:480.774267pt;}
.y1a9{bottom:483.568267pt;}
.y1c4{bottom:483.774267pt;}
.y37{bottom:486.538800pt;}
.y1f{bottom:488.047333pt;}
.y147{bottom:491.640933pt;}
.y94{bottom:493.073467pt;}
.yfc{bottom:494.113600pt;}
.y182{bottom:496.840933pt;}
.yc8{bottom:497.640933pt;}
.y1a8{bottom:500.434933pt;}
.y138{bottom:501.073467pt;}
.y146{bottom:508.507600pt;}
.y1c3{bottom:508.640933pt;}
.yb9{bottom:509.940133pt;}
.y1e{bottom:510.447333pt;}
.yfb{bottom:510.980267pt;}
.y36{bottom:511.405467pt;}
.y181{bottom:513.707600pt;}
.yc7{bottom:514.507600pt;}
.y93{bottom:517.940133pt;}
.y1a7{bottom:525.301733pt;}
.yb8{bottom:526.806933pt;}
.yfa{bottom:527.846933pt;}
.y1d{bottom:532.847333pt;}
.y1c2{bottom:533.507600pt;}
.y15d{bottom:534.592933pt;}
.y92{bottom:534.806933pt;}
.y180{bottom:538.574267pt;}
.yc6{bottom:539.374267pt;}
.y1a6{bottom:542.168400pt;}
.y131{bottom:543.673600pt;}
.yf9{bottom:544.713600pt;}
.y143{bottom:546.141733pt;}
.y1c1{bottom:550.374267pt;}
.y91{bottom:551.673600pt;}
.y157{bottom:552.939600pt;}
.y1c{bottom:555.247333pt;}
.yc5{bottom:556.240933pt;}
.y15f{bottom:556.719067pt;}
.y1a5{bottom:559.034933pt;}
.y130{bottom:560.540267pt;}
.yf8{bottom:561.580267pt;}
.y142{bottom:563.008400pt;}
.y17f{bottom:563.440933pt;}
.y90{bottom:568.540267pt;}
.yc4{bottom:573.107600pt;}
.y1c0{bottom:575.240933pt;}
.y1a4{bottom:575.901600pt;}
.y11a{bottom:576.540267pt;}
.y12f{bottom:577.406800pt;}
.y1b{bottom:577.647333pt;}
.yf7{bottom:578.446933pt;}
.y141{bottom:579.875067pt;}
.y17e{bottom:580.307600pt;}
.yb7{bottom:585.406800pt;}
.y1a3{bottom:592.768267pt;}
.y8f{bottom:593.406800pt;}
.y12e{bottom:594.273467pt;}
.yf6{bottom:595.313600pt;}
.y140{bottom:596.741733pt;}
.yc3{bottom:597.974267pt;}
.y1a{bottom:600.047333pt;}
.y1bf{bottom:600.107600pt;}
.yb6{bottom:602.273467pt;}
.y17d{bottom:605.174267pt;}
.y8e{bottom:610.273467pt;}
.y12d{bottom:611.140267pt;}
.yf5{bottom:612.180267pt;}
.yc2{bottom:614.840933pt;}
.y1a2{bottom:617.635067pt;}
.y113{bottom:619.081333pt;}
.yb5{bottom:619.140267pt;}
.y17c{bottom:622.040933pt;}
.y19{bottom:622.447333pt;}
.y1be{bottom:624.974267pt;}
.y7d{bottom:627.140267pt;}
.y12c{bottom:628.006933pt;}
.y11b{bottom:628.530133pt;}
.yf4{bottom:629.046933pt;}
.yc1{bottom:631.707600pt;}
.y1a1{bottom:634.501733pt;}
.y119{bottom:635.140267pt;}
.y137{bottom:636.006933pt;}
.y7c{bottom:644.006933pt;}
.y16a{bottom:644.307600pt;}
.y18{bottom:644.847333pt;}
.y12b{bottom:644.873600pt;}
.yf3{bottom:645.913600pt;}
.y17b{bottom:646.907600pt;}
.yc0{bottom:648.574267pt;}
.y1bd{bottom:649.840933pt;}
.y1a0{bottom:651.368267pt;}
.y118{bottom:652.006933pt;}
.y15a{bottom:653.913600pt;}
.y7b{bottom:660.873600pt;}
.y169{bottom:661.174267pt;}
.y12a{bottom:661.740133pt;}
.y17a{bottom:663.774267pt;}
.ybf{bottom:665.440933pt;}
.y17{bottom:667.247333pt;}
.y117{bottom:668.873600pt;}
.yf2{bottom:670.780267pt;}
.y19f{bottom:676.234933pt;}
.y7a{bottom:677.740133pt;}
.y129{bottom:678.606800pt;}
.y9{bottom:682.217067pt;}
.y116{bottom:685.740267pt;}
.y168{bottom:686.041067pt;}
.yf1{bottom:687.646933pt;}
.y179{bottom:688.640933pt;}
.y16{bottom:689.647333pt;}
.y85{bottom:690.307600pt;}
.y19e{bottom:693.101600pt;}
.y136{bottom:694.606800pt;}
.y128{bottom:695.473600pt;}
.y1bc{bottom:701.107600pt;}
.y79{bottom:702.606800pt;}
.y167{bottom:702.907600pt;}
.yf0{bottom:704.513733pt;}
.y8{bottom:707.083733pt;}
.y84{bottom:707.174267pt;}
.y19d{bottom:709.968400pt;}
.y135{bottom:711.473600pt;}
.y15{bottom:712.047333pt;}
.y178{bottom:713.507600pt;}
.y78{bottom:719.473600pt;}
.y5a{bottom:719.774267pt;}
.y127{bottom:720.340133pt;}
.y159{bottom:721.380267pt;}
.y83{bottom:724.041067pt;}
.y1bb{bottom:725.974267pt;}
.y19c{bottom:726.834933pt;}
.y134{bottom:728.340133pt;}
.yef{bottom:729.380267pt;}
.y177{bottom:730.374400pt;}
.y14{bottom:734.447333pt;}
.y77{bottom:736.340133pt;}
.y59{bottom:736.640933pt;}
.y158{bottom:738.246933pt;}
.y82{bottom:740.907600pt;}
.y19b{bottom:743.701600pt;}
.y13f{bottom:744.340133pt;}
.y126{bottom:745.206933pt;}
.yee{bottom:746.246933pt;}
.y1ba{bottom:750.840933pt;}
.y76{bottom:753.206933pt;}
.y166{bottom:753.507600pt;}
.y176{bottom:755.240933pt;}
.y13{bottom:756.847333pt;}
.y81{bottom:757.774267pt;}
.y19a{bottom:760.568400pt;}
.y13e{bottom:761.206933pt;}
.y7{bottom:761.417067pt;}
.y58{bottom:761.507600pt;}
.y125{bottom:762.073600pt;}
.yed{bottom:763.113600pt;}
.y8d{bottom:770.073600pt;}
.y165{bottom:770.374400pt;}
.y175{bottom:772.107600pt;}
.y1b9{bottom:775.707733pt;}
.y75{bottom:778.073600pt;}
.y57{bottom:778.374400pt;}
.y124{bottom:778.940133pt;}
.y12{bottom:779.247333pt;}
.yec{bottom:779.980267pt;}
.y15c{bottom:781.600933pt;}
.y80{bottom:782.640933pt;}
.y199{bottom:785.434933pt;}
.y8c{bottom:786.940133pt;}
.y164{bottom:787.240933pt;}
.y4{bottom:790.883733pt;}
.y74{bottom:794.940133pt;}
.y56{bottom:795.240933pt;}
.y123{bottom:795.806933pt;}
.yeb{bottom:796.847067pt;}
.y174{bottom:796.974267pt;}
.y7f{bottom:799.507600pt;}
.y1b8{bottom:800.574267pt;}
.y11{bottom:801.647333pt;}
.y198{bottom:802.301733pt;}
.yb4{bottom:803.806933pt;}
.y163{bottom:804.107600pt;}
.y66{bottom:807.507600pt;}
.y73{bottom:811.806933pt;}
.y55{bottom:812.107600pt;}
.y122{bottom:812.673467pt;}
.yea{bottom:813.713600pt;}
.y173{bottom:813.840933pt;}
.y7e{bottom:816.374400pt;}
.y197{bottom:819.168267pt;}
.yb3{bottom:820.673467pt;}
.y65{bottom:824.374400pt;}
.y1b7{bottom:825.440933pt;}
.y72{bottom:828.673467pt;}
.y54{bottom:828.974267pt;}
.ye9{bottom:830.580267pt;}
.y10{bottom:832.047333pt;}
.ybe{bottom:833.240933pt;}
.y196{bottom:836.034933pt;}
.y115{bottom:837.540267pt;}
.y172{bottom:838.707733pt;}
.y64{bottom:841.240933pt;}
.y71{bottom:845.540267pt;}
.y53{bottom:845.840933pt;}
.ye8{bottom:847.446933pt;}
.y3{bottom:849.817067pt;}
.ybd{bottom:850.107600pt;}
.y1b6{bottom:850.307600pt;}
.y195{bottom:852.901733pt;}
.y121{bottom:854.406933pt;}
.y171{bottom:855.574267pt;}
.y63{bottom:858.107600pt;}
.y70{bottom:862.406933pt;}
.y52{bottom:862.707733pt;}
.ye7{bottom:864.313600pt;}
.ybc{bottom:866.974267pt;}
.y194{bottom:869.768267pt;}
.y133{bottom:870.406933pt;}
.y145{bottom:870.707733pt;}
.y120{bottom:871.273467pt;}
.y62{bottom:874.974267pt;}
.y1b5{bottom:875.174267pt;}
.yf{bottom:875.914000pt;}
.y8b{bottom:879.273467pt;}
.y6f{bottom:879.273600pt;}
.y2{bottom:879.283733pt;}
.y51{bottom:879.574267pt;}
.y170{bottom:880.440933pt;}
.ye6{bottom:881.180400pt;}
.ybb{bottom:883.840933pt;}
.y193{bottom:886.635067pt;}
.y132{bottom:887.273467pt;}
.y144{bottom:887.574267pt;}
.y11f{bottom:888.140267pt;}
.y61{bottom:891.840933pt;}
.y6e{bottom:896.140267pt;}
.y162{bottom:896.440933pt;}
.y16f{bottom:897.307600pt;}
.ye5{bottom:898.046933pt;}
.ye{bottom:898.314000pt;}
.y1b4{bottom:900.041067pt;}
.yb2{bottom:904.140267pt;}
.y50{bottom:904.440933pt;}
.y11e{bottom:905.006800pt;}
.y60{bottom:908.707733pt;}
.y1{bottom:908.750400pt;}
.y192{bottom:911.501600pt;}
.y8a{bottom:913.006800pt;}
.y161{bottom:913.307600pt;}
.ye4{bottom:914.913600pt;}
.yd{bottom:920.714000pt;}
.yb1{bottom:921.006800pt;}
.y6d{bottom:921.006933pt;}
.y4f{bottom:921.307600pt;}
.y11d{bottom:921.873600pt;}
.y16e{bottom:922.174267pt;}
.y1b3{bottom:924.907600pt;}
.y5f{bottom:925.574267pt;}
.y191{bottom:928.368267pt;}
.y89{bottom:929.873600pt;}
.y160{bottom:930.174267pt;}
.ye3{bottom:931.780267pt;}
.y6c{bottom:937.873600pt;}
.y4e{bottom:938.174267pt;}
.y16d{bottom:939.041067pt;}
.y5e{bottom:942.440933pt;}
.yc{bottom:943.114000pt;}
.y190{bottom:945.235067pt;}
.y88{bottom:946.740267pt;}
.ye2{bottom:948.646933pt;}
.y1b2{bottom:949.774267pt;}
.y6b{bottom:954.740267pt;}
.y4d{bottom:955.041067pt;}
.yaf{bottom:957.513733pt;}
.y5d{bottom:959.307600pt;}
.y87{bottom:963.606800pt;}
.y16c{bottom:963.907600pt;}
.ye1{bottom:965.513733pt;}
.y18f{bottom:970.101600pt;}
.yb0{bottom:971.606800pt;}
.y6a{bottom:971.606933pt;}
.y4c{bottom:971.907600pt;}
.yb{bottom:973.514000pt;}
.yae{bottom:974.380267pt;}
.y1b1{bottom:974.640933pt;}
.y5c{bottom:976.174267pt;}
.y16b{bottom:980.774267pt;}
.ye0{bottom:982.380267pt;}
.y18e{bottom:986.968400pt;}
.y69{bottom:988.473600pt;}
.y4b{bottom:988.774267pt;}
.y15e{bottom:991.246933pt;}
.yad{bottom:999.246933pt;}
.y5b{bottom:1001.041067pt;}
.y18d{bottom:1003.834933pt;}
.y86{bottom:1005.340133pt;}
.y68{bottom:1005.340267pt;}
.y4a{bottom:1005.640933pt;}
.yac{bottom:1016.113600pt;}
.y18c{bottom:1028.701600pt;}
.y67{bottom:1030.206933pt;}
.y49{bottom:1030.507600pt;}
.ya{bottom:1030.507733pt;}
.yab{bottom:1032.980267pt;}
.y5{bottom:1100.005867pt;}
.hc{height:40.734375pt;}
.ha{height:42.117188pt;}
.hf{height:43.812500pt;}
.h4{height:45.632000pt;}
.h2{height:50.604167pt;}
.h7{height:51.476562pt;}
.hb{height:51.619792pt;}
.h3{height:51.843750pt;}
.h9{height:52.106771pt;}
.h8{height:53.237333pt;}
.he{height:56.843750pt;}
.hd{height:58.416667pt;}
.h6{height:65.515625pt;}
.h5{height:66.317708pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:49.716667pt;}
.xa{left:117.165333pt;}
.xd{left:119.055067pt;}
.xb{left:127.748000pt;}
.xe{left:143.622000pt;}
.x2{left:145.634267pt;}
.x1d{left:171.554000pt;}
.x10{left:214.488133pt;}
.x12{left:224.881867pt;}
.x7{left:235.923333pt;}
.x8{left:276.294400pt;}
.x1{left:281.473467pt;}
.x16{left:289.899733pt;}
.x14{left:297.243867pt;}
.x15{left:299.678667pt;}
.x17{left:304.960267pt;}
.x18{left:308.215200pt;}
.x13{left:309.303733pt;}
.x4{left:310.808800pt;}
.x19{left:322.713600pt;}
.x9{left:323.868000pt;}
.x3{left:330.737733pt;}
.x1b{left:347.716533pt;}
.x1a{left:365.155867pt;}
.x11{left:412.346533pt;}
.xf{left:415.748000pt;}
.x1c{left:474.330667pt;}
.xc{left:704.210000pt;}
.x6{left:708.050000pt;}
}

