
    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_45a890afcd97881853b10191.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_d8e56599e045b0ad51aad277.woff')format("woff");}.ff2{font-family:ff2;line-height:1.205566;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_771220a4193c8f455219d9e4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.166504;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_3fc480813f8d55aecaf7b6d9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.192383;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_499180b15ce79552e59a5d09.woff')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_d01f5713a96bf63c2a31692e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.166504;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_bdbb91afbafe33c0c96c27f6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_39d02d03d0bf9225a9929e9f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.205566;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_8953fec15474ffa8a3c6d834.woff')format("woff");}.ff9{font-family:ff9;line-height:1.192383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.080000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.337200px;}
.ls20{letter-spacing:-0.295200px;}
.lsa{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.285600px;}
.ls2d{letter-spacing:-0.271200px;}
.ls1f{letter-spacing:-0.220200px;}
.lsf{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.090000px;}
.ls4{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.038160px;}
.ls2{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.015120px;}
.ls1c{letter-spacing:0.015840px;}
.ls29{letter-spacing:0.027360px;}
.lse{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.075600px;}
.ls2a{letter-spacing:0.106560px;}
.ls30{letter-spacing:0.118200px;}
.ls1b{letter-spacing:0.126600px;}
.ls23{letter-spacing:0.132480px;}
.ls15{letter-spacing:0.132600px;}
.ls25{letter-spacing:0.175200px;}
.ls2f{letter-spacing:0.178800px;}
.ls2c{letter-spacing:0.189600px;}
.ls12{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.223200px;}
.ls1e{letter-spacing:0.240600px;}
.ls28{letter-spacing:0.258000px;}
.ls11{letter-spacing:0.306000px;}
.ls10{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.424800px;}
.ls22{letter-spacing:0.576000px;}
.ls21{letter-spacing:0.648000px;}
.ls26{letter-spacing:0.717840px;}
.ls18{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.ls5{letter-spacing:0.906000px;}
.ls17{letter-spacing:0.936000px;}
.ls27{letter-spacing:10.797840px;}
.ls1{letter-spacing:13.677840px;}
.ls0{letter-spacing:17.277840px;}
.lsb{letter-spacing:28.224000px;}
.lsc{letter-spacing:28.944000px;}
.ls9{letter-spacing:37.584000px;}
.ls6{letter-spacing:109.848000px;}
.lsd{letter-spacing:110.784000px;}
.ls2b{letter-spacing:150.477840px;}
.ls2e{letter-spacing:228.237840px;}
.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;}
}
.wsc{word-spacing:-48.240000px;}
.ws4{word-spacing:-18.144000px;}
.ws8{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.424000px;}
.ws1{word-spacing:-17.352000px;}
.ws7{word-spacing:-17.208000px;}
.ws5{word-spacing:-17.064000px;}
.ws2{word-spacing:-15.179040px;}
.ws19{word-spacing:-14.660160px;}
.ws15{word-spacing:-14.642760px;}
.ws10{word-spacing:-14.625360px;}
.ws1b{word-spacing:-14.591760px;}
.ws1d{word-spacing:-14.580960px;}
.wse{word-spacing:-14.534760px;}
.ws12{word-spacing:-14.528760px;}
.ws11{word-spacing:-14.477760px;}
.ws1a{word-spacing:-14.429520px;}
.ws13{word-spacing:-14.418000px;}
.ws18{word-spacing:-14.402160px;}
.ws14{word-spacing:-14.364000px;}
.ws16{word-spacing:-14.181960px;}
.ws1c{word-spacing:-14.130960px;}
.wsf{word-spacing:-14.116560px;}
.ws17{word-spacing:-14.106960px;}
.wsd{word-spacing:-14.064960px;}
.ws9{word-spacing:-14.022000px;}
.wsa{word-spacing:-13.716000px;}
.wsb{word-spacing:-12.252960px;}
.ws0{word-spacing:-11.625840px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-4.896000px;}
._7{margin-left:-3.346560px;}
._6{margin-left:-2.211120px;}
._0{margin-left:-1.008000px;}
._1{width:1.464000px;}
._8{width:3.406320px;}
._9{width:4.572000px;}
._4{width:5.856480px;}
._5{width:6.992160px;}
._a{width:8.007840px;}
._b{width:9.322560px;}
._c{width:10.517760px;}
._f{width:11.563680px;}
._10{width:13.142880px;}
._15{width:14.400000px;}
._d{width:16.374240px;}
._e{width:18.226800px;}
._1a{width:19.872000px;}
._17{width:21.528000px;}
._18{width:22.536000px;}
._14{width:23.976000px;}
._13{width:25.416000px;}
._20{width:26.712000px;}
._1b{width:28.368000px;}
._12{width:29.952000px;}
._11{width:30.960000px;}
._1e{width:32.184000px;}
._19{width:33.336000px;}
._25{width:34.392000px;}
._22{width:35.928000px;}
._1f{width:37.944000px;}
._26{width:39.000000px;}
._36{width:40.995360px;}
._24{width:42.696000px;}
._23{width:43.920000px;}
._3c{width:45.760800px;}
._27{width:47.016000px;}
._1c{width:48.096000px;}
._1d{width:49.476000px;}
._3b{width:50.508000px;}
._30{width:52.349760px;}
._5c{width:54.590880px;}
._3d{width:55.815840px;}
._38{width:57.461040px;}
._53{width:58.487520px;}
._5b{width:61.134480px;}
._41{width:62.449200px;}
._40{width:65.018880px;}
._28{width:66.632400px;}
._56{width:67.827600px;}
._52{width:73.534800px;}
._51{width:74.819520px;}
._2e{width:76.552560px;}
._33{width:78.106320px;}
._4d{width:79.604640px;}
._4c{width:81.102960px;}
._2a{width:82.976880px;}
._29{width:84.978720px;}
._39{width:86.084400px;}
._65{width:87.283920px;}
._48{width:88.683840px;}
._49{width:89.997600px;}
._35{width:91.118160px;}
._34{width:92.209680px;}
._58{width:102.933600px;}
._57{width:104.189040px;}
._60{width:105.894720px;}
._5e{width:108.763200px;}
._31{width:111.332880px;}
._32{width:112.537920px;}
._55{width:116.801040px;}
._61{width:120.147600px;}
._62{width:121.193280px;}
._3{width:145.596000px;}
._5d{width:150.834240px;}
._2b{width:155.421120px;}
._50{width:169.913760px;}
._4e{width:199.747920px;}
._47{width:224.100000px;}
._3e{width:233.303040px;}
._59{width:241.281120px;}
._64{width:247.794960px;}
._2c{width:251.440320px;}
._2d{width:252.773760px;}
._46{width:254.591040px;}
._4f{width:255.683280px;}
._54{width:261.539760px;}
._63{width:283.770480px;}
._4a{width:286.638960px;}
._4b{width:287.682480px;}
._3f{width:291.389280px;}
._45{width:294.019200px;}
._44{width:323.251200px;}
._42{width:338.940720px;}
._3a{width:586.693920px;}
._2{width:726.900000px;}
._43{width:790.746960px;}
._5a{width:795.189600px;}
._21{width:845.868000px;}
._37{width:849.368880px;}
._5f{width:888.185280px;}
._2f{width:906.322800px;}
.fc8{color:rgb(17,85,204);}
.fc3{color:rgb(98,119,187);}
.fc4{color:rgb(31,73,125);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(34,34,34);}
.fc6{color:rgb(1,2,5);}
.fc5{color:rgb(25,25,25);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:2.700000px;}
.y74{bottom:2.880000px;}
.y81{bottom:3.060000px;}
.y77{bottom:3.240000px;}
.yd0{bottom:3.420000px;}
.ycd{bottom:3.600000px;}
.ye9{bottom:5.400000px;}
.y110{bottom:5.445000px;}
.yef{bottom:5.580000px;}
.ye3{bottom:5.760000px;}
.yed{bottom:6.300000px;}
.y108{bottom:6.480000px;}
.yec{bottom:9.000000px;}
.y79{bottom:9.900000px;}
.y86{bottom:10.620000px;}
.y84{bottom:10.800000px;}
.ye6{bottom:12.060000px;}
.yf3{bottom:12.960000px;}
.yea{bottom:13.005000px;}
.yf0{bottom:13.140000px;}
.ye1{bottom:13.320000px;}
.yf7{bottom:13.500000px;}
.y72{bottom:16.200000px;}
.y7a{bottom:16.380000px;}
.y76{bottom:16.740000px;}
.y80{bottom:18.360000px;}
.y83{bottom:18.540000px;}
.y118{bottom:20.520000px;}
.ye5{bottom:20.700000px;}
.ye2{bottom:21.060000px;}
.y109{bottom:22.140000px;}
.yee{bottom:22.500000px;}
.ye8{bottom:22.545000px;}
.y78{bottom:23.580000px;}
.y75{bottom:30.420000px;}
.y8a{bottom:33.660000px;}
.y7f{bottom:33.840000px;}
.yff{bottom:37.620000px;}
.y107{bottom:40.500000px;}
.y9d{bottom:49.854000px;}
.y5{bottom:55.800000px;}
.y4{bottom:69.516000px;}
.y3{bottom:83.196000px;}
.y2{bottom:98.856000px;}
.yf5{bottom:120.996000px;}
.y3c{bottom:121.716000px;}
.y19b{bottom:122.076000px;}
.y138{bottom:122.436000px;}
.yc9{bottom:126.576000px;}
.y9c{bottom:128.376000px;}
.y13b{bottom:128.556000px;}
.y116{bottom:132.696000px;}
.y6d{bottom:137.016000px;}
.y169{bottom:137.376000px;}
.y3b{bottom:138.816000px;}
.y19a{bottom:141.696000px;}
.y137{bottom:142.956000px;}
.ydf{bottom:144.396000px;}
.yc8{bottom:146.916000px;}
.y13a{bottom:148.176000px;}
.y115{bottom:150.330000px;}
.y3a{bottom:155.910000px;}
.y168{bottom:156.990000px;}
.y6c{bottom:157.530000px;}
.yf4{bottom:158.250000px;}
.y9f{bottom:159.870000px;}
.y199{bottom:161.310000px;}
.y136{bottom:163.470000px;}
.yde{bottom:164.730000px;}
.yc7{bottom:167.430000px;}
.y92{bottom:167.625000px;}
.y39{bottom:172.830000px;}
.y167{bottom:176.610000px;}
.y6b{bottom:178.050000px;}
.y198{bottom:180.930000px;}
.y135{bottom:183.810000px;}
.ydd{bottom:185.250000px;}
.y114{bottom:187.410000px;}
.yc6{bottom:187.950000px;}
.y38{bottom:189.930000px;}
.yf2{bottom:195.330000px;}
.y166{bottom:196.230000px;}
.y6a{bottom:198.390000px;}
.y197{bottom:200.370000px;}
.y134{bottom:204.330000px;}
.ydc{bottom:205.770000px;}
.y9e{bottom:206.490000px;}
.y37{bottom:207.030000px;}
.yc5{bottom:208.290000px;}
.y7d{bottom:214.770000px;}
.y165{bottom:215.850000px;}
.y69{bottom:218.910000px;}
.y196{bottom:219.990000px;}
.y36{bottom:223.950000px;}
.y113{bottom:224.490000px;}
.y133{bottom:224.670000px;}
.ydb{bottom:226.110000px;}
.yc4{bottom:228.810000px;}
.yf1{bottom:232.410000px;}
.y164{bottom:235.470000px;}
.y91{bottom:237.990000px;}
.y68{bottom:239.250000px;}
.y195{bottom:239.610000px;}
.y35{bottom:241.050000px;}
.y132{bottom:245.190000px;}
.yda{bottom:246.630000px;}
.yc3{bottom:249.150000px;}
.y163{bottom:254.910000px;}
.y34{bottom:258.150000px;}
.y194{bottom:259.230000px;}
.y67{bottom:259.770000px;}
.y112{bottom:261.570000px;}
.y126{bottom:264.990000px;}
.y131{bottom:265.710000px;}
.yd9{bottom:267.150000px;}
.y9b{bottom:269.490000px;}
.yc2{bottom:269.670000px;}
.y162{bottom:274.530000px;}
.y33{bottom:275.070000px;}
.y193{bottom:278.850000px;}
.y66{bottom:280.290000px;}
.y125{bottom:285.330000px;}
.y130{bottom:286.050000px;}
.yd8{bottom:287.490000px;}
.yc1{bottom:290.190000px;}
.y32{bottom:292.170000px;}
.y161{bottom:294.150000px;}
.y192{bottom:298.470000px;}
.y111{bottom:298.830000px;}
.y65{bottom:300.630000px;}
.y9a{bottom:300.810000px;}
.y124{bottom:305.850000px;}
.y12f{bottom:306.570000px;}
.yeb{bottom:306.750000px;}
.yd7{bottom:308.010000px;}
.y31{bottom:309.270000px;}
.yc0{bottom:310.530000px;}
.y160{bottom:313.770000px;}
.y191{bottom:318.090000px;}
.y64{bottom:321.150000px;}
.y30{bottom:326.190000px;}
.y123{bottom:326.370000px;}
.y12e{bottom:327.090000px;}
.ye7{bottom:330.330000px;}
.ybf{bottom:331.050000px;}
.y15f{bottom:333.390000px;}
.y10f{bottom:335.910000px;}
.y190{bottom:337.755000px;}
.y1a2{bottom:338.475000px;}
.y63{bottom:341.715000px;}
.y2f{bottom:343.335000px;}
.y122{bottom:346.755000px;}
.y12d{bottom:347.475000px;}
.y99{bottom:347.655000px;}
.yd6{bottom:348.915000px;}
.ybe{bottom:351.435000px;}
.y15e{bottom:353.055000px;}
.y1a1{bottom:355.575000px;}
.y18f{bottom:357.375000px;}
.y2e{bottom:360.435000px;}
.y62{bottom:362.055000px;}
.ye4{bottom:367.455000px;}
.y12c{bottom:367.995000px;}
.ybd{bottom:371.955000px;}
.y15d{bottom:372.675000px;}
.y10e{bottom:373.035000px;}
.yd5{bottom:374.295000px;}
.y18e{bottom:376.815000px;}
.y2d{bottom:377.535000px;}
.y98{bottom:379.155000px;}
.y61{bottom:382.575000px;}
.y121{bottom:387.795000px;}
.y12b{bottom:388.335000px;}
.y1a0{bottom:389.595000px;}
.y15c{bottom:392.295000px;}
.ybc{bottom:392.475000px;}
.y2c{bottom:394.455000px;}
.y18d{bottom:396.435000px;}
.ye0{bottom:402.735000px;}
.y60{bottom:402.915000px;}
.y19f{bottom:406.695000px;}
.yd4{bottom:407.775000px;}
.y120{bottom:408.135000px;}
.y12a{bottom:408.855000px;}
.y10d{bottom:410.115000px;}
.y97{bottom:410.475000px;}
.y2b{bottom:411.555000px;}
.y15b{bottom:411.915000px;}
.ybb{bottom:412.815000px;}
.y18c{bottom:416.055000px;}
.y5f{bottom:423.435000px;}
.y19e{bottom:423.795000px;}
.y2a{bottom:428.655000px;}
.y129{bottom:429.375000px;}
.y15a{bottom:431.355000px;}
.yba{bottom:433.335000px;}
.y18b{bottom:435.675000px;}
.y19d{bottom:440.895000px;}
.yd3{bottom:441.435000px;}
.y96{bottom:441.975000px;}
.y5e{bottom:443.955000px;}
.y29{bottom:445.575000px;}
.y10c{bottom:447.375000px;}
.y11f{bottom:448.995000px;}
.y128{bottom:449.715000px;}
.y159{bottom:450.975000px;}
.yb9{bottom:453.855000px;}
.y18a{bottom:455.295000px;}
.y19c{bottom:457.815000px;}
.y28{bottom:462.675000px;}
.y5d{bottom:464.295000px;}
.y127{bottom:466.095000px;}
.y11e{bottom:469.515000px;}
.y158{bottom:470.595000px;}
.y95{bottom:473.295000px;}
.yb8{bottom:474.195000px;}
.yd2{bottom:474.915000px;}
.y27{bottom:479.775000px;}
.y10b{bottom:484.455000px;}
.y5c{bottom:484.815000px;}
.y157{bottom:490.215000px;}
.y189{bottom:494.535000px;}
.yb7{bottom:494.715000px;}
.y11d{bottom:494.895000px;}
.y26{bottom:496.695000px;}
.y5b{bottom:505.335000px;}
.yd1{bottom:508.395000px;}
.y156{bottom:509.835000px;}
.y25{bottom:513.795000px;}
.y188{bottom:514.155000px;}
.yb6{bottom:515.055000px;}
.y94{bottom:520.095000px;}
.y10a{bottom:521.535000px;}
.y5a{bottom:525.675000px;}
.y155{bottom:529.455000px;}
.y24{bottom:530.895000px;}
.y187{bottom:533.775000px;}
.yb5{bottom:535.575000px;}
.ycf{bottom:542.055000px;}
.y59{bottom:546.195000px;}
.y23{bottom:547.815000px;}
.y154{bottom:549.075000px;}
.y93{bottom:551.595000px;}
.y186{bottom:553.215000px;}
.yb4{bottom:556.095000px;}
.y106{bottom:558.615000px;}
.y11c{bottom:562.575000px;}
.y22{bottom:564.915000px;}
.y58{bottom:566.535000px;}
.y153{bottom:568.695000px;}
.y185{bottom:572.835000px;}
.yce{bottom:575.535000px;}
.yb3{bottom:576.435000px;}
.y21{bottom:582.015000px;}
.y7c{bottom:582.915000px;}
.y57{bottom:587.055000px;}
.y152{bottom:588.315000px;}
.y184{bottom:592.455000px;}
.yb2{bottom:596.955000px;}
.y20{bottom:598.935000px;}
.y56{bottom:607.605000px;}
.y151{bottom:607.785000px;}
.ycc{bottom:609.045000px;}
.y183{bottom:612.105000px;}
.y11b{bottom:613.185000px;}
.y105{bottom:613.905000px;}
.y90{bottom:614.445000px;}
.y1f{bottom:616.065000px;}
.yb1{bottom:617.505000px;}
.y139{bottom:618.765000px;}
.y150{bottom:627.405000px;}
.y55{bottom:627.945000px;}
.y182{bottom:631.725000px;}
.y1e{bottom:633.165000px;}
.y104{bottom:637.485000px;}
.yb0{bottom:637.845000px;}
.ycb{bottom:642.345000px;}
.y8f{bottom:645.945000px;}
.y14f{bottom:647.025000px;}
.y54{bottom:648.465000px;}
.y1d{bottom:650.265000px;}
.y181{bottom:651.345000px;}
.y11a{bottom:663.765000px;}
.yca{bottom:665.745000px;}
.y14e{bottom:666.645000px;}
.y1c{bottom:667.185000px;}
.y53{bottom:668.985000px;}
.y180{bottom:670.965000px;}
.y103{bottom:674.565000px;}
.y8e{bottom:677.265000px;}
.yaf{bottom:678.705000px;}
.y1b{bottom:684.285000px;}
.y14d{bottom:686.265000px;}
.y52{bottom:689.325000px;}
.y17f{bottom:690.585000px;}
.yae{bottom:699.225000px;}
.y1a{bottom:701.385000px;}
.y14c{bottom:705.885000px;}
.y8d{bottom:708.765000px;}
.y51{bottom:709.845000px;}
.y17e{bottom:710.205000px;}
.y102{bottom:711.645000px;}
.y119{bottom:714.345000px;}
.y19{bottom:718.305000px;}
.yad{bottom:719.745000px;}
.y14b{bottom:725.505000px;}
.y17d{bottom:729.645000px;}
.y50{bottom:730.185000px;}
.y18{bottom:735.405000px;}
.y8c{bottom:740.085000px;}
.y14a{bottom:745.125000px;}
.y101{bottom:748.905000px;}
.y17c{bottom:749.265000px;}
.y4f{bottom:750.705000px;}
.y17{bottom:752.505000px;}
.yac{bottom:760.605000px;}
.y149{bottom:764.745000px;}
.y117{bottom:764.925000px;}
.y17b{bottom:768.885000px;}
.y16{bottom:769.425000px;}
.y4e{bottom:771.225000px;}
.y8b{bottom:771.585000px;}
.yab{bottom:781.125000px;}
.y148{bottom:784.185000px;}
.y100{bottom:785.985000px;}
.y15{bottom:786.525000px;}
.y17a{bottom:788.505000px;}
.y4d{bottom:791.565000px;}
.yaa{bottom:801.465000px;}
.y89{bottom:803.085000px;}
.y14{bottom:803.625000px;}
.y147{bottom:803.805000px;}
.y179{bottom:808.125000px;}
.y4c{bottom:812.085000px;}
.y13{bottom:820.545000px;}
.yfe{bottom:823.065000px;}
.y146{bottom:823.425000px;}
.ya9{bottom:825.045000px;}
.y178{bottom:827.745000px;}
.y4b{bottom:832.605000px;}
.y12{bottom:837.645000px;}
.ya8{bottom:842.145000px;}
.y145{bottom:843.045000px;}
.y177{bottom:847.365000px;}
.y88{bottom:849.705000px;}
.y4a{bottom:852.945000px;}
.y11{bottom:854.745000px;}
.y144{bottom:862.665000px;}
.y176{bottom:866.985000px;}
.y10{bottom:872.250000px;}
.y49{bottom:873.510000px;}
.ya7{bottom:873.690000px;}
.yfd{bottom:875.310000px;}
.y87{bottom:881.250000px;}
.y143{bottom:882.330000px;}
.y175{bottom:886.650000px;}
.yf{bottom:892.590000px;}
.y48{bottom:893.850000px;}
.y142{bottom:901.950000px;}
.y174{bottom:906.090000px;}
.yfc{bottom:912.570000px;}
.y85{bottom:912.750000px;}
.y47{bottom:914.370000px;}
.ye{bottom:914.730000px;}
.ya6{bottom:920.310000px;}
.y141{bottom:921.570000px;}
.y173{bottom:925.710000px;}
.y46{bottom:934.890000px;}
.yd{bottom:936.690000px;}
.y140{bottom:941.190000px;}
.y82{bottom:944.070000px;}
.y172{bottom:945.330000px;}
.yfb{bottom:949.650000px;}
.y45{bottom:955.230000px;}
.yc{bottom:959.370000px;}
.y13f{bottom:960.630000px;}
.y171{bottom:964.950000px;}
.ya5{bottom:967.110000px;}
.y7e{bottom:975.570000px;}
.y44{bottom:975.750000px;}
.y13e{bottom:980.250000px;}
.yb{bottom:982.590000px;}
.y170{bottom:984.570000px;}
.yfa{bottom:986.730000px;}
.y43{bottom:996.270000px;}
.ya4{bottom:998.610000px;}
.y13d{bottom:999.870000px;}
.y16f{bottom:1004.190000px;}
.y42{bottom:1016.610000px;}
.y13c{bottom:1019.490000px;}
.y71{bottom:1022.370000px;}
.ya{bottom:1023.450000px;}
.yf9{bottom:1023.810000px;}
.ya3{bottom:1029.930000px;}
.y41{bottom:1037.130000px;}
.y16e{bottom:1043.430000px;}
.y9{bottom:1043.970000px;}
.y73{bottom:1050.270000px;}
.y40{bottom:1057.470000px;}
.yf8{bottom:1061.070000px;}
.ya2{bottom:1061.430000px;}
.y16d{bottom:1063.050000px;}
.y8{bottom:1064.310000px;}
.y70{bottom:1071.870000px;}
.y6e{bottom:1077.990000px;}
.y16c{bottom:1082.490000px;}
.y7{bottom:1087.530000px;}
.ya0{bottom:1092.930000px;}
.y6f{bottom:1095.450000px;}
.yf6{bottom:1098.150000px;}
.y3f{bottom:1098.510000px;}
.y16b{bottom:1102.110000px;}
.y6{bottom:1114.710000px;}
.y3e{bottom:1118.850000px;}
.ya1{bottom:1120.830000px;}
.y16a{bottom:1121.730000px;}
.y1{bottom:1192.680000px;}
.y3d{bottom:1196.280000px;}
.h11{height:13.680000px;}
.h1f{height:16.920000px;}
.h1e{height:17.100000px;}
.h23{height:22.500000px;}
.h12{height:27.180000px;}
.h17{height:30.600000px;}
.h1d{height:30.636000px;}
.h16{height:30.780000px;}
.h18{height:30.816000px;}
.h26{height:34.020000px;}
.h21{height:34.200000px;}
.h20{height:36.000000px;}
.h22{height:36.036000px;}
.hf{height:41.580000px;}
.h4{height:45.813867px;}
.h19{height:45.900000px;}
.h15{height:46.080000px;}
.h1b{height:46.116000px;}
.h5{height:47.062266px;}
.h3{height:47.698242px;}
.h27{height:51.120000px;}
.h24{height:51.156000px;}
.h14{height:51.284180px;}
.h10{height:53.393555px;}
.h25{height:54.036000px;}
.hc{height:56.754492px;}
.hd{height:58.301016px;}
.hb{height:59.088867px;}
.h8{height:68.378906px;}
.ha{height:70.242188px;}
.h7{height:71.191406px;}
.h2{height:71.613281px;}
.he{height:74.004654px;}
.h9{height:83.293945px;}
.h6{height:88.989258px;}
.h1c{height:108.900000px;}
.h1a{height:344.190000px;}
.h13{height:438.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:35.280000px;}
.w10{width:77.760000px;}
.wf{width:84.240000px;}
.w11{width:84.276000px;}
.w9{width:85.860000px;}
.w8{width:89.496000px;}
.w6{width:89.676000px;}
.w12{width:98.820000px;}
.w14{width:99.396000px;}
.w7{width:101.700000px;}
.w15{width:106.380000px;}
.wa{width:135.360000px;}
.wb{width:135.396000px;}
.wd{width:135.540000px;}
.wc{width:135.576000px;}
.w5{width:175.350000px;}
.w4{width:278.490000px;}
.we{width:345.495000px;}
.w13{width:474.735000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.x17{left:9.360000px;}
.x13{left:10.980000px;}
.x1a{left:14.760000px;}
.x11{left:18.000000px;}
.x2f{left:20.385000px;}
.x16{left:23.760000px;}
.x1c{left:25.560000px;}
.x1f{left:26.640000px;}
.x1b{left:27.930000px;}
.x14{left:28.980000px;}
.x32{left:31.545000px;}
.x1d{left:33.480000px;}
.x1e{left:34.560000px;}
.x34{left:36.180000px;}
.x33{left:37.620000px;}
.x31{left:38.700000px;}
.x18{left:39.810000px;}
.x21{left:42.525000px;}
.x2a{left:44.280000px;}
.x25{left:45.585000px;}
.x26{left:46.800000px;}
.x27{left:48.060000px;}
.x28{left:49.320000px;}
.x29{left:51.345000px;}
.xf{left:122.805000px;}
.x1{left:127.655987px;}
.xa{left:129.815987px;}
.x3{left:135.215987px;}
.x2{left:136.835987px;}
.x39{left:138.275987px;}
.x7{left:145.295987px;}
.x2b{left:148.674000px;}
.xc{left:154.649987px;}
.xb{left:159.689987px;}
.x4{left:161.669987px;}
.xe{left:162.930000px;}
.x8{left:180.749987px;}
.x9{left:205.589987px;}
.x35{left:210.819000px;}
.x5{left:212.249987px;}
.x20{left:264.630000px;}
.x22{left:400.035000px;}
.x10{left:441.435000px;}
.x6{left:467.924987px;}
.x2c{left:473.145000px;}
.x3b{left:494.744987px;}
.x3a{left:505.364987px;}
.x19{left:530.925000px;}
.x23{left:535.605000px;}
.x2d{left:557.385000px;}
.x36{left:602.385000px;}
.x12{left:616.785000px;}
.x2e{left:635.145000px;}
.x24{left:671.010000px;}
.x37{left:701.790000px;}
.x15{left:706.470000px;}
.x30{left:719.430000px;}
.x38{left:807.989987px;}
@media print{
.v1{vertical-align:-72.960000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.299733pt;}
.ls20{letter-spacing:-0.262400pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.253867pt;}
.ls2d{letter-spacing:-0.241067pt;}
.ls1f{letter-spacing:-0.195733pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.080000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.033920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.013440pt;}
.ls1c{letter-spacing:0.014080pt;}
.ls29{letter-spacing:0.024320pt;}
.lse{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.067200pt;}
.ls2a{letter-spacing:0.094720pt;}
.ls30{letter-spacing:0.105067pt;}
.ls1b{letter-spacing:0.112533pt;}
.ls23{letter-spacing:0.117760pt;}
.ls15{letter-spacing:0.117867pt;}
.ls25{letter-spacing:0.155733pt;}
.ls2f{letter-spacing:0.158933pt;}
.ls2c{letter-spacing:0.168533pt;}
.ls12{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.198400pt;}
.ls1e{letter-spacing:0.213867pt;}
.ls28{letter-spacing:0.229333pt;}
.ls11{letter-spacing:0.272000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.377600pt;}
.ls22{letter-spacing:0.512000pt;}
.ls21{letter-spacing:0.576000pt;}
.ls26{letter-spacing:0.638080pt;}
.ls18{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls5{letter-spacing:0.805333pt;}
.ls17{letter-spacing:0.832000pt;}
.ls27{letter-spacing:9.598080pt;}
.ls1{letter-spacing:12.158080pt;}
.ls0{letter-spacing:15.358080pt;}
.lsb{letter-spacing:25.088000pt;}
.lsc{letter-spacing:25.728000pt;}
.ls9{letter-spacing:33.408000pt;}
.ls6{letter-spacing:97.642667pt;}
.lsd{letter-spacing:98.474667pt;}
.ls2b{letter-spacing:133.758080pt;}
.ls2e{letter-spacing:202.878080pt;}
.wsc{word-spacing:-42.880000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.488000pt;}
.ws1{word-spacing:-15.424000pt;}
.ws7{word-spacing:-15.296000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws2{word-spacing:-13.492480pt;}
.ws19{word-spacing:-13.031253pt;}
.ws15{word-spacing:-13.015787pt;}
.ws10{word-spacing:-13.000320pt;}
.ws1b{word-spacing:-12.970453pt;}
.ws1d{word-spacing:-12.960853pt;}
.wse{word-spacing:-12.919787pt;}
.ws12{word-spacing:-12.914453pt;}
.ws11{word-spacing:-12.869120pt;}
.ws1a{word-spacing:-12.826240pt;}
.ws13{word-spacing:-12.816000pt;}
.ws18{word-spacing:-12.801920pt;}
.ws14{word-spacing:-12.768000pt;}
.ws16{word-spacing:-12.606187pt;}
.ws1c{word-spacing:-12.560853pt;}
.wsf{word-spacing:-12.548053pt;}
.ws17{word-spacing:-12.539520pt;}
.wsd{word-spacing:-12.502187pt;}
.ws9{word-spacing:-12.464000pt;}
.wsa{word-spacing:-12.192000pt;}
.wsb{word-spacing:-10.891520pt;}
.ws0{word-spacing:-10.334080pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-4.352000pt;}
._7{margin-left:-2.974720pt;}
._6{margin-left:-1.965440pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.301333pt;}
._8{width:3.027840pt;}
._9{width:4.064000pt;}
._4{width:5.205760pt;}
._5{width:6.215253pt;}
._a{width:7.118080pt;}
._b{width:8.286720pt;}
._c{width:9.349120pt;}
._f{width:10.278827pt;}
._10{width:11.682560pt;}
._15{width:12.800000pt;}
._d{width:14.554880pt;}
._e{width:16.201600pt;}
._1a{width:17.664000pt;}
._17{width:19.136000pt;}
._18{width:20.032000pt;}
._14{width:21.312000pt;}
._13{width:22.592000pt;}
._20{width:23.744000pt;}
._1b{width:25.216000pt;}
._12{width:26.624000pt;}
._11{width:27.520000pt;}
._1e{width:28.608000pt;}
._19{width:29.632000pt;}
._25{width:30.570667pt;}
._22{width:31.936000pt;}
._1f{width:33.728000pt;}
._26{width:34.666667pt;}
._36{width:36.440320pt;}
._24{width:37.952000pt;}
._23{width:39.040000pt;}
._3c{width:40.676267pt;}
._27{width:41.792000pt;}
._1c{width:42.752000pt;}
._1d{width:43.978667pt;}
._3b{width:44.896000pt;}
._30{width:46.533120pt;}
._5c{width:48.525227pt;}
._3d{width:49.614080pt;}
._38{width:51.076480pt;}
._53{width:51.988907pt;}
._5b{width:54.341760pt;}
._41{width:55.510400pt;}
._40{width:57.794560pt;}
._28{width:59.228800pt;}
._56{width:60.291200pt;}
._52{width:65.364267pt;}
._51{width:66.506240pt;}
._2e{width:68.046720pt;}
._33{width:69.427840pt;}
._4d{width:70.759680pt;}
._4c{width:72.091520pt;}
._2a{width:73.757227pt;}
._29{width:75.536640pt;}
._39{width:76.519467pt;}
._65{width:77.585707pt;}
._48{width:78.830080pt;}
._49{width:79.997867pt;}
._35{width:80.993920pt;}
._34{width:81.964160pt;}
._58{width:91.496533pt;}
._57{width:92.612480pt;}
._60{width:94.128640pt;}
._5e{width:96.678400pt;}
._31{width:98.962560pt;}
._32{width:100.033707pt;}
._55{width:103.823147pt;}
._61{width:106.797867pt;}
._62{width:107.727360pt;}
._3{width:129.418667pt;}
._5d{width:134.074880pt;}
._2b{width:138.152107pt;}
._50{width:151.034453pt;}
._4e{width:177.553707pt;}
._47{width:199.200000pt;}
._3e{width:207.380480pt;}
._59{width:214.472107pt;}
._64{width:220.262187pt;}
._2c{width:223.502507pt;}
._2d{width:224.687787pt;}
._46{width:226.303147pt;}
._4f{width:227.274027pt;}
._54{width:232.479787pt;}
._63{width:252.240427pt;}
._4a{width:254.790187pt;}
._4b{width:255.717760pt;}
._3f{width:259.012693pt;}
._45{width:261.350400pt;}
._44{width:287.334400pt;}
._42{width:301.280640pt;}
._3a{width:521.505707pt;}
._2{width:646.133333pt;}
._43{width:702.886187pt;}
._5a{width:706.835200pt;}
._21{width:751.882667pt;}
._37{width:754.994560pt;}
._5f{width:789.498027pt;}
._2f{width:805.620267pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:2.400000pt;}
.y74{bottom:2.560000pt;}
.y81{bottom:2.720000pt;}
.y77{bottom:2.880000pt;}
.yd0{bottom:3.040000pt;}
.ycd{bottom:3.200000pt;}
.ye9{bottom:4.800000pt;}
.y110{bottom:4.840000pt;}
.yef{bottom:4.960000pt;}
.ye3{bottom:5.120000pt;}
.yed{bottom:5.600000pt;}
.y108{bottom:5.760000pt;}
.yec{bottom:8.000000pt;}
.y79{bottom:8.800000pt;}
.y86{bottom:9.440000pt;}
.y84{bottom:9.600000pt;}
.ye6{bottom:10.720000pt;}
.yf3{bottom:11.520000pt;}
.yea{bottom:11.560000pt;}
.yf0{bottom:11.680000pt;}
.ye1{bottom:11.840000pt;}
.yf7{bottom:12.000000pt;}
.y72{bottom:14.400000pt;}
.y7a{bottom:14.560000pt;}
.y76{bottom:14.880000pt;}
.y80{bottom:16.320000pt;}
.y83{bottom:16.480000pt;}
.y118{bottom:18.240000pt;}
.ye5{bottom:18.400000pt;}
.ye2{bottom:18.720000pt;}
.y109{bottom:19.680000pt;}
.yee{bottom:20.000000pt;}
.ye8{bottom:20.040000pt;}
.y78{bottom:20.960000pt;}
.y75{bottom:27.040000pt;}
.y8a{bottom:29.920000pt;}
.y7f{bottom:30.080000pt;}
.yff{bottom:33.440000pt;}
.y107{bottom:36.000000pt;}
.y9d{bottom:44.314667pt;}
.y5{bottom:49.600000pt;}
.y4{bottom:61.792000pt;}
.y3{bottom:73.952000pt;}
.y2{bottom:87.872000pt;}
.yf5{bottom:107.552000pt;}
.y3c{bottom:108.192000pt;}
.y19b{bottom:108.512000pt;}
.y138{bottom:108.832000pt;}
.yc9{bottom:112.512000pt;}
.y9c{bottom:114.112000pt;}
.y13b{bottom:114.272000pt;}
.y116{bottom:117.952000pt;}
.y6d{bottom:121.792000pt;}
.y169{bottom:122.112000pt;}
.y3b{bottom:123.392000pt;}
.y19a{bottom:125.952000pt;}
.y137{bottom:127.072000pt;}
.ydf{bottom:128.352000pt;}
.yc8{bottom:130.592000pt;}
.y13a{bottom:131.712000pt;}
.y115{bottom:133.626667pt;}
.y3a{bottom:138.586667pt;}
.y168{bottom:139.546667pt;}
.y6c{bottom:140.026667pt;}
.yf4{bottom:140.666667pt;}
.y9f{bottom:142.106667pt;}
.y199{bottom:143.386667pt;}
.y136{bottom:145.306667pt;}
.yde{bottom:146.426667pt;}
.yc7{bottom:148.826667pt;}
.y92{bottom:149.000000pt;}
.y39{bottom:153.626667pt;}
.y167{bottom:156.986667pt;}
.y6b{bottom:158.266667pt;}
.y198{bottom:160.826667pt;}
.y135{bottom:163.386667pt;}
.ydd{bottom:164.666667pt;}
.y114{bottom:166.586667pt;}
.yc6{bottom:167.066667pt;}
.y38{bottom:168.826667pt;}
.yf2{bottom:173.626667pt;}
.y166{bottom:174.426667pt;}
.y6a{bottom:176.346667pt;}
.y197{bottom:178.106667pt;}
.y134{bottom:181.626667pt;}
.ydc{bottom:182.906667pt;}
.y9e{bottom:183.546667pt;}
.y37{bottom:184.026667pt;}
.yc5{bottom:185.146667pt;}
.y7d{bottom:190.906667pt;}
.y165{bottom:191.866667pt;}
.y69{bottom:194.586667pt;}
.y196{bottom:195.546667pt;}
.y36{bottom:199.066667pt;}
.y113{bottom:199.546667pt;}
.y133{bottom:199.706667pt;}
.ydb{bottom:200.986667pt;}
.yc4{bottom:203.386667pt;}
.yf1{bottom:206.586667pt;}
.y164{bottom:209.306667pt;}
.y91{bottom:211.546667pt;}
.y68{bottom:212.666667pt;}
.y195{bottom:212.986667pt;}
.y35{bottom:214.266667pt;}
.y132{bottom:217.946667pt;}
.yda{bottom:219.226667pt;}
.yc3{bottom:221.466667pt;}
.y163{bottom:226.586667pt;}
.y34{bottom:229.466667pt;}
.y194{bottom:230.426667pt;}
.y67{bottom:230.906667pt;}
.y112{bottom:232.506667pt;}
.y126{bottom:235.546667pt;}
.y131{bottom:236.186667pt;}
.yd9{bottom:237.466667pt;}
.y9b{bottom:239.546667pt;}
.yc2{bottom:239.706667pt;}
.y162{bottom:244.026667pt;}
.y33{bottom:244.506667pt;}
.y193{bottom:247.866667pt;}
.y66{bottom:249.146667pt;}
.y125{bottom:253.626667pt;}
.y130{bottom:254.266667pt;}
.yd8{bottom:255.546667pt;}
.yc1{bottom:257.946667pt;}
.y32{bottom:259.706667pt;}
.y161{bottom:261.466667pt;}
.y192{bottom:265.306667pt;}
.y111{bottom:265.626667pt;}
.y65{bottom:267.226667pt;}
.y9a{bottom:267.386667pt;}
.y124{bottom:271.866667pt;}
.y12f{bottom:272.506667pt;}
.yeb{bottom:272.666667pt;}
.yd7{bottom:273.786667pt;}
.y31{bottom:274.906667pt;}
.yc0{bottom:276.026667pt;}
.y160{bottom:278.906667pt;}
.y191{bottom:282.746667pt;}
.y64{bottom:285.466667pt;}
.y30{bottom:289.946667pt;}
.y123{bottom:290.106667pt;}
.y12e{bottom:290.746667pt;}
.ye7{bottom:293.626667pt;}
.ybf{bottom:294.266667pt;}
.y15f{bottom:296.346667pt;}
.y10f{bottom:298.586667pt;}
.y190{bottom:300.226667pt;}
.y1a2{bottom:300.866667pt;}
.y63{bottom:303.746667pt;}
.y2f{bottom:305.186667pt;}
.y122{bottom:308.226667pt;}
.y12d{bottom:308.866667pt;}
.y99{bottom:309.026667pt;}
.yd6{bottom:310.146667pt;}
.ybe{bottom:312.386667pt;}
.y15e{bottom:313.826667pt;}
.y1a1{bottom:316.066667pt;}
.y18f{bottom:317.666667pt;}
.y2e{bottom:320.386667pt;}
.y62{bottom:321.826667pt;}
.ye4{bottom:326.626667pt;}
.y12c{bottom:327.106667pt;}
.ybd{bottom:330.626667pt;}
.y15d{bottom:331.266667pt;}
.y10e{bottom:331.586667pt;}
.yd5{bottom:332.706667pt;}
.y18e{bottom:334.946667pt;}
.y2d{bottom:335.586667pt;}
.y98{bottom:337.026667pt;}
.y61{bottom:340.066667pt;}
.y121{bottom:344.706667pt;}
.y12b{bottom:345.186667pt;}
.y1a0{bottom:346.306667pt;}
.y15c{bottom:348.706667pt;}
.ybc{bottom:348.866667pt;}
.y2c{bottom:350.626667pt;}
.y18d{bottom:352.386667pt;}
.ye0{bottom:357.986667pt;}
.y60{bottom:358.146667pt;}
.y19f{bottom:361.506667pt;}
.yd4{bottom:362.466667pt;}
.y120{bottom:362.786667pt;}
.y12a{bottom:363.426667pt;}
.y10d{bottom:364.546667pt;}
.y97{bottom:364.866667pt;}
.y2b{bottom:365.826667pt;}
.y15b{bottom:366.146667pt;}
.ybb{bottom:366.946667pt;}
.y18c{bottom:369.826667pt;}
.y5f{bottom:376.386667pt;}
.y19e{bottom:376.706667pt;}
.y2a{bottom:381.026667pt;}
.y129{bottom:381.666667pt;}
.y15a{bottom:383.426667pt;}
.yba{bottom:385.186667pt;}
.y18b{bottom:387.266667pt;}
.y19d{bottom:391.906667pt;}
.yd3{bottom:392.386667pt;}
.y96{bottom:392.866667pt;}
.y5e{bottom:394.626667pt;}
.y29{bottom:396.066667pt;}
.y10c{bottom:397.666667pt;}
.y11f{bottom:399.106667pt;}
.y128{bottom:399.746667pt;}
.y159{bottom:400.866667pt;}
.yb9{bottom:403.426667pt;}
.y18a{bottom:404.706667pt;}
.y19c{bottom:406.946667pt;}
.y28{bottom:411.266667pt;}
.y5d{bottom:412.706667pt;}
.y127{bottom:414.306667pt;}
.y11e{bottom:417.346667pt;}
.y158{bottom:418.306667pt;}
.y95{bottom:420.706667pt;}
.yb8{bottom:421.506667pt;}
.yd2{bottom:422.146667pt;}
.y27{bottom:426.466667pt;}
.y10b{bottom:430.626667pt;}
.y5c{bottom:430.946667pt;}
.y157{bottom:435.746667pt;}
.y189{bottom:439.586667pt;}
.yb7{bottom:439.746667pt;}
.y11d{bottom:439.906667pt;}
.y26{bottom:441.506667pt;}
.y5b{bottom:449.186667pt;}
.yd1{bottom:451.906667pt;}
.y156{bottom:453.186667pt;}
.y25{bottom:456.706667pt;}
.y188{bottom:457.026667pt;}
.yb6{bottom:457.826667pt;}
.y94{bottom:462.306667pt;}
.y10a{bottom:463.586667pt;}
.y5a{bottom:467.266667pt;}
.y155{bottom:470.626667pt;}
.y24{bottom:471.906667pt;}
.y187{bottom:474.466667pt;}
.yb5{bottom:476.066667pt;}
.ycf{bottom:481.826667pt;}
.y59{bottom:485.506667pt;}
.y23{bottom:486.946667pt;}
.y154{bottom:488.066667pt;}
.y93{bottom:490.306667pt;}
.y186{bottom:491.746667pt;}
.yb4{bottom:494.306667pt;}
.y106{bottom:496.546667pt;}
.y11c{bottom:500.066667pt;}
.y22{bottom:502.146667pt;}
.y58{bottom:503.586667pt;}
.y153{bottom:505.506667pt;}
.y185{bottom:509.186667pt;}
.yce{bottom:511.586667pt;}
.yb3{bottom:512.386667pt;}
.y21{bottom:517.346667pt;}
.y7c{bottom:518.146667pt;}
.y57{bottom:521.826667pt;}
.y152{bottom:522.946667pt;}
.y184{bottom:526.626667pt;}
.yb2{bottom:530.626667pt;}
.y20{bottom:532.386667pt;}
.y56{bottom:540.093333pt;}
.y151{bottom:540.253333pt;}
.ycc{bottom:541.373333pt;}
.y183{bottom:544.093333pt;}
.y11b{bottom:545.053333pt;}
.y105{bottom:545.693333pt;}
.y90{bottom:546.173333pt;}
.y1f{bottom:547.613333pt;}
.yb1{bottom:548.893333pt;}
.y139{bottom:550.013333pt;}
.y150{bottom:557.693333pt;}
.y55{bottom:558.173333pt;}
.y182{bottom:561.533333pt;}
.y1e{bottom:562.813333pt;}
.y104{bottom:566.653333pt;}
.yb0{bottom:566.973333pt;}
.ycb{bottom:570.973333pt;}
.y8f{bottom:574.173333pt;}
.y14f{bottom:575.133333pt;}
.y54{bottom:576.413333pt;}
.y1d{bottom:578.013333pt;}
.y181{bottom:578.973333pt;}
.y11a{bottom:590.013333pt;}
.yca{bottom:591.773333pt;}
.y14e{bottom:592.573333pt;}
.y1c{bottom:593.053333pt;}
.y53{bottom:594.653333pt;}
.y180{bottom:596.413333pt;}
.y103{bottom:599.613333pt;}
.y8e{bottom:602.013333pt;}
.yaf{bottom:603.293333pt;}
.y1b{bottom:608.253333pt;}
.y14d{bottom:610.013333pt;}
.y52{bottom:612.733333pt;}
.y17f{bottom:613.853333pt;}
.yae{bottom:621.533333pt;}
.y1a{bottom:623.453333pt;}
.y14c{bottom:627.453333pt;}
.y8d{bottom:630.013333pt;}
.y51{bottom:630.973333pt;}
.y17e{bottom:631.293333pt;}
.y102{bottom:632.573333pt;}
.y119{bottom:634.973333pt;}
.y19{bottom:638.493333pt;}
.yad{bottom:639.773333pt;}
.y14b{bottom:644.893333pt;}
.y17d{bottom:648.573333pt;}
.y50{bottom:649.053333pt;}
.y18{bottom:653.693333pt;}
.y8c{bottom:657.853333pt;}
.y14a{bottom:662.333333pt;}
.y101{bottom:665.693333pt;}
.y17c{bottom:666.013333pt;}
.y4f{bottom:667.293333pt;}
.y17{bottom:668.893333pt;}
.yac{bottom:676.093333pt;}
.y149{bottom:679.773333pt;}
.y117{bottom:679.933333pt;}
.y17b{bottom:683.453333pt;}
.y16{bottom:683.933333pt;}
.y4e{bottom:685.533333pt;}
.y8b{bottom:685.853333pt;}
.yab{bottom:694.333333pt;}
.y148{bottom:697.053333pt;}
.y100{bottom:698.653333pt;}
.y15{bottom:699.133333pt;}
.y17a{bottom:700.893333pt;}
.y4d{bottom:703.613333pt;}
.yaa{bottom:712.413333pt;}
.y89{bottom:713.853333pt;}
.y14{bottom:714.333333pt;}
.y147{bottom:714.493333pt;}
.y179{bottom:718.333333pt;}
.y4c{bottom:721.853333pt;}
.y13{bottom:729.373333pt;}
.yfe{bottom:731.613333pt;}
.y146{bottom:731.933333pt;}
.ya9{bottom:733.373333pt;}
.y178{bottom:735.773333pt;}
.y4b{bottom:740.093333pt;}
.y12{bottom:744.573333pt;}
.ya8{bottom:748.573333pt;}
.y145{bottom:749.373333pt;}
.y177{bottom:753.213333pt;}
.y88{bottom:755.293333pt;}
.y4a{bottom:758.173333pt;}
.y11{bottom:759.773333pt;}
.y144{bottom:766.813333pt;}
.y176{bottom:770.653333pt;}
.y10{bottom:775.333333pt;}
.y49{bottom:776.453333pt;}
.ya7{bottom:776.613333pt;}
.yfd{bottom:778.053333pt;}
.y87{bottom:783.333333pt;}
.y143{bottom:784.293333pt;}
.y175{bottom:788.133333pt;}
.yf{bottom:793.413333pt;}
.y48{bottom:794.533333pt;}
.y142{bottom:801.733333pt;}
.y174{bottom:805.413333pt;}
.yfc{bottom:811.173333pt;}
.y85{bottom:811.333333pt;}
.y47{bottom:812.773333pt;}
.ye{bottom:813.093333pt;}
.ya6{bottom:818.053333pt;}
.y141{bottom:819.173333pt;}
.y173{bottom:822.853333pt;}
.y46{bottom:831.013333pt;}
.yd{bottom:832.613333pt;}
.y140{bottom:836.613333pt;}
.y82{bottom:839.173333pt;}
.y172{bottom:840.293333pt;}
.yfb{bottom:844.133333pt;}
.y45{bottom:849.093333pt;}
.yc{bottom:852.773333pt;}
.y13f{bottom:853.893333pt;}
.y171{bottom:857.733333pt;}
.ya5{bottom:859.653333pt;}
.y7e{bottom:867.173333pt;}
.y44{bottom:867.333333pt;}
.y13e{bottom:871.333333pt;}
.yb{bottom:873.413333pt;}
.y170{bottom:875.173333pt;}
.yfa{bottom:877.093333pt;}
.y43{bottom:885.573333pt;}
.ya4{bottom:887.653333pt;}
.y13d{bottom:888.773333pt;}
.y16f{bottom:892.613333pt;}
.y42{bottom:903.653333pt;}
.y13c{bottom:906.213333pt;}
.y71{bottom:908.773333pt;}
.ya{bottom:909.733333pt;}
.yf9{bottom:910.053333pt;}
.ya3{bottom:915.493333pt;}
.y41{bottom:921.893333pt;}
.y16e{bottom:927.493333pt;}
.y9{bottom:927.973333pt;}
.y73{bottom:933.573333pt;}
.y40{bottom:939.973333pt;}
.yf8{bottom:943.173333pt;}
.ya2{bottom:943.493333pt;}
.y16d{bottom:944.933333pt;}
.y8{bottom:946.053333pt;}
.y70{bottom:952.773333pt;}
.y6e{bottom:958.213333pt;}
.y16c{bottom:962.213333pt;}
.y7{bottom:966.693333pt;}
.ya0{bottom:971.493333pt;}
.y6f{bottom:973.733333pt;}
.yf6{bottom:976.133333pt;}
.y3f{bottom:976.453333pt;}
.y16b{bottom:979.653333pt;}
.y6{bottom:990.853333pt;}
.y3e{bottom:994.533333pt;}
.ya1{bottom:996.293333pt;}
.y16a{bottom:997.093333pt;}
.y1{bottom:1060.160000pt;}
.y3d{bottom:1063.360000pt;}
.h11{height:12.160000pt;}
.h1f{height:15.040000pt;}
.h1e{height:15.200000pt;}
.h23{height:20.000000pt;}
.h12{height:24.160000pt;}
.h17{height:27.200000pt;}
.h1d{height:27.232000pt;}
.h16{height:27.360000pt;}
.h18{height:27.392000pt;}
.h26{height:30.240000pt;}
.h21{height:30.400000pt;}
.h20{height:32.000000pt;}
.h22{height:32.032000pt;}
.hf{height:36.960000pt;}
.h4{height:40.723437pt;}
.h19{height:40.800000pt;}
.h15{height:40.960000pt;}
.h1b{height:40.992000pt;}
.h5{height:41.833125pt;}
.h3{height:42.398437pt;}
.h27{height:45.440000pt;}
.h24{height:45.472000pt;}
.h14{height:45.585938pt;}
.h10{height:47.460938pt;}
.h25{height:48.032000pt;}
.hc{height:50.448438pt;}
.hd{height:51.823125pt;}
.hb{height:52.523438pt;}
.h8{height:60.781250pt;}
.ha{height:62.437500pt;}
.h7{height:63.281250pt;}
.h2{height:63.656250pt;}
.he{height:65.781915pt;}
.h9{height:74.039062pt;}
.h6{height:79.101562pt;}
.h1c{height:96.800000pt;}
.h1a{height:305.946667pt;}
.h13{height:389.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:31.360000pt;}
.w10{width:69.120000pt;}
.wf{width:74.880000pt;}
.w11{width:74.912000pt;}
.w9{width:76.320000pt;}
.w8{width:79.552000pt;}
.w6{width:79.712000pt;}
.w12{width:87.840000pt;}
.w14{width:88.352000pt;}
.w7{width:90.400000pt;}
.w15{width:94.560000pt;}
.wa{width:120.320000pt;}
.wb{width:120.352000pt;}
.wd{width:120.480000pt;}
.wc{width:120.512000pt;}
.w5{width:155.866667pt;}
.w4{width:247.546667pt;}
.we{width:307.106667pt;}
.w13{width:421.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.x17{left:8.320000pt;}
.x13{left:9.760000pt;}
.x1a{left:13.120000pt;}
.x11{left:16.000000pt;}
.x2f{left:18.120000pt;}
.x16{left:21.120000pt;}
.x1c{left:22.720000pt;}
.x1f{left:23.680000pt;}
.x1b{left:24.826667pt;}
.x14{left:25.760000pt;}
.x32{left:28.040000pt;}
.x1d{left:29.760000pt;}
.x1e{left:30.720000pt;}
.x34{left:32.160000pt;}
.x33{left:33.440000pt;}
.x31{left:34.400000pt;}
.x18{left:35.386667pt;}
.x21{left:37.800000pt;}
.x2a{left:39.360000pt;}
.x25{left:40.520000pt;}
.x26{left:41.600000pt;}
.x27{left:42.720000pt;}
.x28{left:43.840000pt;}
.x29{left:45.640000pt;}
.xf{left:109.160000pt;}
.x1{left:113.471988pt;}
.xa{left:115.391988pt;}
.x3{left:120.191988pt;}
.x2{left:121.631988pt;}
.x39{left:122.911988pt;}
.x7{left:129.151988pt;}
.x2b{left:132.154667pt;}
.xc{left:137.466655pt;}
.xb{left:141.946655pt;}
.x4{left:143.706655pt;}
.xe{left:144.826667pt;}
.x8{left:160.666655pt;}
.x9{left:182.746655pt;}
.x35{left:187.394667pt;}
.x5{left:188.666655pt;}
.x20{left:235.226667pt;}
.x22{left:355.586667pt;}
.x10{left:392.386667pt;}
.x6{left:415.933322pt;}
.x2c{left:420.573333pt;}
.x3b{left:439.773322pt;}
.x3a{left:449.213322pt;}
.x19{left:471.933333pt;}
.x23{left:476.093333pt;}
.x2d{left:495.453333pt;}
.x36{left:535.453333pt;}
.x12{left:548.253333pt;}
.x2e{left:564.573333pt;}
.x24{left:596.453333pt;}
.x37{left:623.813333pt;}
.x15{left:627.973333pt;}
.x30{left:639.493333pt;}
.x38{left:718.213322pt;}
}

